Basic

9 Best Kotlin Books in 2024

Master Android application development course with Kotlin, it is the modern programming language, which allows app developers to be productive and concise. Professionals can build apps for the mobile platform by using Kotlin and Android Studio. Before delving more into this subject, it is important to know everything about Kotlin. Kotlin is the statically typed …

9 Best Kotlin Books in 2024 Read More »

How to Convert Kotlin Code to Java Code?

Kotlin is a language that is well known for the interoperability with the java language. Kotlin is good for Mobile-cross platform, Native, Data-Science, Server-side, Web-development, Android. Interoperability is possible in both the languages because of the JVM (Java Virtual Machine) or in other words we can say that they are compiled to the same bytecode.

Kotlin Program to Add Two Numbers

The most common program when we start learning any language after Hello World Program is to add two numbers. From as easy it may sound to making it modular and complex even to the extent adding 2 numbers without using the “+” operator. Below are the examples to add 2 numbers in different ways:

Kotlin Basic Types

Here you will learn about kotlin basic types. Data types are fundamental when it comes to any programming language, basically it tells the compiler the type of data it should expect in the defined variable. It can be a string, bool, integer, float, double, char and many more. Lets discuss them one by one in …

Kotlin Basic Types Read More »

Kotlin Variables

In this tutorial you will learn about Kotlin variables. In programming world, variable is responsible for storing some value. The value is stored at some memory location. A memory location or address may look something like 0x7ff9c05f. It is not easier to remember or use it to access the value stored at the memory address.