Fpl-I Test 1 Div-b

50 Questions | Attempts: 128
Please wait...
Question 1 / 51
🏆 Rank #--
0 %
0/100
Score 0/100

1.
The brain of computer is?

Submit
Please wait...
About This Quiz
Fpl-I Test 1 Div-b - Quiz

2.

What first name or nickname would you like us to use?

You may optionally provide this to label your report, leaderboard, or certificate.

2. Which language is directly understood by computer?

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. Which is example of secondary memory?

Submit

7. The maximum value that an integer constant can have is(a) -32767(b) 32767(c) 1.7014e+38(d) –1.7014e+38

Submit

8. 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

9. Which of the following symbol is used to denote a pre-processorstatement?A] !      B]#      C] ~      D];

Submit

10. Which unit controls the operation of CPU?

Submit

11. 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

12. Disadvantages of interpreter over compiler is ?

Submit

13. 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

14. The operator + in a+=4 meansA] a = a + 4           B] a + 4 = a           C] a = 4            D] a = 4 + 4

Submit

15. 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

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. 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

24.     this symbol is used for?

Submit

25. Algorithm is __________________ ?

Submit

26.  Which is not the way to represent the algorithm?

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.
Which is open source software

Submit

31.

Submit

32. Assembler is___________?

Submit

33. FORTRAN stands for…………………….. ?

Submit

34. Benefit of assembly language over the machine language is ?

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.

Submit

46. 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

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
×
Saved
Thank you for your feedback!
View My Results
Cancel
  • All
    All (50)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
The brain of computer is?
Which language is directly understood by computer?
Machine language of a computer normally written as _________
Which standard code is used to process keystroke on keyboard
 C language was developed by________
Which is example of secondary memory?
The maximum value that an integer constant can have is(a) -32767(b)...
Find out on which line no . you will get an error ?Line 1: void main (...
Which of the following symbol is used to denote a...
Which unit controls the operation of CPU?
What will be the output ?#define SQUARE(X) X * Xvoid main ( ) {printf...
Disadvantages of interpreter over compiler is ?
Find output of the following main( ){int a = 5, b = 2 ;int c ;c =...
The operator + in a+=4 meansA] a = a +...
Main(){What is the output?int x , y ;x = 753;y = 722;printf(" x &...
_______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?
What will be the value of x after executing the program ?void main ( )...
    this symbol is used for?
Algorithm is __________________ ?
 Which is not the way to represent the algorithm?
Find output of the following?main( ){int a, b ;a = -3 - - 3 ;b = -3 -...
Which of the following is charecter oriented console I/O  ...
Which is open source software
Assembler is___________?
FORTRAN stands...
Benefit of assembly language over the machine language is ?
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...
play-Mute sad happy unanswered_answer up-hover down-hover success oval cancel Check box square blue
Alert!