just a trial

just a trial

University

8 Qs

quiz-placeholder

Similar activities

Coding Fundamentals in C

Coding Fundamentals in C

6th Grade - Professional Development

12 Qs

C program quiz 1

C program quiz 1

University

10 Qs

Operators in C(29/08)

Operators in C(29/08)

University

10 Qs

B2B: Intro to C

B2B: Intro to C

University

10 Qs

OCS752_CP_MODEL 1_PART B (16.10.2020)

OCS752_CP_MODEL 1_PART B (16.10.2020)

University

10 Qs

C Pointer

C Pointer

University

7 Qs

C - Pointers

C - Pointers

University

10 Qs

Basics Of C Programming

Basics Of C Programming

University

10 Qs

just a trial

just a trial

Assessment

Quiz

Computers

University

Medium

Created by

samrudhi pawar

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Q1. What will be the output of the following code?

#include <stdio.h>

int main() {

int x = 5;

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

return 0;

}

557

767

Undefined behavior

567

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Q2. Which of the following is NOT a valid variable name in C?

a) value

b) total_marks

c) 2ndValue

d) value2

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

The keyword used to define a constant in C is _________.

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

The ASCII value of character 'A' is _________.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Observe the following code and choose the correct output:

#include <stdio.h>

int main() {

char str[] = "HELLO";

printf("%c", str[1]);

return 0;

}

H

E

L

O

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

5. Assertion & Reason
Assertion (A): The break statement can be used to exit from a loop.
Reason (R): The continue statement terminates the entire program.

a) A and R are true, and R is the correct explanation of A.

b) A and R are true, but R is not the correct explanation of A.

c) A is true, R is false.

d) A is false, R is true.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Q8. In C, an array index always starts from 1.

true

false

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

printf is used for output and scanf is used for input.

true

false