SlideShare a Scribd company logo
qwertyuiopasdfghjklzxcvbnmqwertyui
opasdfghjklzxcvbnmqwertyuiopasdfgh
jklzxcvbnmqwertyuiopasdfghjklzxcvb
nmqwertyuiopasdfghjklzxcvbnmqwer
tyuiopasdfghjklzxcvbnmqwertyuiopas
dfghjklzxcvbnmqwertyuiopasdfghjklzx
cvbnmqwertyuiopasdfghjklzxcvbnmq
wertyuiopasdfghjklzxcvbnmqwertyuio
pasdfghjklzxcvbnmqwertyuiopasdfghj
klzxcvbnmqwertyuiopasdfghjklzxcvbn
mqwertyuiopasdfghjklzxcvbnmqwerty
uiopasdfghjklzxcvbnmqwertyuiopasdf
ghjklzxcvbnmqwertyuiopasdfghjklzxc
vbnmqwertyuiopasdfghjklzxcvbnmrty
uiopasdfghjklzxcvbnmqwertyuiopasdf
ghjklzxcvbnmqwertyuiopasdfghjklzxc
Super keyword
Method overloading and
method overriding
Super keyword:
The super is a reference variable that is used to refer immediate parent
class objects.
Use:
1. Super() is used to refer the immediate parent class instance
variables.
2. Super() is used to invoke immediate parent class constructor.
3. Super() is used to invoke immediate parent class methods.
Example:
ClassVehicle
{
Int speed=100;
}
ClassBike extendsvehicle
{
Int speed=50;
Voiddisplay()
{
System.out.println(“speed=”+super.speed);
}
Publicstaticvoidmain(Stringarr[])
{
Bike b= new Bike();
b.display();
}
}
Output:speed=100
Example:the followingprogram show the use of superfor immediate parent class constructor
invocation
classBox
{
int height,width;
publicBox(inth,intw)
{
height=h;
width=w;
}
}
classBox1 extendsBox
{
intlength;
publicBox1(inth,intw,intl)
{
super(h,w);
length=l;
}
publicvoiddisplay()
{
System.out.println("height=t"+height+"
width=t"+width+"length=t"+length);
}
}
classBox3 extendsBox1
{
intweight;
publicBox3(inth,intw,intl,intw1)
{
super(h,w,l);
weight=w1;
}
publicvoid display1()
{
intdim=height*width*length*weight;
System.out.println("dimensionsare=t"+dim);
}
}
classBox2
{
publicstaticvoidmain(Stringarr[])
{
Box3 a=new Box3(10,20,20,70);
a.display();
a.display1();
}
}
Note:to access constructor with in second class i.e constructor chainingwe use super.
To access constructor within a class we use this keyword.
Example:Use ofsuper for constructor chaining with in two classes
classcommon
{
intl ,b;
publiccommon(intx,inty)
{
l=x;
b=y;
}
voiddisplay()
publicvoiddisplay()
{
super.display();
System.out.println("height="+h);
}
publicintvol()
{
returnl*b*h;
}
}
classcubetest
{
{
System.out.println("length="+l);
System.out.println("Breadth="+b);
}
}
classRectangle extendscommon
{
publicRectangle(intx ,inty)
{
super(x,y);
}
publicintarea()
{
returnl*b;
}
}
classcube extendsRectangle
{
inth;
publiccube(int x,inty,intz)
{
super(x,y);
h=z;
}
publicstaticvoidmain(Stringarr[])
{
cube c = new cube(40,20,30);
//Rectangle r=new Rectangle(30,20);
c.display();
System.out.println("areais
equal="+c.area());
System.out.println("areais
equal="+c.vol());
}}
Method overriding:
Methodoverriding occurs whenasubclass defines amethodthat has the
same signature and return type as method insuper class.
Note: method with different signature is overloaded not overridden
ClassA ClassB extendsA
{
Int I,j;
A(inta,intb)
{
I=a;
J=b;
}
Voidshow()
{
System.out.println(“I&j”+i+””+j);
}
}
{
Int k;
B(inta,intb,intc)
{
Super(a,b);
K=c;
}
Voidshow()
{
System.out.println(“k===”+k);
}
}
Classoverload
{
Publicstaticvoidmain(Stringarr[])
{
B obj=new B(1,2,3);
Obj.show();
}
}
Output:subclassshow() overriddensuperclassshow()
K===3
What is importance of method overriding;
Overriddenmethodallowsjavatosupportrun-time polymorphism
Whenan overriddenmethodis calledthrough a superclass reference.Whichversionof
methodis executed.
The versionof an overriddenmethodthatisexecutedisdeterminedbythe type of the object
beingreferencedtoatthe time of call.Thisdeterminationismade atrun time.
Defaultconstructorisprovidedby
compilerisclassisempty:
class A
{
publicA()
{
System.out.println("i amA");
}
}
classB extendsA
{
class A extendsObject
{
publicA()
{
Super();
System.out.println("i amA");
}
}
classB extendsA
{
VoidB()
}
classC extendsB
{
publicC()
{
System.out.println("i amin c");
}
publicstaticvoidmain(Stringarr[])
{
A x= newA();
B y=newB();
C z=newC();
}
}
Output:
I am inA
I am inA
I am inA
I am inc
{
Super();
}
}
classC extendsB
{
publicC()
{
Super();
System.out.println("i amin c");
}
publicstaticvoidmain(Stringarr[])
{
A x= new A();
B y=new B();
C z=new C();
}
}
Explanation:
In javaeach classis a director indirectsubclassof java.lang.Object;
At the time of compilationcompileradds extendsObjectto definitionofeachindependent
class.
In case of inheritance eachsubclass inheritsdata memberfrom its superclassconstructor.
Compilerdo the following:
1. If a userdefinedclassdoesnothave aconstructor thencompileraddsadefault
constructorand writesSuperkeywordinit.
2. If a userdefinedclasshasconstructor thencompilerwritessuperkeywordtoeachof
the constructor whichdoesnotcontainsThisor superkeywordasitsfirststatement.
Difference between method overloading and method
overriding.
Overloading overriding
1. Method overloading is used Method overriding is used to
to increase the readability of
the program
provide the specific
implementation of the method
that is already provided by its
super class
2. Method overloading is
performed with in a class
Method overriding occurs in the
class that has IS-A relationship
3. In case of method
overloading parameter must
be different.
In case of method overriding
parameter must be same
Question: why we cannot override static method.
Ans: because static method is bound with class whereas
instance method is bound to object. Static belongs to class
area and instance belongs to heap area.

More Related Content

What's hot

Universidad autonoma de baja california
Universidad autonoma de baja californiaUniversidad autonoma de baja california
Universidad autonoma de baja california
Williamgutierrez172
 
Roshettat book 1 word format
Roshettat book 1 word formatRoshettat book 1 word format
Roshettat book 1 word format
Pharmacia1 .com
 
Graficas encuesta
Graficas encuestaGraficas encuesta
Graficas encuesta
caritoAJ
 
Ruiz rios brandon omar
Ruiz rios brandon omarRuiz rios brandon omar
Ruiz rios brandon omar
omarrios33
 
How self talk improves our thinking
How self talk improves our thinkingHow self talk improves our thinking
How self talk improves our thinking
jonasdaniel042
 
ARCHIVO2
ARCHIVO2ARCHIVO2
ARCHIVO2
am9339509
 
archivo 1
archivo 1archivo 1
archivo 1
carlos2081
 
Practica word
Practica wordPractica word
Practica word
radilla127
 
Portada word
Portada wordPortada word
Portada word
valencia130798
 
Practica word
Practica wordPractica word
Practica word
kimberlybanda26
 
Practica word
Practica wordPractica word
Practica word
marychuymora66
 
Portada
PortadaPortada
M
MM
Practica word
Practica wordPractica word
Practica word
annac127
 
Universidad autonoma de baja californiaslidhaere
Universidad autonoma de baja californiaslidhaereUniversidad autonoma de baja californiaslidhaere
Universidad autonoma de baja californiaslidhaere
julissamelchor27
 
Portada word
Portada wordPortada word
Portada word
andreagonzalez061016
 
Universidad autonoma de baja california
Universidad autonoma de baja californiaUniversidad autonoma de baja california
Universidad autonoma de baja california
jhoanaalvarez199
 
Practica de prueba2
Practica de prueba2Practica de prueba2
Practica de prueba2
hgusman
 
Practica slideshar1
Practica slideshar1Practica slideshar1
Practica slideshar1
lizbethponce26
 
Universidad autonoma de baja california
Universidad autonoma de baja californiaUniversidad autonoma de baja california
Universidad autonoma de baja california
javierderecho221
 

What's hot (20)

Universidad autonoma de baja california
Universidad autonoma de baja californiaUniversidad autonoma de baja california
Universidad autonoma de baja california
 
Roshettat book 1 word format
Roshettat book 1 word formatRoshettat book 1 word format
Roshettat book 1 word format
 
Graficas encuesta
Graficas encuestaGraficas encuesta
Graficas encuesta
 
Ruiz rios brandon omar
Ruiz rios brandon omarRuiz rios brandon omar
Ruiz rios brandon omar
 
How self talk improves our thinking
How self talk improves our thinkingHow self talk improves our thinking
How self talk improves our thinking
 
ARCHIVO2
ARCHIVO2ARCHIVO2
ARCHIVO2
 
archivo 1
archivo 1archivo 1
archivo 1
 
Practica word
Practica wordPractica word
Practica word
 
Portada word
Portada wordPortada word
Portada word
 
Practica word
Practica wordPractica word
Practica word
 
Practica word
Practica wordPractica word
Practica word
 
Portada
PortadaPortada
Portada
 
M
MM
M
 
Practica word
Practica wordPractica word
Practica word
 
Universidad autonoma de baja californiaslidhaere
Universidad autonoma de baja californiaslidhaereUniversidad autonoma de baja californiaslidhaere
Universidad autonoma de baja californiaslidhaere
 
Portada word
Portada wordPortada word
Portada word
 
Universidad autonoma de baja california
Universidad autonoma de baja californiaUniversidad autonoma de baja california
Universidad autonoma de baja california
 
Practica de prueba2
Practica de prueba2Practica de prueba2
Practica de prueba2
 
Practica slideshar1
Practica slideshar1Practica slideshar1
Practica slideshar1
 
Universidad autonoma de baja california
Universidad autonoma de baja californiaUniversidad autonoma de baja california
Universidad autonoma de baja california
 

Similar to Super keyword

Dillyduckhighlighted 120224083339-phpapp01 (1)
Dillyduckhighlighted 120224083339-phpapp01 (1)Dillyduckhighlighted 120224083339-phpapp01 (1)
Dillyduckhighlighted 120224083339-phpapp01 (1)
Harry George
 
Computer fundamentals
Computer fundamentalsComputer fundamentals
Computer fundamentals
International advisers
 
DDAA FPGA - Multiplexor De Numeros en Display 7 Segmentos En Tiempo
DDAA   FPGA - Multiplexor De Numeros en Display 7 Segmentos En TiempoDDAA   FPGA - Multiplexor De Numeros en Display 7 Segmentos En Tiempo
DDAA FPGA - Multiplexor De Numeros en Display 7 Segmentos En Tiempo
Fernando Marcos Marcos
 
Intellectual property lawyer: The Protector of your ideas
Intellectual property lawyer: The Protector of your ideasIntellectual property lawyer: The Protector of your ideas
Intellectual property lawyer: The Protector of your ideas
smithdon000000
 
Libro de ejercicios de word
Libro de ejercicios de wordLibro de ejercicios de word
Libro de ejercicios de word
noechu51013
 
Limit fungsi (soal+pembahasan) -by syifadhila
Limit fungsi (soal+pembahasan) -by syifadhilaLimit fungsi (soal+pembahasan) -by syifadhila
Limit fungsi (soal+pembahasan) -by syifadhila
Syifa Dhila
 
Transformada de Fourier - Señales en forma trigonometrica y complejas
Transformada de Fourier - Señales en forma trigonometrica y complejasTransformada de Fourier - Señales en forma trigonometrica y complejas
Transformada de Fourier - Señales en forma trigonometrica y complejas
Fernando Marcos Marcos
 
cv themba
cv thembacv themba
cv themba
Themba Absalom
 
English ii (e portfolio)
English ii (e portfolio)English ii (e portfolio)
English ii (e portfolio)
마 이환
 
Manual of MS-Access / Excel / VBA Project
Manual of MS-Access / Excel / VBA ProjectManual of MS-Access / Excel / VBA Project
Manual of MS-Access / Excel / VBA Project
cormacsharpe
 
c99
c99c99
Trabajo practico nº 20
Trabajo practico nº 20Trabajo practico nº 20
Trabajo practico nº 20
germi98
 
Controlling Technical Debt with Continuous Delivery
Controlling Technical Debt with Continuous DeliveryControlling Technical Debt with Continuous Delivery
Controlling Technical Debt with Continuous Delivery
walkmod
 
LINEA DEL TIEMPO DE LA HISTORIA DEL ARTE
LINEA DEL TIEMPO DE LA HISTORIA DEL ARTELINEA DEL TIEMPO DE LA HISTORIA DEL ARTE
LINEA DEL TIEMPO DE LA HISTORIA DEL ARTE
Yicela Bejarano
 
생산적인 개발을 위한 지속적인 테스트
생산적인 개발을 위한 지속적인 테스트생산적인 개발을 위한 지속적인 테스트
생산적인 개발을 위한 지속적인 테스트
기룡 남
 
The definitive guide to java agents
The definitive guide to java agentsThe definitive guide to java agents
The definitive guide to java agents
Rafael Winterhalter
 
GraphQL Relay Introduction
GraphQL Relay IntroductionGraphQL Relay Introduction
GraphQL Relay Introduction
Chen-Tsu Lin
 
Property Based Testing with ScalaCheck
Property Based Testing with ScalaCheckProperty Based Testing with ScalaCheck
Property Based Testing with ScalaCheck
David Galichet
 
The Ring programming language version 1.3 book - Part 63 of 88
The Ring programming language version 1.3 book - Part 63 of 88The Ring programming language version 1.3 book - Part 63 of 88
The Ring programming language version 1.3 book - Part 63 of 88
Mahmoud Samir Fayed
 
The Ring programming language version 1.5.3 book - Part 80 of 184
The Ring programming language version 1.5.3 book - Part 80 of 184The Ring programming language version 1.5.3 book - Part 80 of 184
The Ring programming language version 1.5.3 book - Part 80 of 184
Mahmoud Samir Fayed
 

Similar to Super keyword (20)

Dillyduckhighlighted 120224083339-phpapp01 (1)
Dillyduckhighlighted 120224083339-phpapp01 (1)Dillyduckhighlighted 120224083339-phpapp01 (1)
Dillyduckhighlighted 120224083339-phpapp01 (1)
 
Computer fundamentals
Computer fundamentalsComputer fundamentals
Computer fundamentals
 
DDAA FPGA - Multiplexor De Numeros en Display 7 Segmentos En Tiempo
DDAA   FPGA - Multiplexor De Numeros en Display 7 Segmentos En TiempoDDAA   FPGA - Multiplexor De Numeros en Display 7 Segmentos En Tiempo
DDAA FPGA - Multiplexor De Numeros en Display 7 Segmentos En Tiempo
 
Intellectual property lawyer: The Protector of your ideas
Intellectual property lawyer: The Protector of your ideasIntellectual property lawyer: The Protector of your ideas
Intellectual property lawyer: The Protector of your ideas
 
Libro de ejercicios de word
Libro de ejercicios de wordLibro de ejercicios de word
Libro de ejercicios de word
 
Limit fungsi (soal+pembahasan) -by syifadhila
Limit fungsi (soal+pembahasan) -by syifadhilaLimit fungsi (soal+pembahasan) -by syifadhila
Limit fungsi (soal+pembahasan) -by syifadhila
 
Transformada de Fourier - Señales en forma trigonometrica y complejas
Transformada de Fourier - Señales en forma trigonometrica y complejasTransformada de Fourier - Señales en forma trigonometrica y complejas
Transformada de Fourier - Señales en forma trigonometrica y complejas
 
cv themba
cv thembacv themba
cv themba
 
English ii (e portfolio)
English ii (e portfolio)English ii (e portfolio)
English ii (e portfolio)
 
Manual of MS-Access / Excel / VBA Project
Manual of MS-Access / Excel / VBA ProjectManual of MS-Access / Excel / VBA Project
Manual of MS-Access / Excel / VBA Project
 
c99
c99c99
c99
 
Trabajo practico nº 20
Trabajo practico nº 20Trabajo practico nº 20
Trabajo practico nº 20
 
Controlling Technical Debt with Continuous Delivery
Controlling Technical Debt with Continuous DeliveryControlling Technical Debt with Continuous Delivery
Controlling Technical Debt with Continuous Delivery
 
LINEA DEL TIEMPO DE LA HISTORIA DEL ARTE
LINEA DEL TIEMPO DE LA HISTORIA DEL ARTELINEA DEL TIEMPO DE LA HISTORIA DEL ARTE
LINEA DEL TIEMPO DE LA HISTORIA DEL ARTE
 
생산적인 개발을 위한 지속적인 테스트
생산적인 개발을 위한 지속적인 테스트생산적인 개발을 위한 지속적인 테스트
생산적인 개발을 위한 지속적인 테스트
 
The definitive guide to java agents
The definitive guide to java agentsThe definitive guide to java agents
The definitive guide to java agents
 
GraphQL Relay Introduction
GraphQL Relay IntroductionGraphQL Relay Introduction
GraphQL Relay Introduction
 
Property Based Testing with ScalaCheck
Property Based Testing with ScalaCheckProperty Based Testing with ScalaCheck
Property Based Testing with ScalaCheck
 
The Ring programming language version 1.3 book - Part 63 of 88
The Ring programming language version 1.3 book - Part 63 of 88The Ring programming language version 1.3 book - Part 63 of 88
The Ring programming language version 1.3 book - Part 63 of 88
 
The Ring programming language version 1.5.3 book - Part 80 of 184
The Ring programming language version 1.5.3 book - Part 80 of 184The Ring programming language version 1.5.3 book - Part 80 of 184
The Ring programming language version 1.5.3 book - Part 80 of 184
 

More from vishal choudhary

SE-Lecture1.ppt
SE-Lecture1.pptSE-Lecture1.ppt
SE-Lecture1.ppt
vishal choudhary
 
SE-Testing.ppt
SE-Testing.pptSE-Testing.ppt
SE-Testing.ppt
vishal choudhary
 
SE-CyclomaticComplexityand Testing.ppt
SE-CyclomaticComplexityand Testing.pptSE-CyclomaticComplexityand Testing.ppt
SE-CyclomaticComplexityand Testing.ppt
vishal choudhary
 
SE-Lecture-7.pptx
SE-Lecture-7.pptxSE-Lecture-7.pptx
SE-Lecture-7.pptx
vishal choudhary
 
Se-Lecture-6.ppt
Se-Lecture-6.pptSe-Lecture-6.ppt
Se-Lecture-6.ppt
vishal choudhary
 
SE-Lecture-5.pptx
SE-Lecture-5.pptxSE-Lecture-5.pptx
SE-Lecture-5.pptx
vishal choudhary
 
XML.pptx
XML.pptxXML.pptx
SE-Lecture-8.pptx
SE-Lecture-8.pptxSE-Lecture-8.pptx
SE-Lecture-8.pptx
vishal choudhary
 
SE-coupling and cohesion.ppt
SE-coupling and cohesion.pptSE-coupling and cohesion.ppt
SE-coupling and cohesion.ppt
vishal choudhary
 
SE-Lecture-2.pptx
SE-Lecture-2.pptxSE-Lecture-2.pptx
SE-Lecture-2.pptx
vishal choudhary
 
SE-software design.ppt
SE-software design.pptSE-software design.ppt
SE-software design.ppt
vishal choudhary
 
SE1.ppt
SE1.pptSE1.ppt
SE-Lecture-4.pptx
SE-Lecture-4.pptxSE-Lecture-4.pptx
SE-Lecture-4.pptx
vishal choudhary
 
SE-Lecture=3.pptx
SE-Lecture=3.pptxSE-Lecture=3.pptx
SE-Lecture=3.pptx
vishal choudhary
 
Multimedia-Lecture-Animation.pptx
Multimedia-Lecture-Animation.pptxMultimedia-Lecture-Animation.pptx
Multimedia-Lecture-Animation.pptx
vishal choudhary
 
MultimediaLecture5.pptx
MultimediaLecture5.pptxMultimediaLecture5.pptx
MultimediaLecture5.pptx
vishal choudhary
 
Multimedia-Lecture-7.pptx
Multimedia-Lecture-7.pptxMultimedia-Lecture-7.pptx
Multimedia-Lecture-7.pptx
vishal choudhary
 
MultiMedia-Lecture-4.pptx
MultiMedia-Lecture-4.pptxMultiMedia-Lecture-4.pptx
MultiMedia-Lecture-4.pptx
vishal choudhary
 
Multimedia-Lecture-6.pptx
Multimedia-Lecture-6.pptxMultimedia-Lecture-6.pptx
Multimedia-Lecture-6.pptx
vishal choudhary
 
Multimedia-Lecture-3.pptx
Multimedia-Lecture-3.pptxMultimedia-Lecture-3.pptx
Multimedia-Lecture-3.pptx
vishal choudhary
 

More from vishal choudhary (20)

SE-Lecture1.ppt
SE-Lecture1.pptSE-Lecture1.ppt
SE-Lecture1.ppt
 
SE-Testing.ppt
SE-Testing.pptSE-Testing.ppt
SE-Testing.ppt
 
SE-CyclomaticComplexityand Testing.ppt
SE-CyclomaticComplexityand Testing.pptSE-CyclomaticComplexityand Testing.ppt
SE-CyclomaticComplexityand Testing.ppt
 
SE-Lecture-7.pptx
SE-Lecture-7.pptxSE-Lecture-7.pptx
SE-Lecture-7.pptx
 
Se-Lecture-6.ppt
Se-Lecture-6.pptSe-Lecture-6.ppt
Se-Lecture-6.ppt
 
SE-Lecture-5.pptx
SE-Lecture-5.pptxSE-Lecture-5.pptx
SE-Lecture-5.pptx
 
XML.pptx
XML.pptxXML.pptx
XML.pptx
 
SE-Lecture-8.pptx
SE-Lecture-8.pptxSE-Lecture-8.pptx
SE-Lecture-8.pptx
 
SE-coupling and cohesion.ppt
SE-coupling and cohesion.pptSE-coupling and cohesion.ppt
SE-coupling and cohesion.ppt
 
SE-Lecture-2.pptx
SE-Lecture-2.pptxSE-Lecture-2.pptx
SE-Lecture-2.pptx
 
SE-software design.ppt
SE-software design.pptSE-software design.ppt
SE-software design.ppt
 
SE1.ppt
SE1.pptSE1.ppt
SE1.ppt
 
SE-Lecture-4.pptx
SE-Lecture-4.pptxSE-Lecture-4.pptx
SE-Lecture-4.pptx
 
SE-Lecture=3.pptx
SE-Lecture=3.pptxSE-Lecture=3.pptx
SE-Lecture=3.pptx
 
Multimedia-Lecture-Animation.pptx
Multimedia-Lecture-Animation.pptxMultimedia-Lecture-Animation.pptx
Multimedia-Lecture-Animation.pptx
 
MultimediaLecture5.pptx
MultimediaLecture5.pptxMultimediaLecture5.pptx
MultimediaLecture5.pptx
 
Multimedia-Lecture-7.pptx
Multimedia-Lecture-7.pptxMultimedia-Lecture-7.pptx
Multimedia-Lecture-7.pptx
 
MultiMedia-Lecture-4.pptx
MultiMedia-Lecture-4.pptxMultiMedia-Lecture-4.pptx
MultiMedia-Lecture-4.pptx
 
Multimedia-Lecture-6.pptx
Multimedia-Lecture-6.pptxMultimedia-Lecture-6.pptx
Multimedia-Lecture-6.pptx
 
Multimedia-Lecture-3.pptx
Multimedia-Lecture-3.pptxMultimedia-Lecture-3.pptx
Multimedia-Lecture-3.pptx
 

Recently uploaded

MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
S. Raj Kumar
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
Celine George
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Diana Rendina
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 

Recently uploaded (20)

MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 

Super keyword