An Android app developer has recently made updates to the MainActivity using the code provided below. However he is encountering error while executing this code snippet.

As a QA tester reviewing the code, you come across the implementation of the MainActivity class. Your task is to identify the line number and the reason of the error related to Jetpack Compose usage in the code.

class MainActivity : Activity() { // Line 1
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent { // Line 2
Greeting(name = "Infosys","Banglore")
}
}

@Composable
fun Greeting(name: String,loc:String) { // Line 3
Text(text = "Hello $name!") // Line 4
}
}

Which of the following statements accurately describes the potential issue ?

Line 1 - The MainActivity class should extend the ComponentActivity class instead of the Activity class.

Line 2 -The setContent{} function cannot be used inside the onCreate() method

Line 3 - The Greeting() function should be marked as @Preview to enable previewing the UI layout.

Line 4 - The Text() composable cannot be used within the Jetpack Compose framework.

Verified Answer
Correct Option - a

To get all Infosys Certified Android Specialist Exam questions Join Group https://bit.ly/infy_premium_group

We're passionate about offering best placement materials and courses!! A one stop place for Placement Materials. We daily post Offcampus updates and Placement Materials.

Qtr No. 213, New Town Yehlanka Indore 454775

admin@prepflix.in