III Part 3

III Part 3

University

10 Qs

quiz-placeholder

Similar activities

Python Turtle

Python Turtle

KG - Professional Development

11 Qs

Python Variable and Datatype Quiz

Python Variable and Datatype Quiz

University

11 Qs

java

java

University - Professional Development

10 Qs

Module 1- Python Basics_2nd_Semester

Module 1- Python Basics_2nd_Semester

University

10 Qs

Quiz tentang .NET Framework

Quiz tentang .NET Framework

University

10 Qs

WEEK 10 - JAVA

WEEK 10 - JAVA

University

10 Qs

Python Compound Data Types and their Method Set-2

Python Compound Data Types and their Method Set-2

11th Grade - University

10 Qs

Quiz 2 DFP4013

Quiz 2 DFP4013

University

10 Qs

III Part 3

III Part 3

Assessment

Quiz

Education

University

Hard

Created by

ARAVINTH B

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following C code? int main() { int a = 5; printf("%d", a++); return 0; }

5

6

Compiler error

Undefined behavior

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following Python code? a = {1: 'A', 2: 'B'} print(a[1])

B

1

A

Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a valid C storage class?

auto

static

register

mutable

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the continue statement do in a loop?

Stops the loop entirely

Skips the current iteration and moves to the next one

Jumps to the end of the loop

Exits the loop

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is used for dynamic memory allocation in C?

malloc()

calloc()

realloc()

All of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following C code? int main() { int a = 10; int *p = &a; printf("%d", *p); return 0; }

10

Address of a

Undefined behavior

Compiler error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is used to comment multiple lines in C?

//

/* /

/* */

#

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?