C Coding Contest

C Coding Contest

University

20 Qs

quiz-placeholder

Similar activities

Quiz on Functions#1

Quiz on Functions#1

University

15 Qs

Python 1

Python 1

University

20 Qs

quiz pertemuan 2 asik ddp

quiz pertemuan 2 asik ddp

University

15 Qs

2-D Arrays in Java

2-D Arrays in Java

University

20 Qs

Java Objects Basics Quiz

Java Objects Basics Quiz

University

20 Qs

QUIZ DASAR DASAR PEMROGRAMAN JAVA

QUIZ DASAR DASAR PEMROGRAMAN JAVA

11th Grade - University

20 Qs

Programming in C(1)

Programming in C(1)

University

20 Qs

C Programming Unit-1 Test-2

C Programming Unit-1 Test-2

University

20 Qs

C Coding Contest

C Coding Contest

Assessment

Quiz

Computers

University

Hard

Created by

D. ECE

Used 11+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 2 pts

 What is the correct way to declare a variable in C?

'variable x;'

'int x;'

'x = int;'

'declare x as int;'

2.

MULTIPLE CHOICE QUESTION

20 sec • 2 pts

Rank the following arithmetic operators in terms of their precedence (highest to lowest).

%, +, -, *, /

+, -, %, *, /

%, +, /, *, –

%, *, /, +, –

3.

MULTIPLE CHOICE QUESTION

20 sec • 3 pts

Among the following, which data type will throw an error during the modulus operation(%).

float

int

char

short

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the purpose of the `printf` function in C?

Reading input

Writingoutput

Performing arithmetic operations

Declaring variables

5.

MULTIPLE CHOICE QUESTION

20 sec • 2 pts

How do you comment out multiple lines in C?

'// Comment'

'/* Comment */'

'# Comment #'

'/ Comment /'

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the output of the following code?

  int x = 5;

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

5

6

7

4

7.

MULTIPLE CHOICE QUESTION

20 sec • 3 pts

In C, what is the correct way to dynamically allocate memory for an integer variable?

'malloc(sizeof(int));'

'new int;'

'allocate(int);'

'memory(int);'

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?