Kotlin Basics

Kotlin Basics

University

8 Qs

quiz-placeholder

Similar activities

TECHGIRLS MMU IT QUICKFIRE QUIZ

TECHGIRLS MMU IT QUICKFIRE QUIZ

University

10 Qs

Android Development with Kotlin functions Quiz

Android Development with Kotlin functions Quiz

University

10 Qs

Weekly Contest #8 - TechXNinjas

Weekly Contest #8 - TechXNinjas

University

10 Qs

Compose Camp Session 2

Compose Camp Session 2

University

7 Qs

Vue.js Composables Quiz

Vue.js Composables Quiz

University

8 Qs

Weekly 3 Mobile Developer GDSC UG

Weekly 3 Mobile Developer GDSC UG

University

7 Qs

Mini Quiz CameraX PAPB E

Mini Quiz CameraX PAPB E

University

10 Qs

Mobile app development

Mobile app development

University

10 Qs

Kotlin Basics

Kotlin Basics

Assessment

Quiz

Computers

University

Hard

Created by

Anam Malik

Used 33+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

When was Kotlin initially released?

2008

2009

2010

2011

2.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Is Kotlin compatible with the Java programming language?

Yes

No

3.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Kotlin was developed by?

Jetbrains

Google

JVM

IBM

4.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Which one is not the feature of jetpack compose?

Intuitive

Powerful

Accelerates development

Stable

5.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Which function is the entry point of the app in Kotlin to build the UI?

setContent()

onCreate()

@Composable

Main()

6.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

What is @composable?

A function

A class

An Annotation used by Jetpack compose

Structure used by Jetpack Compose

7.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Which function defines your layout?

setContent

@Composable

onCreate

super.onCreate

8.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Which is not true about Composable functions?

Functions names are capitalised

Add @Composable before the function

All functions marked with @Composable annotation can be only from the setContent () function

Option C but they can be called from other Composable functions as well