BCA/IT Sem-1 QuizoByte Round-1

BCA/IT Sem-1 QuizoByte Round-1

University

25 Qs

quiz-placeholder

Similar activities

Day 1 Quiz 1

Day 1 Quiz 1

University

20 Qs

Fundamental of Computer Science

Fundamental of Computer Science

University

20 Qs

Basic Computer Architecture Quiz

Basic Computer Architecture Quiz

University

20 Qs

Introduction to Java

Introduction to Java

University

25 Qs

CPU_JIHANFAULIN_2522059_PTIK2B

CPU_JIHANFAULIN_2522059_PTIK2B

University

20 Qs

PARTS OF A COMPUTER

PARTS OF A COMPUTER

University

20 Qs

Data Structures

Data Structures

University

20 Qs

Prelims - LIST

Prelims - LIST

University

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?