Advanced C quiz

Advanced C quiz

University

21 Qs

quiz-placeholder

Similar activities

Pengenalan Microsoft Excel

Pengenalan Microsoft Excel

10th Grade - University

20 Qs

MS Excel Basics

MS Excel Basics

5th Grade - Professional Development

20 Qs

Pointers in C

Pointers in C

University

24 Qs

Word and Excel

Word and Excel

University

16 Qs

Introduction to Windows 7

Introduction to Windows 7

University

20 Qs

Online Test-3 ( Wipro Talent Next )- 30th July 2020

Online Test-3 ( Wipro Talent Next )- 30th July 2020

University

20 Qs

LINKEDLIST- DSA -2-3

LINKEDLIST- DSA -2-3

University

20 Qs

1st Year quiz

1st Year quiz

University

20 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
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?