Gadgets

Thursday, 21 February 2013

sample rasume format


RESUME


Name                                                                                               E-mail: 
                                                                                                         Mobile: +91-



                       
Objective
                               
 Intend to build a career with leading an organization of hi-tech environment with committed & dedicated people, which will help me to explore myself fully and realize my potential. I am willing to work as a key player in challenging and creative environment.
Educational Profile                                                                    

   
Examination 

Discipline/
Specialization
School/college
Board/
University
Year of Passing
Percentage
     (%)























Project Profile

Project title (Mini Project)          :      
Language of Implementation      :       
Data Base                                   :      
Operating System                       :     
Description                                  :      
                                                         
                                                                                           
      
                                                           
 
                       
Strengths

SOFTWARE EXPOSURE


achivements


Personal Profile

Name                           :        
Father’s Name             :        
Sex                              :        
Marital Status              :       
Nationality                    :       
Hobbies                       :        
Permanent Address     :        
                                             

Declaration
           
                       I hereby declare that the above-mentioned information is correct up to my knowledge and I bear the responsibility for the correctness of the above-mentioned particulars.

Date:                                                                                                          (Name)               
Place:                                                                                 


Java Inheritance


Inheritance:-
Inheritance is mechanism to create a new class by taking properties of existing(super) class. existing class is called super class & produced class is called sub class.
Here we create object for sub class
1.      Singe inheritance.
2.      Multilevel inheritance.
3.      Multiple inheritance.
àMultiple inheritance is not available in java. Here one sub class has more than one super class. JVM confuse to execute super class.
Single Inheritance:-
We can create only one subclass and it’s consist only one super class.
 
Multilevel Inheritance:-
We can create two or more super classes and sub classes.
“A” is super  class of “B”. ”B” is super class of “C” and “b” Is sub class of “A”. 
 
Example program: -
public class Inheritance {
    public static void main(String args[]){
        Sub s=new Sub();
        s.adding();
        s.subt();
    }
   
}
class Add{
    int a=10,b=20,c;
    void adding()
    {
       
        c=a+b;
        System.out.println("super class :"+c);
    }
}
class Sub extends Add{
    void subt(){
   c=b-a;
    System.out.println("sub class :"+c);
    }
}