Quizzes
Search
Take Quizzes
Animal
Nutrition
Love
Relationship
Computer
Sports
Society
Business
Geography
Language
Personality
Harry Potter
Movie
Television
Music
Online Exam
Health
Country
Art
Entertainment
Celebrity
Math
Game
Book
Fun
Science
Food
History
Education
All Topics
Create a Quiz
Quiz Maker
Training Maker
Survey Maker
Flashcards
Brain Games
See All
ProProfs.com
Search
Create A Quiz
Take Quizzes
Animal
Nutrition
Love
Relationship
Computer
Sports
Society
Business
Geography
Language
Personality
Harry Potter
Movie
Television
Music
Online Exam
Health
Country
Art
Entertainment
Celebrity
Math
Game
Book
Fun
Science
Food
History
Education
All Topics
Products
Quiz Maker
Training Maker
Survey Maker
Flashcards
Brain Games
See All
ProProfs.com
Quizzes
Quizzes
›
Computer
Fpl-I Test 1 Div-b
50 Questions
|
By Sunil | Updated: Mar 21, 2022
| Attempts: 128
Share
Start
Share on Facebook
Share on Twitter
Share on Whatsapp
Share on Pinterest
Share on Email
Copy to Clipboard
Embed on your website
Question
1
/ 50
0 %
0/100
Score
0/100
1.
Which language is directly understood by computer
?
Assembly
Machine
High Level
None of these
Submit
Start Quiz
About This Quiz
2.
What's your name?
We’ll put your name on your report, certificate, and leaderboard.
2.
The brain of computer is?
CPU
Keyboard
Memory
HDD
Submit
3.
Machine language of a computer normally written as _________
BInary 1s and 0s
Variables
Array of characters
None of these
Submit
4.
Which standard code is used to process keystroke on keyboard
ANSI
ASCII
BCD
HX
Submit
5.
C language was developed by
________
Ritchie Rich
Dennis Ritchie
Ken Thomson
None of these
Submit
6.
The maximum value that an integer constant can have is(a) -32767(b) 32767(c) 1.7014e+38(d) –1.7014e+38
A
B
C
D
Submit
7.
Which is example of secondary memory
?
Hard Disc
Pen Drive
CD
All of these
Submit
8.
Which of the following symbol is used to denote a pre-processorstatement?A] ! B]# C] ~ D];
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
A
B
C
D
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
A
B
C
D
Submit
11.
Which unit controls the operation of CPU
?
Storage Unit
ALU
Control Unit
None of these
Submit
12.
Disadvantages of interpreter over compiler is
?
They are slower than compiler
They are easier than compiler
They are same as compiler
None of these
Submit
13.
The operator + in a+=4 meansA] a = a + 4 B] a + 4 = a C] a = 4 D] a = 4 + 4
A
B
C
D
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}
A
B
C
D
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
A
B
C
D
Submit
16.
_______is volatile memory
?
ROM
RAM
CD
None of these
Submit
17.
ls command is used in Linux for?
Creating new directory
Removing an empty directory
Listing of all files and folders
None of these
Submit
18.
Which of the following is not a relational operator?A]! B] != C]>= D]<
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
A
B
C
D
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
A
B
C
D
Submit
21.
The operator & is used forA] Bitwise AND B] Bitwise OR C] Logical AND D] Logical OR
A
B
C
D
Submit
22.
Which is not the input device
?
Monitor
Scanner
Keyboard
Mouse
Submit
23.
this symbol is used for?
Condition
Start/stop
Processing
I/O
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
A
B
C
D
Submit
25.
Which is not the way to represent the algorithm
?
Concept
Flowchart
Algorithm
Structure chart
Submit
26.
Algorithm is __________________
?
Sequence of instructions
Sequence of programs
Sequence of program data
None of these
Submit
27.
A
B
C
D
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
A
B
C
D
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()
A
B
C
D
Submit
30.
Assembler is___________
?
Used to convert high level langague to machine langauge
Used to convert assembly program to machine code
Used to convert high level langague to assembly langauge
Used to convert scripting lanaguage to machine code
Submit
31.
FORTRAN stands for……………………..
?
Formula Translator
Formula Translation
For Transformation
None of these
Submit
32.
Benefit of assembly language over the machine language is
?
Easier to understand as it uses mnemonics instead of numeric opcodes
Easier to modify
Easier to relocate
All of the above
Submit
33.
A
B
C
D
Submit
34.
Which is open source software
MS-WORD
LINUX
MS-EXCEL
MAC-OS
Submit
35.
Identifiers are ____________ ?
Keywords
User defined names
Reserved words
None of these
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
A
B
C
D
Submit
37.
is used as _________ symbol?
Processing
Terminal
Condition
Desicion
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
A
B
C
D
Submit
39.
Which is decision symbol
?
Ellipse
Diamond box
Rectangle
Parallelogram
Submit
40.
Assembly language and machine level languages are
?
High Level
Middle Level
Low Level
None
Submit
41.
Which format specifier is used to print the values of double type variableA]%If B]%Id C]%Iu D] %f
A
B
C
D
Submit
42.
Which of the following are tokens in C?A] Keywords B]Variables C]Constants D]All of the above
A
B
C
D
Submit
43.
Which operator has the lowest priority?A]++ B]% C]+ D]||
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
A
B
C
D
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
A
B
C
D
Submit
46.
A
B
C
D
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
A
B
C
D
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
A
B
C
D
Submit
49.
Which of the following language is predecessor to CProgramming Language?A] A B]B C] BCPL D]C++
A
B
C
D
Submit
50.
Which escape character can be used to begin a new line in C?A] \a B] \b C] \m D] \n
A
B
C
D
Submit
View My Results
Related Quizzes
Test Your Coding Interest Levels
Test Your Coding Interest Levels
Tablet Quiz: What Tablet Should I Buy Quiz
Tablet Quiz: What Tablet Should I Buy Quiz
Thank you for your feedback!
Would you like to edit this question to improve it?
No thanks
Name:
Email:
Oops! Give us more information:
Incorrect Question
Incorrect Answer
Typos
I have a feedback
Submit
Please provide name and email to proceed.
Please provide correct email to proceed.
Please provide feedback.
Please select the option.
All (50)
Unanswered (
)
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...
X
OK
X
OK
Cancel
X
OK
Cancel
Back to top
Back to top
Advertisement