Dart Final

Dart Final

University

9 Qs

quiz-placeholder

Similar activities

Python Strings and Variables

Python Strings and Variables

5th Grade - University

8 Qs

PUBLIC FINANCE-TYPES OF BUDGETING

PUBLIC FINANCE-TYPES OF BUDGETING

University

10 Qs

VKU JF - Bộ 1

VKU JF - Bộ 1

University

11 Qs

Round 3

Round 3

University

11 Qs

Lesson 1 Introduction to C Programming

Lesson 1 Introduction to C Programming

12th Grade - University

7 Qs

Vsco Girlssss

Vsco Girlssss

KG - Professional Development

11 Qs

Robo Soccer

Robo Soccer

University

13 Qs

SKEE1103 CT#11c: Pointers and Functions

SKEE1103 CT#11c: Pointers and Functions

University

11 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"