Answer:
The code of this program is executed successfully in Rstudio. you can run the chunk of the these program in RStudio.
This question has multiple part, the answer of the each part is given below in explanation section.
Step-by-step explanation:
(a)
**********************************************************************************
x <- readline(prompt="Enter Value for variable x i.e. 911: ")
Enter Value for variable x i.e. 911: 911
> if(x==911) {print ("TRUE")} else {print ("False")}
[1] "TRUE"
**********************************************************************************
Instead of taking value for x from user you can directly assign value to variable x and then check Boolean expression
**********************************************************************************
x<-913
if(x==911)
{print ("TRUE")} else
{print ("False")}
**********************************************************************************
(b)
**********************************************************************************
y<-800
if (y<911){print ("True")}else{print("False")}
**********************************************************************************
(c)
First assign the value to variable x and then check the condition (x<-12&&x>25)
************************************************************
x<- -10
if(x<-12&&x>25)
{print ("TRUE")} else
{print ("False")}
*************************************************************
it will print false
(d)
The missing value are
**********************************************************************************
[-11,-12,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24]
**********************************************************************************