C Programming (Pre test ET Sec B)

C Programming (Pre test ET Sec B)

Professional Development

25 Qs

quiz-placeholder

Similar activities

Noun suffixes

Noun suffixes

Professional Development

20 Qs

Vehicle Accident Review Board Quiz

Vehicle Accident Review Board Quiz

Professional Development

28 Qs

C Programming YCAP 3 Post Test ET B

C Programming YCAP 3 Post Test ET B

Professional Development

30 Qs

Questionnaire d'évaluation santé, sécurité au travail

Questionnaire d'évaluation santé, sécurité au travail

Professional Development

26 Qs

Employability Skills-II

Employability Skills-II

Professional Development

30 Qs

Circulación Pulmonar y V/Q

Circulación Pulmonar y V/Q

Professional Development

28 Qs

Power Test MCQ

Power Test MCQ

Professional Development

25 Qs

EID GLITZ TRIVIA GRAND FINALE !!!

EID GLITZ TRIVIA GRAND FINALE !!!

Professional Development

20 Qs

C Programming (Pre test ET Sec B)

C Programming (Pre test ET Sec B)

Assessment

Quiz

others

Professional Development

Hard

Created by

Rashmi Joshi

Used 1+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Q 1.What is the output of the following code snippet? #include main() { int const a = 5; a++; printf(“%d”,a); }
5
6
Runtime error
Compile error

2.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Q 2 - What is the output of the following code snippet? #include main() { const int a = 5; a++; printf("%d", a); }
5
6
Runtime error
Compile error

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Q 3 - What is the output of the below code snippet? #include main() { int a = 5, b = 3, c = 4; printf("a = %d, b = %d\n", a, b, c); }
a=5, b=3
a=5, b=3, c=0
a=5, b=3, 0
compile error

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Q 4 - Function fopen() with the mode "r+" tries to open the file for __
reading and writing
reading and adding new content
only for reading
it works only for directories

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Q 5 - What is the output of the following program? #include main() { int a[] = {2,1}; printf("%d", *a); }
0
1
2
Compile error.

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Q 6 - What is the output of the following program? #include main() { int a[3] = {2,,1}; printf("%d", a[a[0]]); }
0
1
2
Compile error

7.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Q 7 - What is the following program doing? #include main() { FILE *stream=fopen("a.txt",'r'); }
Trying to open “a.txt” in read mode
Trying to open “a.txt” in write mode.
“stream” is an invalid identifier
Compile error

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?