Set - 2

Set - 2

University

20 Qs

quiz-placeholder

Similar activities

Pointers in C

Pointers in C

University

24 Qs

Python End of Topic Quiz

Python End of Topic Quiz

8th Grade - University

15 Qs

CODE ZENITH

CODE ZENITH

University

15 Qs

C fundmentals

C fundmentals

University

18 Qs

Coding club Summit Online Quiz

Coding club Summit Online Quiz

University

15 Qs

ROUND 1 QUIZ FOR 1ST YEAR

ROUND 1 QUIZ FOR 1ST YEAR

University

20 Qs

Python Basics

Python Basics

University

15 Qs

C Programming Unit-1 Test-2

C Programming Unit-1 Test-2

University

20 Qs

Set - 2

Set - 2

Assessment

Quiz

Computers

University

Hard

Created by

Vedadri Harith Nadupalle

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which Java collection class provides an ordered, index-based structure, but allows duplicate elements?

Vector

LinkedList

ArrayList

HashSet

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the 'transient' keyword in Java?

It indicates that a variable cannot be changed

It specifies that a variable is not part of the object's persistent state

It is used to declare an immutable class

It is used to define a variable that cannot be serialized

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

int x = 5;

System.out.println(x > 2 ? x < 4 ? 10 : 8 : 7);

7

It will not compile

8

10

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If PENCIL is coded as 742956, how is PAPER coded?

81594

87514

81754

85714

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A clock shows 3:45. What is the angle between the hour and minute hands?

120 degrees

112.5 degrees

150 degrees

135 degrees

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct way to declare a constant in Java?

static final int VALUE = 10;

constant int VALUE = 10;

final int VALUE = 10;

const int VALUE = 10;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet?

numbers = (4, 7, 19, 2, 89, 45, 72, 22)

sorted_numbers = sorted(numbers)

even = lambda a: a % 2 == 0

even_numbers = filter(even, sorted_numbers)

print(type(even_numbers))

list

tuple

int

filter

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?