Dart Q_3.1

Dart Q_3.1

Professional Development

8 Qs

quiz-placeholder

Similar activities

POST TEST PEMBEKALAN CHAMPION DPK PPNI RSAB HK

POST TEST PEMBEKALAN CHAMPION DPK PPNI RSAB HK

Professional Development

10 Qs

Print Services Return to Work

Print Services Return to Work

Professional Development

8 Qs

Python Looping

Python Looping

Professional Development

9 Qs

python file handling

python file handling

Professional Development

10 Qs

Quiz - 2

Quiz - 2

Professional Development

9 Qs

4th BI-WEEKLY QUIZ

4th BI-WEEKLY QUIZ

Professional Development

10 Qs

Guaranteed Growth Insurance Plan

Guaranteed Growth Insurance Plan

Professional Development

10 Qs

BR2 Unit 5 Correspondence WwW

BR2 Unit 5 Correspondence WwW

Professional Development

11 Qs

Dart Q_3.1

Dart Q_3.1

Assessment

Quiz

Professional Development

Professional Development

Medium

Created by

Mina Romany

Used 8+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

from what we can read input from user?

cin>>;

console.readline();

readlinesync();

stdin.readlinesync();

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

what library is used to read from user?

dart:math

dart:io

dart:html

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

List lst=[4,5,6,7];

Queue que=Queue<String>.from(lst);

print(que);

{4,5,6,7}

[4,5,6,7]

4,5,6,7

error

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

String str="my age is 24 my father age is 66";

print(str.replaceAll(RegExp(r'\d+'), 'ali'));

print('----');

print(str);

my age is 24 my father age is 66

----

my age is 24 my father age is 66

my age is ali my father age is ali

----

my age is ali my father age is ali

my age is ali my father age is ali

----

my age is 24 my father age is 60

error

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

enum en{one,two,three,four}

print(en.two.index);

2

1

null

error

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

String str ='3.0';

print(num.parse(str).runtimeType);

double

int

string

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

var a ="18"; var b="15";

print(a+b);

1815

33

32

8.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

can we put elements of list inside a queue with one line code?

true

false