In this article, we will discuss here how to take input and how to display the output on the screen in Kotlin. Kotlin standard I/O… Read More
Category Archives: Kotlin
In Kotlin, every variable should be declared before it’s used. Without declaring a variable, an attempt to use the variable gives a syntax error. Declaration… Read More
Operators are the special symbols that perform different operation on operands. For example + and – are operators that perform addition and subtraction respectively. Like… Read More
Kotlin is a statically typed, general-purpose programming language developed by JetBrains, that has built world-class IDEs like IntelliJ IDEA, PhpStorm, Appcode, etc. It was first… Read More
To set up a Kotlin environment for the command line, you need to do the following steps: Install the Java Development Kit (JDK): Kotlin runs… Read More
Kotlin is a statically typed, general-purpose programming language developed by JetBrains that has built world-class IDEs like IntelliJ IDEA, PhpStorm, Appcode, etc. It was first… Read More
The most fundamental data type in Kotlin is the Primitive data type and all others are reference types like array and string. Java needs to… Read More
Hello, World! is the first basic program in any programming language. Let’s write the first program in Kotlin programming language. The “Hello, World!” program in… Read More
Type conversion (also called as Type casting) refers to changing the entity of one data type variable into another data type. As we know Java… Read More
Pre-requisites: Android App Development Fundamentals for Beginners Guide to Install and Set up Android Studio Android | Starting with the first app/android project Android |… Read More
Pre-requisites: Android App Development Fundamentals for Beginners Guide to Install and Set up Android Studio Android | Starting with the first app/android project Android |… Read More
This article aims to tell and show how to “Send the data from one activity to second activity using Intent”. In this example, we have… Read More
Pre-requisites: Android App Development Fundamentals for Beginners Guide to Install and Set up Android Studio Android | Starting with first app/android project Android | Running… Read More
Alert Dialog shows the Alert message and gives the answer in the form of yes or no. Alert Dialog displays the message to warn you… Read More
This article shows how to create an android application to move from one activity to another. Below are the steps for Creating a Simple Android… Read More