C Programming Quiz

C Programming Quiz

University

58 Qs

quiz-placeholder

Similar activities

R Prog Quiz - 2

R Prog Quiz - 2

University

60 Qs

Linux Test Prep 2

Linux Test Prep 2

8th Grade - Professional Development

55 Qs

PHP Basics

PHP Basics

University

54 Qs

PHP-Midterm Exam

PHP-Midterm Exam

University

60 Qs

Python Programming EndTerm

Python Programming EndTerm

University

61 Qs

Practice Quiz

Practice Quiz

University

60 Qs

R Programming Quiz 1

R Programming Quiz 1

University

60 Qs

Final Exam - DV

Final Exam - DV

University

60 Qs

C Programming Quiz

C Programming Quiz

Assessment

Quiz

Computers

University

Easy

Created by

Vasuki R

Used 2+ times

FREE Resource

58 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the default return type if it is not specified in function definition?

void

int

float

double

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is not a correct function declaration?

intfunct(char x, char y);

double funct(x)

void funct();

char x();

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In C, function parameters are always

Pass by value

Pass by reference

Passed by value result

pass by parameter

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Arguments passed to a function in C language are called

Formal arguments

Actual arguments

Definite arguments

Ideal arguments

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the correct statement

The body of a function should have only one return statement.

Function can return only one value in call by value environment.

Function can return multiple values.

Function cannot return multiple values.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output void show(); void main() { show(); printf("WORLD "); } void show() { printf("HELLO "); }

WORLD HELLO

HELLO WORLD

WORLD

Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In C, what is the meaning of following function prototype with empty parameter list

Function can only be called without any parameter

Function can be called with any number of parameters of any types

Function can be called with any number of integer parameters.

Function can be called with one integer parameter.

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?