SlideShare a Scribd company logo
1 of 55
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is Hadoop?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Agenda For Today
➢ Java Introduction
➢ Why Learn Java?
➢ Features of Java
➢ Java Development Kit
➢ How does Java work?
➢ Data Types in Java
➢ Operators in Java
➢ Control Statements
➢ Array in Java
➢ Object Oriented Concepts in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Introduction
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Introduction
➢ Java was created by James Gosling in 1995 for Sun Microsystems.
➢ Java is a platform independent programming language that follows the logic of
“Write once, Run anywhere”.
Concurrent
Class
Based
Object
Oriented
Why Learn Java?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Below is the TIOBE Programming index for all the present trending programming languages:
Why Learn Java?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Why Learn Java?
Below are some of the domains that make use of Java:
Stock
market
Retail
Financial
Services
Android
Big DataBanking
Information
Technology
Scientific
Research
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Below are some of the technologies that make use of Java as an essential core of their functionalities:
Continuous
Testing
Web
Development
Framework Android
Big Data
Why Learn Java?
Features of Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Simple
Secure
Portable
Object-oriented
Robust
High performance
Distributed
Dynamic
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Simple
Java was designed to be easy for professional
programmer to learn and use effectively.
Portable
Applications written on one platform of Java can be
easily ported to another platform as it is platform
independent.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Object-oriented
Java is an object oriented programming language. Everything is
considered to be an “object” and all operations are performed
using these objects.
Secure
Java does not use explicit pointer and runs its programs inside
the sandbox to prevents any activities from untrusted sources.
{OOPS}
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Distributed
Java has a feature called Remote Method Invocation (RMI)
using which a program can invoke method of another
program across a network and get the output.
Dynamic
Java programs carry with them substantial amounts of run-
time type information that is used to verify and resolve
accesses to objects at run time.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Robust
➢ Java checks the code during the compilation time and run time also.
➢ Java completely takes care of memory allocation and releasing,
which makes the Java program more robust.
High performance
Java achieves high performance through the use of
bytecode which can easily translated into native machine
code.
Java Development Kit
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Development Kit
JVM Java Class Libraries
Other Files
Development
Tools
JRE
JDK
How does Java work?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
How does Java work?
Java Source (.java)
Java Compiler
Java Bytecode
(.class)
Compile-time Environment
Java Bytecodes move locally
or through network
Class Loader
Bytecode
Verifier
Java Class Libraries
Java Interpreter
Just in Time
Compiler
Runtime System
Java Virtual
Machine
Run-time Environment
Operating System
Hardware
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Installation
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Installation
Go to
http://www.oracle.com/technetw
ork/java/javase/downloads
1
Download Java Platform(JDK)
version 8 update 121 and install
on your Windows system
2
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Installation
To set the permanent path of JDK in your
system:
1. Begin by going to My Computer
Properties.
2. Click on Advanced system setting.
3. Click on Environment Variables
option
4. Select Path variable to edit
5. Enter the path to bin folder inside
JDK installed on your system.(
Default path is C:Program
FilesJavajdk1.8.0_121bin )
1
2
3
4
5
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Go to
www.eclipse.org
Download Eclipse
Neon installer and
install on your
Windows system
1
2
Eclipse IDE Installation
Data Types in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Types in Java
Integer BooleanCharacterFloat
Primitive Data Type
byte (1 byte)
long (8 bytes)
short (2 bytes)
int (4 bytes)
float (4 bytes)
double (8 bytes)
char (2 byte)
bool (1 byte,
but makes use
of 1 bit of it)
float num = 56851.3285
char ch = ‘X’
boolean b = true
int num = 56
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
John owns a Retail Department store. John needs to create a bill with the following fields present:
➢ Invoice ID
➢ Product ID
➢ Product Cost
➢ Quantity
➢ Discount
➢ Total Price
➢ Feedback Provided ?
John has no knowledge about the data types in java,
Can you help John ?
Data Types in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
John owns a Retail Department store. John needs to create a bill with the following fields present:
➢ Invoice ID - Integer
➢ Product ID - Integer
➢ Product Cost - Double
➢ Quantity - Integer
➢ Discount - Double
➢ Total Price - Double
➢ Feedback Provided ? - Boolean
Data Types in Java
Data Operations in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operations in Java
Data Operations
Arithmetic Operators
+  Addition
-  Subtraction
*  Multiplication
/ Division
%  Modulus
Logical Operators
&&  And
||  Or
!  Not
Relational operators
<  Less than
<=  Less than or
equal to
>  Greater than
>= Greater than
or equal to
!=  Not equal to
==  Equals
Unary operators
++  Increment
operator
--  Decrement
operator
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operations in Java
Operation Solution
(Num1 + Num2) – Num3 / 5 20
Num1++ 11
Num3 >= Num1 + Num2 True
Num2 == Num1 False
(Num2 < Num3) && (Num1 > Num3) False
!Num4 False
Let us assume the following values for the variables:
➢ Num1 = 10
➢ Num2 = 15
➢ Num3 = 25
➢ Num4 = true
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operations in Java
Mathew has come to John’s store to purchase a few products. Below are the items Mathew wishes to purchase :
Below are the cost of the products:
At the time Mathew visited the store, there was a 10% discount on all product.
Finally a service tax of 5% is applicable on all products.
Can you help John compute the amount Mathew has to pay ?
Product Quantity
Item A 2
Item B 1
Item C 3
Product Cost
Item A 200
Item B 75
Item C 500
Control Statement
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Control Statement
Control
Statements
Selection
Statements
Iteration
Statements
Jump
Statements
Switch.. CaseIf.. else
while do .. While for
break continue
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Syntax:
if (condition):
statements 1 …
else:
statements 2 …
1. If statement
Control Statement
If it is raining
Go Play Football
Take an Umbrella
START
Selection Statements
Iteration Statements
Jump Statements
Control Statement
FALSE
TRUE
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Control Statement
Syntax:
switch (expression) {
case value1: Statement1
break;
case value2: Statement2
break;
.
.
.
Selection Statements
Iteration Statements
Jump Statements
Control Statement
Outcome
of Toss
START
Head
Tails
Tom Wins
default
Adam Wins
Invalid input
FALSE
TRUE
FALSE
TRUE
2. Switch statement
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
LOOPS REPEAT ACTIONS
SO YOU DON’T HAVE TO ...
For
While
Repeat things until the
loop condition is true
Repeat things till the
given number of times
Control Statement
Do While
Execute once and then
repeats things until loop
condition is true
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Control Statement
Selection Statements
Iteration Statements
Jump Statements
Control Statement 3. do while statement
Syntax:
do
{
statements…
} while (condition is True)
CHECK
CONDITION
EXECUTE BLOCK
START
repeat
EXIT LOOP
FALSE
TRUE
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Control Statement
Selection Statements
Iteration Statements
Jump Statements
Control Statement
Syntax:
while (condition is True)
{
statements…
}
4. while statement
CHECK
CONDITION
EXECUTE BLOCK
START
repeat
EXIT LOOP
FALSE
TRUE
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Check
condition
Initialization
START
Iteration
Execute Statements
Exit loop
repeat
FALSE
TRUE
Selection Statements
Iteration Statements
Jump Statements
Control Statement 5. for statement
Syntax:
for(initialization; condition; iteration)
{
statements…
}
Control Statement
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Selection Statements
Iteration Statements
Jump Statements
Control Statement 6. break
Syntax:
break;
Check Loop
Condition
START
repeat
EXIT LOOP
Check Break
Condition
EXIT LOOP
Execute Block
FALSE
TRUE
TRUE
FALSE
Control Statement
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Selection Statements
Iteration Statements
Jump Statements
Control Statement
Check Loop
Condition
START
repeat
EXIT LOOP
Check Continue
Condition
Execute Block 2
7. continue
TRUE
FALSE
FALSE
TRUE
Syntax:
continue;
Control Statement
Execute Block 1
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Marry is a school teacher. She conducted the final exam for the year. The exam included the following subject:
Control Statement
Mathematics Chemistry Physics English
Computer
Science
Since there are multiple students, she wanted to create an automated system that will
take the marks for these subjects and provide a grade for the final score. Below is the
grade distribution :
Percentage Grade
Below 40 Poor
40-59 Average
60-79 Good
80-89 Very Good
90+ Excellent
Can you help me?
Array in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Remember John ? Well now he has a great business running. John
now has a new challenge, he has 15 invoice number that he wants
to store the corresponding amount together but he doesn’t want to
store them using different number.
Array In Java
Can you help
me again?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
 An array is a data structure which holds the sequential elements of the same type.
 Arrays of any type can be created and may have one or more dimensions.
Array In Java
0 1 2 3 4
126 32 230 21 200
Index
Value
E.g: array index 4 is
holding a value of 200
Each index in the array
holds a value.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
 Arrays can be of 2 types:
Array In Java
Single Dimensional Array
Initialization: int a[] = new int[12] Initialization: int table[][] = new int[4][5];
Multi Dimensional Array
0 1 2 3 4
0
1
2
3
Width = 5
Height =4
Index in Y dimension
Index in
X dimension
Object Oriented Programming
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Blueprint of a house can be considered as a class With the Same blueprint we can create several houses and
these can be considered as objects
Class and Objects
➢ Java is an object oriented and class based programming language.
➢ Object is simply a collection of data (variables) and methods (functions) that act on those data.
➢ Class is a blueprint for the object.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Super Class
Child Class
Inheritance
➢ Inheritance is a mechanism through which one object acquires all the properties and behaviors of
parent object.
➢ To avoid code redundancy, a derived class is developed upon a base class to achieve code reusability.
Amphibians Reptiles Mammals Birds
Animals
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Encapsulation
Methods Variable
Encapsulation
Class
➢ Encapsulation is the mechanism that binds together code and the data it manipulates together.
➢ In encapsulation, the variables of a class will be hidden from other classes, and can be accessed only
through the methods of their current class.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Polymorphism
➢ Polymorphism is the ability of a variable, function or object to take on multiple forms.
➢ Overloading of functions is achieved by the usage of polymorphism.
Everyone, Draw a
shape.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Abstraction
➢ Abstraction is the methodology of hiding the implementation details from the user and only providing
the functionality to the users.
➢ In java, we use abstract class and interface to achieve abstraction.
Summary
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Session In A Minute
Java Introduction Why Learn Java Features of Java
How does Java work Data Types in Java Data Operators in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Session In A Minute
Control Statement Arrays in Java
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edureka

More Related Content

What's hot

What's hot (20)

Core java
Core java Core java
Core java
 
core java
core javacore java
core java
 
Introduction to Java
Introduction to JavaIntroduction to Java
Introduction to Java
 
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
 
Training on Core java | PPT Presentation | Shravan Sanidhya
Training on Core java | PPT Presentation | Shravan SanidhyaTraining on Core java | PPT Presentation | Shravan Sanidhya
Training on Core java | PPT Presentation | Shravan Sanidhya
 
JAVA PPT Part-1 BY ADI.pdf
JAVA PPT Part-1 BY ADI.pdfJAVA PPT Part-1 BY ADI.pdf
JAVA PPT Part-1 BY ADI.pdf
 
Introduction to java
Introduction to java Introduction to java
Introduction to java
 
Strings in Java
Strings in Java Strings in Java
Strings in Java
 
3. Java Script
3. Java Script3. Java Script
3. Java Script
 
Introduction to spring boot
Introduction to spring bootIntroduction to spring boot
Introduction to spring boot
 
Java basic
Java basicJava basic
Java basic
 
Basic Java Programming
Basic Java ProgrammingBasic Java Programming
Basic Java Programming
 
History of JavaScript
History of JavaScriptHistory of JavaScript
History of JavaScript
 
Java basic
Java basicJava basic
Java basic
 
Jdk,jre,jvm
Jdk,jre,jvmJdk,jre,jvm
Jdk,jre,jvm
 
Core Java
Core JavaCore Java
Core Java
 
CORE JAVA
CORE JAVACORE JAVA
CORE JAVA
 
Introduction to Java Programming, Basic Structure, variables Data type, input...
Introduction to Java Programming, Basic Structure, variables Data type, input...Introduction to Java Programming, Basic Structure, variables Data type, input...
Introduction to Java Programming, Basic Structure, variables Data type, input...
 
Spring Core
Spring CoreSpring Core
Spring Core
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
 

Similar to Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edureka

Ten Man-Years of JavaFX: Real World Project Experiences
Ten Man-Years of JavaFX: Real World Project ExperiencesTen Man-Years of JavaFX: Real World Project Experiences
Ten Man-Years of JavaFX: Real World Project Experiences
Henrik Olsson
 
Enhancing Website and Application Testing with Java Scrapers.pdf
Enhancing Website and Application Testing with Java Scrapers.pdfEnhancing Website and Application Testing with Java Scrapers.pdf
Enhancing Website and Application Testing with Java Scrapers.pdf
AnanthReddy38
 

Similar to Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edureka (20)

Java Certification Tutorial | Java Tutorial For Beginners | Java Training | E...
Java Certification Tutorial | Java Tutorial For Beginners | Java Training | E...Java Certification Tutorial | Java Tutorial For Beginners | Java Training | E...
Java Certification Tutorial | Java Tutorial For Beginners | Java Training | E...
 
Java Training In Coimbatore
Java Training In CoimbatoreJava Training In Coimbatore
Java Training In Coimbatore
 
Ten Man-Years of JavaFX: Real World Project Experiences
Ten Man-Years of JavaFX: Real World Project ExperiencesTen Man-Years of JavaFX: Real World Project Experiences
Ten Man-Years of JavaFX: Real World Project Experiences
 
Audit your reactive applications
Audit your reactive applicationsAudit your reactive applications
Audit your reactive applications
 
Advance Java Tutorial | J2EE, Java Servlets, JSP, JDBC | Java Certification T...
Advance Java Tutorial | J2EE, Java Servlets, JSP, JDBC | Java Certification T...Advance Java Tutorial | J2EE, Java Servlets, JSP, JDBC | Java Certification T...
Advance Java Tutorial | J2EE, Java Servlets, JSP, JDBC | Java Certification T...
 
Certified Core Java Developer
Certified Core Java DeveloperCertified Core Java Developer
Certified Core Java Developer
 
Bridging the communication Gap & Continuous Delivery
Bridging the communication Gap & Continuous DeliveryBridging the communication Gap & Continuous Delivery
Bridging the communication Gap & Continuous Delivery
 
Core Java Certification
Core Java CertificationCore Java Certification
Core Java Certification
 
concept of core java
concept of core java concept of core java
concept of core java
 
What is Java and its example
What is Java and its exampleWhat is Java and its example
What is Java and its example
 
Java Web Start czyli jak żyć z tą dziwną technologią? & Continuous Delivery w...
Java Web Start czyli jak żyć z tą dziwną technologią? & Continuous Delivery w...Java Web Start czyli jak żyć z tą dziwną technologią? & Continuous Delivery w...
Java Web Start czyli jak żyć z tą dziwną technologią? & Continuous Delivery w...
 
Enhancing Website and Application Testing with Java Scrapers.pdf
Enhancing Website and Application Testing with Java Scrapers.pdfEnhancing Website and Application Testing with Java Scrapers.pdf
Enhancing Website and Application Testing with Java Scrapers.pdf
 
Developer Productivity with Forge, Java EE 6 and Arquillian
Developer Productivity with Forge, Java EE 6 and ArquillianDeveloper Productivity with Forge, Java EE 6 and Arquillian
Developer Productivity with Forge, Java EE 6 and Arquillian
 
Best Java Training Institute in Hyderabad
Best Java Training Institute in HyderabadBest Java Training Institute in Hyderabad
Best Java Training Institute in Hyderabad
 
Browser Automated Testing Frameworks - Nightwatch.js
Browser Automated Testing Frameworks - Nightwatch.jsBrowser Automated Testing Frameworks - Nightwatch.js
Browser Automated Testing Frameworks - Nightwatch.js
 
Open Source and java
Open Source and javaOpen Source and java
Open Source and java
 
S L S
S L SS L S
S L S
 
JavaScript Form Validation Tutorial | Edureka
JavaScript Form Validation Tutorial | EdurekaJavaScript Form Validation Tutorial | Edureka
JavaScript Form Validation Tutorial | Edureka
 
02 java programming features of java i
02 java programming features of java  i02 java programming features of java  i
02 java programming features of java i
 
XPages Mobile, #dd13
XPages Mobile, #dd13XPages Mobile, #dd13
XPages Mobile, #dd13
 

More from Edureka!

More from Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 

Recently uploaded

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 

Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edureka