CPR_Quiz_Chapter4_function

CPR_Quiz_Chapter4_function

Professional Development

15 Qs

quiz-placeholder

Similar activities

DAY1

DAY1

Professional Development

15 Qs

day7

day7

Professional Development

12 Qs

Python Functions

Python Functions

Professional Development

10 Qs

Technical Quiz Round 1

Technical Quiz Round 1

Professional Development

20 Qs

Desafío Java fácil

Desafío Java fácil

Professional Development

10 Qs

SJIT ECE  PRACTICE TEST HCL @ 13/3/24

SJIT ECE PRACTICE TEST HCL @ 13/3/24

Professional Development

20 Qs

Quiz 1

Quiz 1

Professional Development

20 Qs

C Structures

C Structures

Professional Development

10 Qs

CPR_Quiz_Chapter4_function

CPR_Quiz_Chapter4_function

Assessment

Quiz

Professional Development

Professional Development

Medium

Created by

Sheetal Pawar

Used 2+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What will be the output of the following C code?

#include <stdio.h>

void m()

{

printf("hi");

}

void main()

{

m();

}

hi

Run time error

Nothing

Varies

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

the value obtained in the function is given back to main by using ________ keyword.

return

static

new

volatile

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which function definition will run correctly?

int sum(int a, int b)

return (a + b);

int sum(int a, int b)

{return (a + b);}

int sum(a, b)

return (a + b);

none of the mentioned

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

void can be used

as a data-type of a function that returns nothing to its calling environment

inside the brackets of a function that does not need any argument

in an expression

both (a) & (b)

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Any C program

must contain at least one function

need not contain any function

needs input data

none of the above

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

The following program


main ()

{ int a = 4;

change { a };

printf ("%d", a);

}

change (a)

int a;

{

printf("%d", ++a);

}

55

.45

54

44

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following function calculates the square of 'x' in C?

sqr(x)

pow(2, x)

pow(x, 2)

power(2, x)

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?