C Programming (Pre test ET Sec B)

C Programming (Pre test ET Sec B)

Professional Development

25 Qs

quiz-placeholder

Similar activities

Kuis Pengetahuan Produk

Kuis Pengetahuan Produk

Professional Development

20 Qs

CHAPTER 3 Skin Structure, Disorders, and Diseases

CHAPTER 3 Skin Structure, Disorders, and Diseases

Professional Development

20 Qs

Principle of Teaching

Principle of Teaching

Professional Development

20 Qs

JFT DASAR 10

JFT DASAR 10

Professional Development

27 Qs

Test 2 - Level 1 - 1st 500 words

Test 2 - Level 1 - 1st 500 words

Professional Development

27 Qs

N4 | MIDTERM (UNIT 7)

N4 | MIDTERM (UNIT 7)

Professional Development

20 Qs

Keynote Proficient Midterm Review

Keynote Proficient Midterm Review

Professional Development

30 Qs

Reviewer Lesson No. 2 FLight Controls 11-07 LC

Reviewer Lesson No. 2 FLight Controls 11-07 LC

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

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?