Set - 2

Set - 2

University

20 Qs

quiz-placeholder

Similar activities

Searching and Sorting

Searching and Sorting

University

16 Qs

Coding club Summit Online Quiz

Coding club Summit Online Quiz

University

15 Qs

OPC MCQ's

OPC MCQ's

12th Grade - University

20 Qs

Java Array

Java Array

University

23 Qs

Introduction - Data Structures

Introduction - Data Structures

University

25 Qs

Functions

Functions

University

20 Qs

C-Py QUIZ | ROUND 1

C-Py QUIZ | ROUND 1

University

20 Qs

OCS752_CP_WEEKLY_TEST3 (20.08.2020)

OCS752_CP_WEEKLY_TEST3 (20.08.2020)

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?