BCA/IT Sem-1 QuizoByte Round-1

BCA/IT Sem-1 QuizoByte Round-1

University

25 Qs

quiz-placeholder

Similar activities

Programming Round 1

Programming Round 1

12th Grade - University

21 Qs

Technical Assessment

Technical Assessment

University

20 Qs

TechnoFuzzle

TechnoFuzzle

University

20 Qs

HCI - Quiz 1

HCI - Quiz 1

University

20 Qs

PSP Module-1

PSP Module-1

University

25 Qs

C - Structures

C - Structures

University

20 Qs

Quiz 1 OOPs Group A Variable Data Type

Quiz 1 OOPs Group A Variable Data Type

University

20 Qs

Python_2R

Python_2R

KG - Professional Development

20 Qs

BCA/IT Sem-1 QuizoByte Round-1

BCA/IT Sem-1 QuizoByte Round-1

Assessment

Quiz

Computers

University

Hard

Created by

YSM CVS

Used 2+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

What will be the output of the following code?

int a=10, b=20, c=30;

printf("%d", a<b && b<c);

10

20

1

0

2.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Which of the following is NOT a valid storage class in C?

auto

register

static

dynamic

3.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

What will be the value of x after executing this code? int x=5; x = x++ + ++x;

11

12

13

Undefined behavior

4.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Which operator is used to get the remainder in C?

/

%

\

//

5.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

How many times will the following loop execute? for(int i=0; i<10; i+=2) { }

10

5

Infinite

4

6.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Which of the following function declaration is correct for returning a pointer to int?

int *function();

int function();

*int function();

pointer int function();

7.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Which of the following statements about arrays in C is FALSE?

Array elements are stored in contiguous memory locations.

Array indices start from 1.

The size of array must be a constant value.

Arrays can be multidimensional.

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?