Continuous Professional Development(CPD)

Continuous Professional Development(CPD)

Professional Development

6 Qs

quiz-placeholder

Similar activities

LEARNER AND THE LEARNING ENVIRONMENT

LEARNER AND THE LEARNING ENVIRONMENT

Professional Development

10 Qs

BLP BEAUTY INDUCTION PROGRAM

BLP BEAUTY INDUCTION PROGRAM

Professional Development

10 Qs

SCMN02B - Quiz Grp. 2

SCMN02B - Quiz Grp. 2

Professional Development

10 Qs

Succession Planning 101

Succession Planning 101

Professional Development

10 Qs

Uji Pemahaman FL Mei 2021

Uji Pemahaman FL Mei 2021

Professional Development

10 Qs

Faculty Seminar

Faculty Seminar

Professional Development

10 Qs

Managing Projects

Managing Projects

Professional Development

10 Qs

Never Gonna Quiz You Up Round 3

Never Gonna Quiz You Up Round 3

Professional Development

10 Qs

Continuous Professional Development(CPD)

Continuous Professional Development(CPD)

Assessment

Quiz

Professional Development

Professional Development

Practice Problem

Medium

Created by

Parameswaran Sajeenthiran

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

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

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which of the following built-in method is used to remove the last element from an array and return that element?

last()

pop()

get()

None of the above.

Answer explanation

The pop() method is the correct answer. It is used to remove the last element from an array and return that element.

Source:JavaScript MCQ (Multi Choice Questions) - javatpoint

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What would be the output of the following Javascript code?

var string1 = "Fee"

 var intvalue = 10000

 alert( string1 + intvalue );

Fee 10000

10000

Fee10000

Exception

Answer explanation

Fee10000 is the correct answer. After concatenation, both the strings are shown as a concatenated string.

Source:JavaScript MCQ (Multi Choice Questions) - javatpoint

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which of the following function of the Array object is used to add one or more elements to the front of an array and returns the new length of the array?

splice()

unshift()

sort()

toString()

Answer explanation

"unshift()" is the correct answer. It is used to add one or more elements to the front of an array and returns the new length of the array.

Source:JavaScript MCQ (Multi Choice Questions) - javatpoint

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which of the following is not a JavaScript Data Types?

Boolean

Undefined

Number

Float

Answer explanation

"Float" is the correct answer. JavaScript supports only the following Data types:Number, String, Boolean, Object, and Undefined

Source:JavaScript MCQ (Multi Choice Questions) - javatpoint

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will be the output of the following code snippet?

var a = 1;

var b = 0;

while (a <= 3) {

a++;

b += a * 2;

console.log(b);

}

4 10 18

1 2 3

1 4 7

None of the above

Answer explanation

The loop will run 3 times, before meeting the exit condition. First value of b will be 2 2 = 4, followed by 4 + 3 2 = 10, and then value of 10 + 4 * 2 = 18.

Source:JavaScript MCQ (Multi Choice Questions) - javatpoint

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

 

Why is ref used in React js?

To bind the function.

To call A function

to Directly access A DOM node

To refer a another js file

Answer explanation

Ref is used to directly access the DOM node.

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?

Discover more resources for Professional Development