NEW
Font size
WorksheetsC Language Basic Quiz
Total questions: 10
Worksheet time: 6mins
Who is the founder of C Language?
Dennis Ritchie
Albert Einstein
Guido van Rossum
James Gosling
When was c language released?
1947
1980
1991
1972
which is the correct syntax of a basic c program?
#include <iostream>
int main(){
return 0;
}
#include <stdio.h>
int main(){
return 0;
}
public void main()
{
}
public class Program // access modifier set as public{}
which punctuation used at end of any statement?
:
>
=
;
Which bracket is used to begin and end a program in c?
()
{}
[]
{[]}
Which of the following is a correct comment in c?
/comment/
/*comment*/
cmt comment;
> comment
C language is
high level language
machine independent language
middle level language
low level language
which of the following is not a correct variable type in c?
bool
int
float
char
which of the following is the correct assignment operator?
-=
++
=
<=
which of them is not a relational operator?
<
>=
>
==
