NEW
Font size
WorksheetsFlutter - Quiz 1
Total questions: 20
Worksheet time: 10mins
What is Flutter?
A high performance framework for mobile app development
A popular programming language for web development
A game development engine
How does Flutter achieve high performance?
By rendering the UI directly in the operating system's canvas
By using native framework for UI rendering
By outsourcing UI rendering to third-party libraries
What is the purpose of Hot Reload in Flutter?
To automatically deploy the app to the app store
To quickly make changes to the app's code and see the results in real time
To optimize the app's performance
What are Widgets in Flutter?
User interface components used to create the UI of the application
Code snippets for common app features
Pre-built templates for app development
Is Flutter only for developing mobile apps for a specific platform?
True
False
Can you develop both Android and iOS apps with Flutter?
True
False
What is the main folder for Dart code in Flutter?
.metadata
android
lib
What is the purpose of lib/main.dart in Flutter?
To specify the app's name
To define the app's UI
To specify the app's permissions
What is the purpose of the test folder in Flutter?
To test the app's UI
To test the app's performance
To test the app's code
What is the purpose of test/widget_test.dart in Flutter?
To test the app's UI
To test the app's performance
To test the app's code
What is .gitignore in Flutter?
A file to specify ignored files for Git version control
A file containing app metadata
A file to specify app permissions
What is the purpose of .metadata in Flutter?
A file to specify ignored files for Git version control
A file containing app metadata
A file to specify app permissions
Is Flutter open-source?
True
False
Does Flutter provide access to native features?
True
False
Does Flutter support Material Design?
True
False
What is the purpose of MyApp widget in Flutter?
To define the app's UI
To specify the app's name
To specify the app's permissions
Is MyApp widget built using Flutter native widget MaterialApp?
True
False
Does MaterialApp have a home property to specify the UI of the home page?
True
False
What is the purpose of GestureDetector widget in Flutter?
To display user gestures on the UI
To capture user interactions such as tapping, dragging, etc.
To provide haptic feedback to the user
What widget in Flutter supports State maintenance?
StatelessWidget
StatefulWidget
GestureDetector
