Kotlin Basics

Kotlin Basics

University

8 Qs

quiz-placeholder

Similar activities

How to find information

How to find information

University

10 Qs

М1У1 Kotlin

М1У1 Kotlin

3rd Grade - University

5 Qs

CDM 201-MD

CDM 201-MD

University

10 Qs

MOBILE DEVELOPMENT WEEK 1

MOBILE DEVELOPMENT WEEK 1

University

10 Qs

Mobile_2022_TM02_AndroIntro

Mobile_2022_TM02_AndroIntro

University

10 Qs

Android Study Jam Pathway 4

Android Study Jam Pathway 4

University

7 Qs

Games

Games

4th Grade - Professional Development

8 Qs

Quiz IT DAYS HMJ TK

Quiz IT DAYS HMJ TK

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