follow up

follow up

University

5 Qs

quiz-placeholder

Similar activities

Microsoft Sway

Microsoft Sway

3rd Grade - Professional Development

10 Qs

Materi 3 - HTML

Materi 3 - HTML

University

10 Qs

ITBA Business Agility

ITBA Business Agility

University

10 Qs

dasar komputer 2

dasar komputer 2

University

10 Qs

Solve Problems with Data

Solve Problems with Data

University

10 Qs

JavasCript

JavasCript

1st Grade - University

10 Qs

Latihan 1 Kelas 9

Latihan 1 Kelas 9

12th Grade - Professional Development

10 Qs

QUIZ: INTRO TO DATA STRUCTURES AND ALGORITHMS

QUIZ: INTRO TO DATA STRUCTURES AND ALGORITHMS

University

10 Qs

follow up

follow up

Assessment

Quiz

Instructional Technology

University

Hard

Created by

jan fajardo

Used 4+ times

FREE Resource

AI

Enhance your content

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

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

String puzzle = " Dart ";

print(puzzle.trim().toUpperCase().substring(1, 4).length);

3

4

2

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

double tricky = -15.78;

print(tricky.abs().ceil().toString().contains("15"));

Bonus

false

16

Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int x = 42;

print(x.isEven.toString().toUpperCase().startsWith("T") + x.toString().length);

BONUS

3

true

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

String code = "DartRocks!!";

print(code.replaceAll("!", "").toLowerCase().endsWith("ks") ? code.length : code.trim().compareTo("DartRocks"));

Error

0

11

-1

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

double num = 99.99;

print(num.toInt().isOdd && num.round().toString().contains(num.floor().toString()));

99

true

false

Error