-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume2.java
85 lines (73 loc) · 2.81 KB
/
resume2.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import java.util.*;
class resume2{
public static void about(){
System.out.println("-------------------------------------RESUME-----------------------------------");
System.out.println("");
System.out.println("Name: Pranay Bokde");
System.out.println("Contact: 12345678");
System.out.println("Father Name: Shankar Bokde");
System.out.println("Date of Birth: 19/12/2000");
System.out.println("Gender: Male");
System.out.println("Religion: Hindu");
System.out.println("Nationality: Indian");
System.out.println("E-mail: [email protected]");
System.out.println("");
}
public static void education(){
System.out.println("------------------------------------EDUCATIONAL QUALIFICATION--------------------------");
System.out.println("");
System.out.println("1.UITBU");
System.out.println("B.E");
System.out.println("2020-Present");
System.out.println("");
System.out.println("2.ST Mary's School ");
System.out.println("Class 12");
System.out.println("2018-20");
System.out.println("");
System.out.println("3.SRI VINAYAKA HIGH SCHOOL");
System.out.println("Class 10");
System.out.println("2008-18");
System.out.println("");
System.out.println("");
}
public static void skills(){
System.out.println("------------------------------------SKILLS KNOWN----------------------------------------");
System.out.println("");
System.out.println("1.C");
System.out.println("2.C++ Programming Language");
System.out.println("3.Java Programming Language");
System.out.println("4.Python");
System.out.println("6.HTML");
System.out.println("7.CSS");
System.out.println("8.Java Script");
System.out.println("9.Node js");
System.out.println("10.DBMS");
System.out.println("");
System.out.println("");
}
public static void projects(){
System.out.println("---------------------------------PROJECT----------------------------------------");
System.out.println("");
System.out.println("1.Library Management system :Using C Programming");
System.out.println("");
System.out.println("2.A Website For A Local Gym: Using HTML, CSS");
System.out.println("");
System.out.println("");
}
public static void signature(){
System.out.println("---------------------------------DECLARATION------------------------------------");
System.out.println("");
System.out.println("I do hereby declare that the information given in this document are true to the best of my knowledge and belief");
System.out.println("");
System.out.println("");
System.out.println("SIGNATURE: ");
System.out.println("");
}
public static void main(String args[]){
about();
education();
skills();
projects();
signature();
}
}