I am Avichal Vishnoi a student of MLV Textile & Engineering College, Bhilwara of B.tech. in Information Technology Branch. My e-mail ID is avichalvishnoi29@gmail.com. My postal address is Patola Mahadev road Bajrangpura Pur, Bhilwara (Raj.) 311802.
I completed my primary schooling from New Era Noble School, Diamond Educational Academy and Mayur Public School. I completed my Secondary and Senior Secondary Education from Govt. Ser. Sec. School Pur. In secondary examination I got 83.17% marks and 99% marks in mathematics. I completed my senior secondary study in Physics, Chemistry and Mathematics with 82.80%. For my best performance in Secondary and Senior Secondary exams Government of Rajasthan provided me two laptops.
I am a member of Heartfulness meditation and Pur Study Circle.
C programming language is my core programming language If anybody have any problem in C programming language he/she can contact me through mail.
Chapter 3 First Program in Java ⦁ Syntax for deceleration of class access specifier class ClassName { /* Body of class is followed by curly bracket*/ } ⦁ An outer class can be followed by either public access specifier or default access specifier. ⦁ Name of class and name of source code must be same. ⦁ The main() function must follow the following prototype : public static void main (String [] args) { // Body of main() function } ⦁ Code of HelloWorld.java class HelloWorld { public static void main (String [] args) { System.out.println("Hello World"); } } Comments :- a. Here System is a predefined class. b. out is a static member reference variable of System class which contains address of an variable of PrintStream class. c. println() is a member function of PrintStream class. Output :- Hello World ⦁ We have to write an access specifier with every member in a class.
Comments
Post a Comment