Day-15

Day-15

Professional Development

11 Qs

quiz-placeholder

Similar activities

Kuis Array

Kuis Array

Professional Development

10 Qs

Algoritmia

Algoritmia

6th Grade - Professional Development

15 Qs

Writing an email

Writing an email

Professional Development

10 Qs

JavaScript Dasar

JavaScript Dasar

Professional Development

10 Qs

Talent Next Quiz-5

Talent Next Quiz-5

Professional Development

10 Qs

Python Looping

Python Looping

Professional Development

9 Qs

Java Collections

Java Collections

Professional Development

14 Qs

Revisão Programação Web - 2

Revisão Programação Web - 2

10th Grade - Professional Development

15 Qs

Day-15

Day-15

Assessment

Quiz

Professional Development

Professional Development

Medium

Created by

T- SIG

Used 1+ times

FREE Resource

11 questions

Show all answers

1.

OPEN ENDED QUESTION

20 sec • Ungraded

Name

Evaluate responses using AI:

OFF

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

JavaScript strings are for ________ text.
storing
manipulating
both a and b
none of the above

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

To find the length of a string, use the built-in _______ property.
size
length
area
strlen

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How do you round the number 7.25, to the nearest integer?
math.round(7.25)
round(7.25)
rnd(7.25)
math.rnd(7.25)

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

In Javascript, Which of the following method is used to find out the character at a position in a string?
charAt()
CharacterAt()
CharPos()
characAt()

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

String object returns the character in the string starting at the specified position via the specified number of characters?
slice()
split()
substr()
search()

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How to insert a comment that has more than one line in js?
//This comment has more than one line//
/*This comment has more than one line*/
//This comment has more than one line