Apex Session 2

Apex Session 2

1st Grade

15 Qs

quiz-placeholder

Similar activities

JavasCript

JavasCript

1st Grade - University

10 Qs

TH VÕ THỊ SÁU BÀI KIỂM TRA CHẤT LƯỢNG TOÁN LỚP 1 - GIỮA HỌC KÌ 1

TH VÕ THỊ SÁU BÀI KIỂM TRA CHẤT LƯỢNG TOÁN LỚP 1 - GIỮA HỌC KÌ 1

1st - 2nd Grade

10 Qs

ADU ILMU

ADU ILMU

1st - 6th Grade

20 Qs

Recycling Tahap II 2019

Recycling Tahap II 2019

1st - 12th Grade

10 Qs

EXAMEN PORTABILIDAD 1-2

EXAMEN PORTABILIDAD 1-2

1st - 12th Grade

15 Qs

Revisão de Bioética

Revisão de Bioética

1st - 3rd Grade

15 Qs

Fixed Voice & VAS

Fixed Voice & VAS

1st Grade

10 Qs

Supplementary Non-Technical Cases

Supplementary Non-Technical Cases

1st Grade

10 Qs

Apex Session 2

Apex Session 2

Assessment

Quiz

Professional Development

1st Grade

Practice Problem

Hard

Created by

M Salman

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output of the following code?

Integer number = 0;

if (number > 0){ system.debug(The number is positive.);}

else if (number < 0) { system.debug('The number is negative.');}

else { system.debug('The number is 0.');}

The number is positive.

The number is negative.

The number is 0.

None of them.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

Integer num = 5;

if(num = 5){

system.debug(num);

}

5

6

error

0

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to know the size of list?

size()

isEmpty()

isLength

isSize()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Remove one element from the list where element value is 2

List<Integer> numList = new List<Integer>{1 , 2};

numList.remove(0);

numList.remove(1);

numList.remove(2);

numList.remove(3);

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output of the following code?

List<String> days = new List<string>{'a','b','c','d'};

for(Integer j = 1; j < days.size(); j++ ){

system.debug(days.get(j));

}

a to d

a to c

b to d

c to d

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times this loop will run:

Integer num = 10;

while(num < 20 ){

system.debug(num);

}

1 time

10 times

20 times

infinite times (Apex CPU time limit exceeded)

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output of the following code?

boolean flag = false;

if(flag){ system.debug('The output is false');

else if(!flag){ system.debug('The output is true');}

else{system.debug('I do not know the output');}

The output is false

The output is true

I do not know the output

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?