Apex Session 2

Apex Session 2

1st Grade

15 Qs

quiz-placeholder

Similar activities

NOVA CRS

NOVA CRS

KG - 12th Grade

10 Qs

Estructuras ciclicas

Estructuras ciclicas

1st - 3rd Grade

12 Qs

JS-2

JS-2

KG - 3rd Grade

10 Qs

Django #1 (basic)

Django #1 (basic)

1st Grade - Professional Development

15 Qs

Poesia Trovadoresca

Poesia Trovadoresca

1st Grade

12 Qs

Kode Etik Pemasar Telemarketing

Kode Etik Pemasar Telemarketing

1st Grade

10 Qs

KONWENCJE W TRANSPORCIE

KONWENCJE W TRANSPORCIE

1st Grade

17 Qs

Python 1

Python 1

1st Grade - University

17 Qs

Apex Session 2

Apex Session 2

Assessment

Quiz

Professional Development

1st Grade

Hard

Created by

M Salman

Used 2+ times

FREE Resource

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

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?