C programming

C programming

University

20 Qs

quiz-placeholder

Similar activities

QUIZ METODO IVANOVA

QUIZ METODO IVANOVA

University

15 Qs

La metodologia IVANOVA (CC)

La metodologia IVANOVA (CC)

University

20 Qs

Data Structures through C

Data Structures through C

University

20 Qs

JAVA (Pre-Assessment)

JAVA (Pre-Assessment)

University

21 Qs

Test n.2 Virvelle

Test n.2 Virvelle

University

21 Qs

SQL - ORDER BY, GROUP BY, HAVING, AS

SQL - ORDER BY, GROUP BY, HAVING, AS

12th Grade - University

23 Qs

c++ qu

c++ qu

University

25 Qs

Teste Java 1

Teste Java 1

University

20 Qs

C programming

C programming

Assessment

Quiz

Instructional Technology

University

Easy

Created by

Sumit Kumar

Used 3+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

What is the range of value that can be stored by int data types in C?

-(2^31) to (2^31)-1

-256 to 255

-(2^63) to (2^63)-1

0 to (2^31)-1

Answer explanation

-(2^31) to (2^31)-1

2.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

What will be the output of the following code snippet?

#include<studio.h>

int main(){

int a=3, b=5;

int t = a;

a = b;

b = t;

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

return 0;

}

3 4

3 3

5 5

5 3

Answer explanation

5 3

3.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

How is an array initialized in C language:

int a[3] = {1,2,3};

int a = {1,2,3};

int a[] = new int [3];

int a(3) = [1,2,3];

Answer explanation

int a[3] = {1,2,3};

4.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

How is the 3rd element in an array accessed based on pointer notation?

*a+3

*(a+3)

*(*a+3)

&(a+3)

Answer explanation

*(a+3)

5.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

How are String represented in memory in C?

An array of characters.

The object of some class.

Same as other primitive data types.

LinkedList of characters.

Answer explanation

An array of characters.

6.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

What is the disadvantage of arrays in C?

The amount of memory to be allocated should be known beforehand.

Elements of an array can be accessed in constant time.

Elements are stored in contiguous memory blocks.

Multiple other data structures can be implemented using arrays.

Answer explanation

The amount of memory to be allocated should be known beforehand.

7.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

Which of the following is an exit controlled loop?

While loop.

For loop.

do-while loop.

None of the above.

Answer explanation

do-while loop.

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?