Dart Final

Dart Final

University

9 Qs

quiz-placeholder

Similar activities

หลักการของ OOP เบื้องต้น

หลักการของ OOP เบื้องต้น

University

5 Qs

Tik tok dances and quotes

Tik tok dances and quotes

KG - Professional Development

12 Qs

finish the tiktok song

finish the tiktok song

KG - Professional Development

6 Qs

4th grade math

4th grade math

1st Grade - Professional Development

12 Qs

Tourism Marketing 2

Tourism Marketing 2

University

10 Qs

Java set 1

Java set 1

University

10 Qs

Oof

Oof

KG - Professional Development

5 Qs

Leadership and Power Quiz

Leadership and Power Quiz

University

10 Qs

Dart Final

Dart Final

Assessment

Quiz

Other

University

Hard

Created by

Sara Hossam

Used 28+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Every program must have a top-level function called ....

void()

main()

home()

run()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

what is the output of this code?

14

0

null

error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many "else" statements can you pair with a single "if" statement

As many as needed

1

2

>=1 && < infinity

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the assignment operator?

==

>=

=+

=

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of this code?

1

6

8

error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The base function/method anatomy in dart must have ....

name

return type

parameters

all of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An instance of a class is called ....

Attribute

Object

Method

OOP

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

"OOP" stands for .....

Object Organization Programming

Object Oriented Programming

Object Oriented Program

Obviously Oriented Program

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is true for the following code?

int height = 135;

String student = height < 150? "girl" : "boy" ;

boolean expression & the output is "girl"

boolean expression & the output is "boy"

In-line if format & the output is "girl"

In-line if format & the output is "boy"