forked from joharbatta/DataStructure-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDemo.java
More file actions
12 lines (12 loc) · 456 Bytes
/
Demo.java
File metadata and controls
12 lines (12 loc) · 456 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
//ek hi class public ho skti h
//static=call krane ke liye
//out=variables
//camel case=two types:upper(Format'StudentData')every word of first letter must be capital,iska naam hum sirf class or interface ko hi dete h
//lower camle case(Format 'studentDataInfo')pehla letter small only,bakiyon ka capital hoga,can identify through variables or functions().
public class Demo
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}