Java Coding Convention

Coding Standards for Components: It is recommended to write components name by its purpose. This approach improves the readability and maintainability of code. Coding Standards for Classes: Usually class name should be noun starting with uppercase letter. If it contains multiple word than every inner word should start with uppercase. Eg: String, StringBuffer, Dog Coding … Continue reading Java Coding Convention

Hello World!!!

Lets take a first step in writing Kotlin Program. Like learning of every new Programming Language starts with Hello World!!! Program, here we will do the same. Install Android Studio 3.0 and if you use an earlier version, you'll need to install the Kotlin plugin. Go to File | Settings | Plugins | Install JetBrains plugin… … Continue reading Hello World!!!