Marupadi Evaluvations Till Collections

Marupadi Evaluvations Till Collections

Professional Development

6 Qs

quiz-placeholder

Similar activities

MATERIAL DIDACTICO - TEST JAVA- KHIPU

MATERIAL DIDACTICO - TEST JAVA- KHIPU

Professional Development

10 Qs

Basic Python Data Types

Basic Python Data Types

Professional Development

8 Qs

Exception Handling-2

Exception Handling-2

Professional Development

10 Qs

Java Lesson 2

Java Lesson 2

KG - Professional Development

7 Qs

JavaScript

JavaScript

Professional Development

10 Qs

Java Fundamentals-3

Java Fundamentals-3

Professional Development

10 Qs

Java Fundamentals

Java Fundamentals

Professional Development

11 Qs

Java SE: Programming I

Java SE: Programming I

Professional Development

10 Qs

Marupadi Evaluvations Till Collections

Marupadi Evaluvations Till Collections

Assessment

Quiz

Computers

Professional Development

Medium

Created by

S E

Used 3+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What line in this code snippet will give compilation error?

double d1 = 5f; // c1

double d2 = 5.0; // c2

float f1 = 5f; // c3

float f2 = 5.0; // c4

c1

c2

c3

c4

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Predict the Output

0

1

10

10010

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Predict the Output: What will be the output of the program?

String x = "xyz";

x.toUpperCase();

String y = x.replace('Y', 'y');

y = y + "abc";

System.out.println(y);

abcXyZ

abcxyz

xyzabc

XyZabc

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Predict the Output What will be the output of the program?

String str = "abc";

int number= Integer.parseInt(str);

System.out.println(number);

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

Predict the Output

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

Predict the Output: