Dart Final

Dart Final

University

9 Qs

quiz-placeholder

Similar activities

Module-I-Java

Module-I-Java

University

10 Qs

Robo Soccer

Robo Soccer

University

13 Qs

PUBLIC FINANCE-TYPES OF BUDGETING

PUBLIC FINANCE-TYPES OF BUDGETING

University

10 Qs

JAVA Review

JAVA Review

University

10 Qs

DFC 10042 PROBLEM SOLVING AND PROGRAM DESIGN

DFC 10042 PROBLEM SOLVING AND PROGRAM DESIGN

University

10 Qs

TE COMP C#

TE COMP C#

University

9 Qs

Integrative Quiz

Integrative Quiz

University

8 Qs

Java Strings

Java Strings

1st Grade - Professional Development

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"