# 1pilihanWhat is a key characteristic of stateless widgets in Flutter?They maintain their own stateThey are immutableThey require a State classThey rebuild when state changes
# 2pilihanIn which scenario should you use a stateful widget?When displaying static textWhen data is managed by its parentWhen the UI needs to change dynamicallyWhen displaying a non-interactive image
# 3pilihanWhat method do you override to create the UI in a StatelessWidget?build()setState()createState()initState()
# 4pilihanWhich method is used in a StatefulWidget to update the UI based on state changes?build()setState()createState()dispose()