Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
25 views

Intro To Programming in JAVA August 2023

The document provides information about timings for a LinkedIn profile and online resources for Java programming. It also shares links to presentation files and notes for learning basic Java programs and the steps to download Java.

Uploaded by

IG Khan
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views

Intro To Programming in JAVA August 2023

The document provides information about timings for a LinkedIn profile and online resources for Java programming. It also shares links to presentation files and notes for learning basic Java programs and the steps to download Java.

Uploaded by

IG Khan
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Timings - Monday, Wed, Fri (9PM - 11PM)

LinkedIn - Saksham Arora - Software Engineer - Microsoft | LinkedIn


Resume Saksham -
https://drive.google.com/file/d/16wcpmdqt1jcgA7yPIjZGIaktjIHQGn38/
view?usp=sharing
Online Java Compiler - https://www.onlinegdb.com/
Discord - Saksham#3230

Day 1 PPT LINK -


https://drive.google.com/file/d/1xZxe6fX7jZuq3vJX1BKgEoxIG1oki3Mt/view?usp=sharing

Drawing Notes link - I will update the link of drive

7th August (Basic of program)


If you are not well in JAVA,
We will everything from the starting part

Computer understand binary language (011010101)


Programming language - English with some of rules

Humans cannot understand binary language

7th August (Basic of Java program)


// Any line which begins with a // will be ignored
// Java is based upon Object oriented programming (OOPs) ()
// Class and object in very detail in OOPs
// RULE 1 - Every program will begin with a class
// Classes are also having names
// RULE 2 - First letter for a class will be a capital letter

// RULE 3 - FileName should be as same as className

// Execution of program it always begin with main function


// RULE 4 - Every program will have a main function
// public will make class as public property so that
everyone(Multiple classes) can use it
// JAVA is case sensitive (it will treat uppercase and
lowercase differently)
public class Main
{
// public - will make function as public property so that
other functions can use it
// static - Main function will be static and not require
any object
// void - Main function will not return anything (We will
discuss in L9 Methods & Functions)
// main - name of the function is main
// String args[] - Command line arguments (We will
discuss in L8 arrays)
public static void main(String args[])
{
// Print anything in Java
// Any english sentence can be printed but it needs
to be written in "" (Double quotes)
System.out.print("Hello");

// System.out.print("AnythingYouCanPrint") - It will
print English sentence and not change the line
// System.out.println("AnythingYouCanPrint") - It
will print English sentence and change the line
}
}

7th July (Basic Java program)


public class Main
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}
7th August (Steps to download JAVA)
https://download.java.net/java/GA/jdk19.0.1/afdd2e245b014143b62ccb916125e3ce/10/
GPL/openjdk-19.0.1_windows-x64_bin.zip
https://jdk.java.net/19/

You might also like