NEW
Font size
WorksheetsC-4 CHAPTAR -1
Total questions: 22
Worksheet time: 11mins
Result of logical expression in c?
True
False
0 or 1
All of these
Who is the father of c language?
Steve jobs
Dennis Richie
James gosling
Rasms lerdorf
C language developed at……………?
At & t’s bell lab
Cambridege university
Sun micro system
None of these
C,c++, java and python are examples of …..?
Low-level language
High –level language
Computer language
Programming language
C programs are converted into machine language with the help of ?
An editor
A compiler
An operating system
None of these
C was primarly developed as……………..?
Data processing
System programein
General purpose
None of these
How many type of comments are in c ?
One
Two
Three
Four
How many types of datatype in c ?
One
Two
Three
Four
Which of the following if primary datatypes?
Int
Class
Struct
Enum
In which datatype the size in not fixed?
Int
Float
Double
Struct
Which is the following it not an operator?
=
-
INT
>
In c, which function we use to clear the console?
Getch()
Clrscr()
Clearscr()
Clearscreen()
The maximum number of arguments that can be passed a single function?
0
127
253
255
How many type of assignment operator in c?
One
Two
Three
Four
Every function must return a value?
Yes
No
Can’t say
None
Which of the following is a valid variable name in C?
int
2value
value_2
@number
What is the output of printf("%d", 5 + 3);?
53
8
5+3
Error
Which operator is used for assignment in C?
==
=
!=
:
Which of these is an input function in C?
printf()
input()
scanf()
getchar()
What is the data type of 10.5 in C?
int
char
float
double
What does && represent in C?
Bitwise AND
Logical AND
OR
Logical NOT
What will this code do: int a; scanf("%d", &a);?
Display a number
Take character input
Take integer input
Cause an error
