Open In App

SAP Placement Questions

Improve
Improve
Like Article
Like
Save
Share
Report

L: Means turn Right . 
R: Means turn Left. 
Numbers represent the distance traveled in a particular direction in meters. 
( If Alice is initially facing north, and is given the instruction, 
3L4L5R2L3R3R2R4R3L1L3R4R2R3R), which direction would she face and how much distance would she cover?
ans : 42m,north
—————————————————————————————————————-
2. JavaScript syntax for is not equal? 
ans: operator is: “!=”
“!==” : strictly not equal to.
—————————————————————————————————————-
3.. 
 

C




#include<stdio.h>
#define TRUE 0
 
void main()
{
   int i = 0;
   while (TRUE){
     printf("%d\n",i);
     i++;
   }
   printf("%d\n",i);
   i++;
}


Output

0

—————————————————————————————————————–

 ;


Last Updated : 31 Oct, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads