C Programming

C Programming

12th Grade - University

25 Qs

quiz-placeholder

Similar activities

Logika & Algoritma Pemrograman

Logika & Algoritma Pemrograman

University

20 Qs

Arrays

Arrays

9th - 12th Grade

20 Qs

Java Review

Java Review

12th Grade

25 Qs

Round 3: Coding Round

Round 3: Coding Round

University

24 Qs

Exploring the Basics of C Programming

Exploring the Basics of C Programming

11th Grade - University

20 Qs

Techwiz - ICL2.0 Quiz

Techwiz - ICL2.0 Quiz

University

20 Qs

CODEATHON'22

CODEATHON'22

University

20 Qs

Javapie Quiz

Javapie Quiz

University

20 Qs

C Programming

C Programming

Assessment

Quiz

Other

12th Grade - University

Hard

Used 595+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?
rem = 3.14 % 2.1;
rem = modf(3.14, 2.1);
rem = fmod(3.14, 2.1);
Remainder cannot be obtain in floating point division

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How would you round off a value from 1.66 to 2.0?
ceil(1.66)
floor(1.66)
roundup(1.66)
roundto(1.66)

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Global variable are available to all functions. Does there exist a mechanism by way of which it available to some and not to others.
Yes
No

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image
Point out the error in the following program 
No error
display() doesn't get invoked
display() is called before it is defined
None of these

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image
Point out the error in the following program
Error: Declaration syntax error 'v' (or) Size of v is unknown or zero.
Program terminates abnormally.
No error
None of these.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

In which order do the following gets evaluated
1.Relational
2.Arithmetic
3.Logical
4.Assignment
2134
1234
4321
3214

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The keyword used to transfer control from a function back to the calling function is
switch
goto
go back
return

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?