Advantages: - Structured Programming
Advantages: - Structured Programming
Advantages
• Structured programming
• It is user friendly and easy to understand.
• Similar to English vocabulary of words
and symbols.
• It is easier to learn.
• They require less time to write.
• They are easier to maintain.
• These are mainly problem oriented rather than machine
based.
Disadvantages
• Pointers
• Global data
• More focus on functions rather than on data
Encapsulation
Abstraction
INHERITANCE
SIMPLE
Platform Independent
Robust
Robust
•“I ran into an error and my compiler closed immediately” was a huge
problem for developers who were developing applications before the
advent of a feature called Error Handling.
• Java implemented the concept and allowed users to execute and do
custom actions when the program crashed or reported an error.
Neutral
• Java’s byte code makes it a lot faster than other languages because of
its innate similarity to native code.
• Native code is the code which is processor specific, i e. it has to be
compiled to run with a specific processor, like Intel’s x86 class
processor.
Multithreaded Programming
Distributed Language
Dynamic
• JDK
• JRE
• JVM
Comment
Comment
class demo
{
public static void main(String args[])
{
// Single line comment here
System.out.println("Single line comment
above"); }
}
Comment…Multiline
//Java program to show multi line comments class demo
{
public static void main(String args[])
{
System.out.println("Multi line
comments below"); /*Comment line
1
Comment line 2
Comment line 3*/
}
}
• java demo
• This will print “Hello World” to the terminal screen.
Java Variables
• Syntax
• type variable = value;
❑ Example
Variables
• You can also declare a variable without assigning the value, and assign
the value later
• Example
int a;
a = 15;
System.out.println(a);
Final Variables
• You can add the final keyword if you don't want others (or
yourself) to overwrite existing values
❑Example
Variables
❑Example
• Change the value of a from 15 to 20:
int a = 15;
a = 20;// myNum is now 20 System.out.println(a);
Data types