VIVA VOCE SAMPLE QUESTIONS
SAMPLE QUESTIONS: https://medium.com/@blup-tool/top-20-flutter-interview-questions-basic-concepts-and-fundamentals-9e3525c6ad89 ✅ 1: Introduction to Flutter (Basics) 1. What is Flutter? Flutter is an open-source UI toolkit by Google used to build applications for mobile, web, and desktop from a single codebase using Dart. 2. What programming language is used in Flutter? Dart is the primary language used in Flutter development. 3. What is a widget in Flutter? A widget is the fundamental building block of the Flutter UI. Everything in Flutter (buttons, text, layouts) is a widget. 4. What are the types of widgets in Flutter? There are two main types: StatelessWidget (immutable, UI doesn’t change) StatefulWidget (mutable, UI can change dynamically) 5. What is the main entry point of a Flutter app? The main() function is the entry point, where runApp() is called. ✅ 2. Exploring Widgets and Layouts Q2.1: What are the basic UI widgets in Flutter? A: Text, Image, Container, Icon, Button, ...