Skip to main content

Posts

Find the biggest difference between any two numbers in array

Hello world program in Java

Hello world program in Java  Before we start learning about program, if you are not aware of what is Java check out my previous article   Introduction to Java Hello World Program  public class MyFirstJavaProgram {   /* This is my first java program.     * This will print 'Hello World' as the output     */   public static void main ( String [] args ) {       System . out . println ( "Hello World" ); // prints Hello World   } } Lets see , what is meaning of this program and how it can be saved ,compiled and run: In java every line of code that can actually run should be inside class. To run any java program main method is mandatory and will be defined in the same format :  public static void main ( String [] args )           public : can be accessed from anyone within the system Static : using static keyword ,any m...
Recent posts

Introduction to Java

Introduction to Java Java is an High level programming language Java was designed by Sun Micro system in 1995 and is currently owned by Oracle Java  is platform independent which means once you write the program in java it will execute in different platforms Java is portable, Robust and Dynamic  Java guarantees Write ones and Run anywhere  Java runs on 3 Billion devices like Android OS, web applications etc In Java everything is an object hence it can be easily extended Java's multi threading property enables to perform multiple tasks simultaneously

Android Basic and Core Concepts | Android Syllabus

Android Basic and Core Concepts Basics of Android Learning Objective: Get to know about android and basic concepts of android                       Concepts Introduction to Android..? History and Versions of Android Installation of Software. Setup Android Studio Hello Android Example Folder/Package Structure Dalvik Virtual Machine-DVM Software Stack Android Framework Android Emulator Android Manifest R.java file Screen Orientation Hands-On:   Installation of Android and Java software Create emulator in android Android Components Learning Objective: It is one of the important and must know concepts of android to develop any android application , it gives understanding on how the application as to be built using android components Activity Service Fragments BroadCast Receiver Conten...