In this article we are solving some R programming questions that might get asked in an exam. These examples are simple and after solving these one will have a better understanding of R language . But before we start make sure you have a IDE or a text editor where you can run your R program. You should also have R language installed on your system for it to work. Now let's start fire up you code editor. I am using VS code for R , not necessary you can have R Studio . Now let's start R language practicals 1. R program to find the maximum and the minimum value of a given vector. code: x = c ( 10 , 20 , 30 , 25 , 9 , 36 ) print ( "Original Value" ) print ( x ) print ( "Maximum value of the above Vector" ) print ( max ( x )) print ( "Minimum value of the above Vector" ) print ( min ( x )) output: [1] "Original Value" [1] 10 20 30 25 9 36 [1] "Maximum value of the above Vector" [1] 36 [1] "Minimum value of the ...