Q.1.
Void main() { char good *better, *best; printf( "%d..%d", sizeof(better), sizeof(best) ); }
Q.2.
What will be output when you will execute following c code?#include enum actor {    SeanPenn=   AlPacino=-   GaryOldman,    EdNorton};void main() {     enum actor a=    switch(a)       {         case SeanPenn:  printf("Kevin Spacey");                         break;         case AlPacino:  printf("Paul Giamatti");                         break;         case GaryOldman:printf("Donald Shuterland");                         break;         case EdNorton:  printf("Johnny Depp");      }  }
Q.3.
The output of the code below is         #include         int *m()        {            int *p =           return p;        }        void main()        {            int *k = m();            printf("%d", k);        }
Q.4.
Macro flowchart is also called as
Q.5.
What is the output of C Program.? int main() { int a=do { printf("%d ", a); a++; if(a >break; }while(1); return}
Q.6.
A source program is the program written in which level language  ?
Q.7.
What will the result of 'num' variable after execution of the following statements?int num = num % = 11;
Q.8.
Choose a correct C Statement.
Q.9.
Which one of the following is a loop construct that will always be executed once?
Q.10.
What is the way to suddenly come out of or Quit any Loop in C Language.?
Q.11.
Loops in C Language are implemented using.?
Q.12.
What is math.floor(3.6)?
Q.13.
We want to round off x, a Float to an Int value. The correct way to do so would be
Q.14.
Give the following declarations and an assignment statement. Which one is equivalent to the expression str [4]?char str[80]; char * p; p = str;
Q.15.
What will the result of num1 variable after execution of the following statements?int j =num1 = while (++j <= { num1++; }
Q.16.
Directives are translated by the
Q.17.
The coding or scrambling of data so that humans cannot read them, is known as _____.
Q.18.
What is the output of C Program.?int main() { int a=while(a <={ printf("%d ", a); a++; } return}
Q.19.
Methods declared as what cannot be overriden?
Q.20.
In programming, repeating some statements is usually called  ?