String Methods

String Methods

Professional Development

10 Qs

quiz-placeholder

Similar activities

ՏԵԽՆՈԼՈԳԻԱՆԵՐ

ՏԵԽՆՈԼՈԳԻԱՆԵՐ

Professional Development

10 Qs

Javascript Basics-1

Javascript Basics-1

Professional Development

15 Qs

ՄԱՅՐԵՆԻ 4-րդ դասարանի գիտելիքների ստուգման թեստերի օրինակներ

ՄԱՅՐԵՆԻ 4-րդ դասարանի գիտելիքների ստուգման թեստերի օրինակներ

1st Grade - Professional Development

10 Qs

Character Functions

Character Functions

Professional Development

10 Qs

Hardest Quiz Ever

Hardest Quiz Ever

KG - Professional Development

10 Qs

Python Week 1

Python Week 1

Professional Development

15 Qs

day1

day1

Professional Development

13 Qs

Python Basics

Python Basics

Professional Development

10 Qs

String Methods

String Methods

Assessment

Quiz

Other

Professional Development

Hard

Created by

Shogher Ghazaryan

Used 21+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Ինչ կտպի հետևյալ կոդը

var str = "Hello";

alert(str.length)

6

5

4

undefined

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Ինչ կտպի

var str = "Hello world";

var res = str.slice(1, 7);

alert(res)

ello w

ello

ello wo

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Ինչ կտպի

var str = "Hello world";

var res = str.substring(1, 5);

alert(res)

ello

ello w

Hello

world

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Ինչ կտպի

var str = "Hello world";

var result = str.substr(6,1);

alert(result)

o

w

e

d

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Ինչ կտպի

var str = "Hello world"

var res = str.slice(6)

alert(res)

o world

llo wo

Hello

world

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Ինչ կտպի

var str = "HELLO WORLD";

str.toLowerCase();

alert(str.charAt(8))

R

O

r

o

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Ինչ կտպի

var str = "Hello world! World!!!";

var result = str.indexOf("world");

alert(result)

6

12

-1

7

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?