# 1Pilihan bergandaWhat is a key characteristic of stateless widgets in Flutter?They maintain their own stateThey are immutableThey require a State classThey rebuild when state changes
# 2Pilihan bergandaIn 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
# 3Pilihan bergandaWhat method do you override to create the UI in a StatelessWidget?build()setState()createState()initState()
# 4Pilihan bergandaWhich method is used in a StatefulWidget to update the UI based on state changes?build()setState()createState()dispose()