Kotlin Basics

Kotlin Basics

University

8 Qs

quiz-placeholder

Similar activities

Dr. S. Uma's Object Oriented Programming Quiz Event 1

Dr. S. Uma's Object Oriented Programming Quiz Event 1

University

10 Qs

GDSC

GDSC

University

10 Qs

C/C++ C Function

C/C++ C Function

University

12 Qs

Compose Camp - Session 2 Quiz

Compose Camp - Session 2 Quiz

University

10 Qs

Compose Week 3

Compose Week 3

University

10 Qs

Jetpack Compose - Programming

Jetpack Compose - Programming

University

13 Qs

Pemrograman Android 01 - Pengantar Android & Kotlin

Pemrograman Android 01 - Pengantar Android & Kotlin

University

6 Qs

Kotlin

Kotlin

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