Dart Final

Dart Final

University

9 Qs

quiz-placeholder

Similar activities

Python set 2

Python set 2

University

10 Qs

Python set 3

Python set 3

University

10 Qs

PF101 - Week 2 - Quiz #1

PF101 - Week 2 - Quiz #1

University

10 Qs

VKU JF - Bộ 1

VKU JF - Bộ 1

University

11 Qs

Vsco Girlssss

Vsco Girlssss

KG - Professional Development

11 Qs

POST TEST MODULE 4

POST TEST MODULE 4

University

10 Qs

vsco

vsco

KG - Professional Development

12 Qs

JAVA PROGRAMING

JAVA PROGRAMING

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"