SlideShare a Scribd company logo
1 of 7
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 californiaWilliamgutierrez172
 
Roshettat book 1 word format
Roshettat book 1 word formatRoshettat book 1 word format
Roshettat book 1 word formatPharmacia1 .com
 
Graficas encuesta
Graficas encuestaGraficas encuesta
Graficas encuestacaritoAJ
 
Ruiz rios brandon omar
Ruiz rios brandon omarRuiz rios brandon omar
Ruiz rios brandon omaromarrios33
 
How self talk improves our thinking
How self talk improves our thinkingHow self talk improves our thinking
How self talk improves our thinkingjonasdaniel042
 
Practica word
Practica wordPractica word
Practica wordannac127
 
Universidad autonoma de baja californiaslidhaere
Universidad autonoma de baja californiaslidhaereUniversidad autonoma de baja californiaslidhaere
Universidad autonoma de baja californiaslidhaerejulissamelchor27
 
Universidad autonoma de baja california
Universidad autonoma de baja californiaUniversidad autonoma de baja california
Universidad autonoma de baja californiajhoanaalvarez199
 
Practica de prueba2
Practica de prueba2Practica de prueba2
Practica de prueba2hgusman
 
Universidad autonoma de baja california
Universidad autonoma de baja californiaUniversidad autonoma de baja california
Universidad autonoma de baja californiajavierderecho221
 

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
 
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 TiempoFernando 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 ideassmithdon000000
 
Libro de ejercicios de word
Libro de ejercicios de wordLibro de ejercicios de word
Libro de ejercicios de wordnoechu51013
 
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 complejasFernando Marcos Marcos
 
Limit fungsi (soal+pembahasan) -by syifadhila
Limit fungsi (soal+pembahasan) -by syifadhilaLimit fungsi (soal+pembahasan) -by syifadhila
Limit fungsi (soal+pembahasan) -by syifadhilaSyifa Dhila
 
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 Projectcormacsharpe
 
Trabajo practico nº 20
Trabajo practico nº 20Trabajo practico nº 20
Trabajo practico nº 20germi98
 
Controlling Technical Debt with Continuous Delivery
Controlling Technical Debt with Continuous DeliveryControlling Technical Debt with Continuous Delivery
Controlling Technical Debt with Continuous Deliverywalkmod
 
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 ARTEYicela Bejarano
 
생산적인 개발을 위한 지속적인 테스트
생산적인 개발을 위한 지속적인 테스트생산적인 개발을 위한 지속적인 테스트
생산적인 개발을 위한 지속적인 테스트기룡 남
 
The definitive guide to java agents
The definitive guide to java agentsThe definitive guide to java agents
The definitive guide to java agentsRafael Winterhalter
 
GraphQL Relay Introduction
GraphQL Relay IntroductionGraphQL Relay Introduction
GraphQL Relay IntroductionChen-Tsu Lin
 
Property Based Testing with ScalaCheck
Property Based Testing with ScalaCheckProperty Based Testing with ScalaCheck
Property Based Testing with ScalaCheckDavid 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 88Mahmoud 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 184Mahmoud 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
 
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
 
Limit fungsi (soal+pembahasan) -by syifadhila
Limit fungsi (soal+pembahasan) -by syifadhilaLimit fungsi (soal+pembahasan) -by syifadhila
Limit fungsi (soal+pembahasan) -by syifadhila
 
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 (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

mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 

Recently uploaded (20)

mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 

Super keyword