C Programming (Pre test ET Sec B)

C Programming (Pre test ET Sec B)

Professional Development

25 Qs

quiz-placeholder

Similar activities

Shop Safety

Shop Safety

Professional Development

21 Qs

CODETRONICS WORKSHOP TEST

CODETRONICS WORKSHOP TEST

Professional Development

30 Qs

Cassanred

Cassanred

Professional Development

23 Qs

Geography of Greece

Geography of Greece

Professional Development

24 Qs

Women's Day

Women's Day

Professional Development

20 Qs

NS2: Maritime History: American Revolution

NS2: Maritime History: American Revolution

Professional Development

21 Qs

domestic fitments

domestic fitments

Professional Development

23 Qs

ICT in English Language Teaching and Learning

ICT in English Language Teaching and Learning

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?