Fpl-I Test 1 Div-b

50 Questions | Attempts: 128
Share
Please wait...
Question 1 / 50
0 %
0/100
Score 0/100
1. Which language is directly understood by computer?
Submit
Please wait...
About This Quiz
Fpl-I Test 1 Div-b - Quiz

Tell us your name to personalize your report, certificate & get on the leaderboard!
2.
The brain of computer is?
Submit
3. Machine language of a computer normally written as _________
Submit
4. Which standard code is used to process keystroke on keyboard
Submit
5.  C language was developed by________
Submit
6. The maximum value that an integer constant can have is(a) -32767(b) 32767(c) 1.7014e+38(d) –1.7014e+38
Submit
7. Which is example of secondary memory?
Submit
8. Which of the following symbol is used to denote a pre-processorstatement?A] !      B]#      C] ~      D];
Submit
9. Find out on which line no . you will get an error ?Line 1: void main ( )Line 2: {Line 3: print("\n Hello World")Line 4: }A] Line 1              B] Line 2                   C] Line 3                  D] Line 4
Submit
10. What will be the output ?#define SQUARE(X) X * Xvoid main ( ) {printf ("\n Square = %d" , SQUARE(10+2) ); }A] Square = 144              B] Square =32              C] Square =122                     D]Square =12
Submit
11. Which unit controls the operation of CPU?
Submit
12. Disadvantages of interpreter over compiler is ?
Submit
13. The operator + in a+=4 meansA] a = a + 4           B] a + 4 = a           C] a = 4            D] a = 4 + 4
Submit
14. Main(){What is the output?int x , y ;x = 753;y = 722;printf(" x & y is %@" , x & y );a) 0        b)1          c)Error         d)none of these}
Submit
15. Find output of the following main( ){int a = 5, b = 2 ;int c ;c = a % b ;printf ( "%d", c ) ;}a) 1            b) 0              c) 11            d) 01
Submit
16. _______is volatile memory?
Submit
17. ls command is used in Linux for?
Submit
18. Which of the following is not a relational operator?A]!            B] !=                    C]>=            D]<
Submit
19. What is the valid range of numbers for int type of data?A] 0 to 256       B] -32768 to +32767        C] -65536 to +65536       D] No specific range
Submit
20. Which of the following is an example of compounded  assignment statement?A] a = 5        B ]a += 5         C] a = b = c          D] a = b
Submit
21. The operator & is used forA] Bitwise AND              B] Bitwise OR               C] Logical AND            D] Logical OR
Submit
22. Which is not the input device?
Submit
23.     this symbol is used for?
Submit
24. What will be the value of x after executing the program ?void main ( ) {int x;x = printf("I See, Sea in C");printf("\n x= % d" , x);}A] x= 15              B] x=2                  C] Garbage value                   D] Error
Submit
25.  Which is not the way to represent the algorithm?
Submit
26. Algorithm is __________________ ?
Submit
27.
Submit
28. Find output of the following?main( ){int a, b ;a = -3 - - 3 ;b = -3 - - ( - 3 ) ;printf ( "a = %d b = %d", a, b ) ;}a)a=0 b=-6              b) a=1  b=0            c) a=0    b=-4          d)a=0  b=0
Submit
29. Which of the following is charecter oriented console I/O   function?A] getchar() and putchar()                                 B] gets() and puts()C]scanf() and printf()                                        D] fgets() and fputs()
Submit
30. Assembler is___________?
Submit
31. FORTRAN stands for…………………….. ?
Submit
32. Benefit of assembly language over the machine language is ?
Submit
33.
Submit
34.
Which is open source software
Submit
35. Identifiers are ____________  ?
Submit
36. Void main ( ) {Double x=28;Int r;R= x%5;Printf ("\n r=%d", r); }A] r= 3                     B] Run time Error               C]Compile time Erroe              D]None of the Above
Submit
37. is used as _________ symbol?
Submit
38. What is the output of the following code?Void main(){Int c=0, d=5,e=10,a;a=c>1?d>1||e>1?100:200:300;Printf("a=%d",a);}A] a=300     B]a=100     C] a=200      D] None of these
Submit
39. Which is decision symbol?
Submit
40. Assembly language and machine level languages are?
Submit
41. Which format specifier is used to print the values of double type variableA]%If                   B]%Id               C]%Iu               D] %f
Submit
42. Which of the following are tokens in C?A] Keywords       B]Variables       C]Constants       D]All of the above
Submit
43. Which operator has the lowest priority?A]++           B]%             C]+           D]||
Submit
44. What will be the output of the following program ?void main ( ){int x=10,y=20;printf ("\n %d",x,y);}A] 10           B] 20                 C] 10 20                   D] None of these
Submit
45. Main(){int x , y;x = 2003;x++;y = x++;y = x;y++;x—;x—;printf ("%d%d",x,y);}a) 2005  2003           b)2004  2003           c) 2003   2003       d)2005   2005
Submit
46.
Submit
47. What is the output of this program ?void main() {int a=b=c=10;a=b=c=50;printf("\n %d %d %d",a,b,c); }A] 50 50 50      B] Compile Time Error       C] 10 10 10       D] Three Gaebage Value
Submit
48. What will be the output ?void main ( ) {int I= 48;printf("\n %c %d" ,I,I ); }A] Error            B] 48 48             C] 1 48            D] 0 48
Submit
49. Which of the following language is predecessor to CProgramming Language?A] A      B]B      C] BCPL      D]C++
Submit
50. Which escape character can be used to begin a new line in C?A] \a       B] \b        C] \m        D] \n
Submit
View My Results

