NANDHOO
.
Home
Dashboard
Flutter & Firebase Authentication: The Complete Guide
Dart Fundamentals
Quiz
Chapter Quiz: Dart Fundamentals
Dart Fundamentals Quiz
Complete this assessment with 100% score to master this chapter.
01
Which keyword is used to declare a variable whose value can be set only once and is determined at runtime?
const
final
var
static
02
What is the correct way to include a variable 'name' inside a string in Dart?
'Hello {name}'
'Hello + name'
'Hello $name'
'Hello #name'
03
Which data type is used to store an ordered group of objects in Dart?
Map
Set
List
Array
04
Which of these is NOT a built-in type in Dart?
int
String
bool
float
05
What is the result of 'print(5 ~/ 2);' in Dart?
2.5
2
3
Error
Submit Answers
Back to Lesson
Next Chapter