Advanced C quiz

Advanced C quiz

University

21 Qs

quiz-placeholder

Similar activities

Quiz sobre Computadoras, TICs y Sistemas Operativos

Quiz sobre Computadoras, TICs y Sistemas Operativos

10th Grade - University

20 Qs

SPCC ISE 2 Quiz TE B

SPCC ISE 2 Quiz TE B

University

20 Qs

FNaF 2

FNaF 2

5th Grade - University

24 Qs

Python MCQ

Python MCQ

University

20 Qs

Network topologies

Network topologies

8th Grade - University

20 Qs

Web quiz 1 - HTML/CSS

Web quiz 1 - HTML/CSS

University

20 Qs

Level 2 Digital Technologies

Level 2 Digital Technologies

8th Grade - Professional Development

18 Qs

Python Functions and File Operations Quiz cyber 2025

Python Functions and File Operations Quiz cyber 2025

University

18 Qs

Advanced C quiz

Advanced C quiz

Assessment

Quiz

Computers

University

Medium

Created by

Bhavana Sangamnerkar

Used 37+ times

FREE Resource

21 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose correct statement about Functions in C Language.

A Function is a group of c statements which can be reused any number of times.

Every Function has a return type.

Every Function may no may not return a value.

All the above.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose a correct statement about C Language Functions.

A function name can not be same as a predefined C Keyword.

A function name can start with an Underscore( _ ) or A to Z or a to z.

Default return type of any function is an Integer.

All the above.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A function which calls itself is called a ___ function.

Self Function

Auto Function

Recursive Function

Static Function

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of C Program with Functions.?


int main()

{


void show()

{

printf("HIDE");

}


show();

return 0;

}

No output

HIDE

Compiler error

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of C Program with functions?

void show();


int main()

{

show();

printf("ARGENTINA ");

return 0;

}


void show()

{

printf("AFRICA ");

}

ARGENTINA AFRICA

AFRICA ARGENTINA

ARGENTINA

Compiler error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int **ptr; here ptr is:

Pointer

Pointer to pointer

Both

None of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the call by reference we pass:

Value of the variable

Address of variable

Both value and address

None of above

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?