Quiz Review Timeline (Updated): Mar 21, 2022 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 21, 2022
    Quiz Edited by
    ProProfs Editorial Team
  • Aug 28, 2014
    Quiz Created by
    Sunil
Cancel
  • All
    All (50)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Which language is directly understood by computer?
The brain of computer is?
Machine language of a computer normally written as _________
Which standard code is used to process keystroke on keyboard
 C language was developed by________
The maximum value that an integer constant can have is(a) -32767(b)...
Which is example of secondary memory?
Which of the following symbol is used to denote a...
Find out on which line no . you will get an error ?Line 1: void main (...
What will be the output ?#define SQUARE(X) X * Xvoid main ( ) {printf...
Which unit controls the operation of CPU?
Disadvantages of interpreter over compiler is ?
The operator + in a+=4 meansA] a = a +...
Main(){What is the output?int x , y ;x = 753;y = 722;printf(" x &...
Find output of the following main( ){int a = 5, b = 2 ;int c ;c =...
_______is volatile memory?
Ls command is used in Linux for?
Which of the following is not a relational operator?A]!    ...
What is the valid range of numbers for int type of data?A] 0 to 256...
Which of the following is an example of compounded  assignment...
The operator & is used forA] Bitwise...
Which is not the input device?
    this symbol is used for?
What will be the value of x after executing the program ?void main ( )...
 Which is not the way to represent the algorithm?
Algorithm is __________________ ?
Find output of the following?main( ){int a, b ;a = -3 - - 3 ;b = -3 -...
Which of the following is charecter oriented console I/O  ...
Assembler is___________?
FORTRAN stands...
Benefit of assembly language over the machine language is ?
Which is open source software
Identifiers are ____________  ?
Void main ( ) {Double x=28;Int r;R= x%5;Printf ("\n r=%d", r); }A] r=...
Is used as _________ symbol?
What is the output of the following code?Void main(){Int c=0,...
Which is decision symbol?
Assembly language and machine level languages are?
Which format specifier is used to print the values of double type...
Which of the following are tokens in C?A]...
Which operator has the lowest...
What will be the output of the following program ?void main ( ){int...
Main(){int x , y;x = 2003;x++;y = x++;y =...
What is the output of this program ?void main() {int...
What will be the output ?void main ( ) {int I= 48;printf("\n %c %d"...
Which of the following language is predecessor to CProgramming...
Which escape character can be used to begin a new line in C?A] \a...
Alert!

Advertisement