SlideShare a Scribd company logo
`
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
➢ What is Java?
➢ Where is Java used?
➢ Features of Java
➢ Java Environment
➢ How does Java work?
➢ Data Types in Java
➢ Operators in Java
➢ Functions in Java
➢ Object Oriented Concepts in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is Java?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is Java?
➢ Java was created by a team lead by James Gosling in 1995 for Sun Microsystems.
➢ Java is a platform independent programming language that follows the logic of
“Write once, Run anywhere”.
Programming Language Operations Platform
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is Java?
January 1996
February 1997
December 1998
May 2000
February 2002
September 2004
December 2006
July 2011
March 2014
Java 1.0
Oak
Java 1.1
Java 1.2
Playground
Java1.3
Kestrel
Java 1.4
Merlin
Java 5 Tiger
Java 6
Mustang
Java 7
Dolphin
Java 8
Where is Java used?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Android is the markets leading mobile operating system that extensively uses Java.
Where is Java used?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Below are some of the domains that make use of Java:
Where is Java used?
Financial
Services
Scientific
Research
Retail
Information
Technology
Android
Stock
market
Banking Big Data
Features of Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Distributed RobustDynamic High Performance
Simple Object-oriented
{OOPS}
Portable Secure
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Simple Object-oriented
{OOPS}
DiPortable Secure
➢ Java was designed to be easy for professional programmer to learn and use effectively.
➢ No need to worry about memory management because there is Automatic Garbage Collection
in java.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Object-oriented
{OOPS}
DistributedPortable Secure Dyna
➢ Applications written using Java are portable in the sense that they can be executed on any kind
of computer containing any CPU or any operating system.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Object-oriented
{OOPS}
Distributed RobSecure Dynamic
➢ Java is true object oriented language.
➢ Everything is considered to be an “object” and all operations are performed using these
objects.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Distributed RobustSecure Dynamic High P
➢ Java Programs run inside virtual machine sandbox to prevents any activities from untrusted
sources.
➢ No use of explicit pointer.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Distributed RobustDynamic High Performance
➢ 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.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
➢ 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.
Distributed RobustDynamic High Performance
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
➢ 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.
Distributed RobustDynamic High Performance
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
➢ Java achieves high performance through the use of bytecode which can easily translated into
native machine code.
Distributed RobustDynamic High Performance
Java Environment
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Development Kit
JDK
JRE
JVM
JVM (Java Virtual Machine) is an abstract machine. It is
a specification that provides runtime environment in
which java bytecode can be executed.
JRE (Java Runtime Environment) is a runtime
environment which implements JVM and provides all
class libraries and other files that JVM uses at
runtime.
JDK(Java Development Kit) is the tool necessary to
compile, document and package Java programs. The
JDK completely includes JRE.
How does Java work?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
How does Java work?
Java Source
(.java)
Java is easy
Java C Compiler
JIT
Compiler
Java
Interpreter
JVM
`
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
bytelongshort int
floatdouble char bool
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Types in Java
Data Type Value Bytes Required
byte -128 to 127 1
short -32768 to 32767 2
int -2147483648 to 2147483647 4
long
-9,223,372,036,854,775,808 to
9,223,372,036,854,775,807
8
float ±3.40282347E+38F 4
double ±1.79769313486231570E+308 8
char 0 to 65,536 2
boolean true or false 1(bit)
Data Operations in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operators in Java
Data Operators
Arithmetic
Operators
Logical Operators
Relational
operators
Unary Operators
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operations in Java
Arithmetic operators:
Operator Syntax Description
+ A + B Addition
- A – B Subtraction
/ A / B Division
* A * B Multiplication
% A % B
Modulus – Returns reminder
after division
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operations in Java
Unary operators:
Operator Syntax Description
++ i++ Use the current value of i and
then increment the value by 1.
++i Increment the value of i by 1
and then use the new value.
-- --i Decrement the value of i by 1
and then use the new value.
i-- Use the current value of i and
then decrement the value by 1
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Operator Syntax Decryption
> X>Y
Result is true if X if greater than Y; otherwise is
false
>= X>=Y
Result is true if X if greater than or equal to Y;
otherwise is false
< X<Y
Result is true if X if lesser than Y; otherwise is
false
<= X<=Y
Result is true if X if lesser than or equal Y;
otherwise is false
== X==Y
Result is true if X and Y are equal; otherwise is
false
!= X!=Y
Result is true if X and Y are not equal; otherwise
is false
Data Operations in Java
Relational operators:
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Operator Syntax Decryption
&& False && False False
True && False False
False && True False
True && True True
|| False || False False
True || False True
False || True True
True || True True
Data Operations in Java
Logical operators:
Functions In Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Functions in Java
A function is a block of organized, reusable sets of instructions that is
used to perform some related actions.
Why do we use functions?
➢Re – usability of code minimizes redundancy
➢Procedural decomposition makes things organized
Function
Built-in Function
User Defined
Function
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Syntax:
modifier returnType methodName(parameters)
{
Statements…
}
Example:
public static int add(int a, int b)
{
int result;
result = a + b;
return result;
}
Functions in Java
User Defined Function
defining function
function parameters
function return value
function call
output
Object Oriented Programming
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Objects
➢ Object is simply a collection of data (State) and methods (Behaviour) that act on those data.
State:
• Color
• Size
• Shape
Behavior:
• Power On();
• Call ();
• Message ();
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Class
➢ Class is a blueprint from with the object are created.
class Phone{
String brand;
int batteryPower;
String processor;
.
.
public Phone(String phoneBrand, int power, String phoneProcessor)
{
brand = phoneBrand;
Batterpower = power;
processor = phoneProcessor;
}
//Other class methods
}
`
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.
Mobile
Apple Samsung Google
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Encapsulation
➢ Encapsulation is the mechanism that binds together code and the data it manipulates together.
Authorized
User
Unauthorized
User
`
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.
Mobile
Camera Remote MP3 Player
`
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.
Summary
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Session In A Minute
Java Introduction Why Learn Java Features of Java
Java Environment How does Java work Data Types in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Session In A Minute
Data Operators in Java Functions in Java
What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka

More Related Content

What's hot (20)

PDF
Java Programming | Java Tutorial For Beginners | Java Training | Edureka
Edureka!
 
PDF
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Edureka!
 
PDF
Introduction to java (revised)
Sujit Majety
 
PPTX
Introduction to java
Saba Ameer
 
PDF
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Edureka!
 
PPTX
Introduction to java
Java Lover
 
PDF
Introduction to Java Programming Language
jaimefrozr
 
PDF
Basic Java Programming
Math-Circle
 
PPT
Java basic
Sonam Sharma
 
PDF
Overview of Java
josemachoco
 
PPTX
Java 8 presentation
Van Huong
 
PPTX
Introduction to java
Sandeep Rawat
 
PPTX
Core Java Tutorials by Mahika Tutorials
Mahika Tutorials
 
PPT
Introduction to Java Programming, Basic Structure, variables Data type, input...
Mr. Akaash
 
PPTX
Presentation on Core java
mahir jain
 
PPTX
Java Programming
Elizabeth alexander
 
PDF
Introduction to Java Programming
Ravi Kant Sahu
 
DOCX
JDK,JRE,JVM
Cognizant
 
PPTX
Java programming course for beginners
Eduonix Learning Solutions
 
PPTX
Java virtual machine
Nikhil Sharma
 
Java Programming | Java Tutorial For Beginners | Java Training | Edureka
Edureka!
 
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Edureka!
 
Introduction to java (revised)
Sujit Majety
 
Introduction to java
Saba Ameer
 
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Edureka!
 
Introduction to java
Java Lover
 
Introduction to Java Programming Language
jaimefrozr
 
Basic Java Programming
Math-Circle
 
Java basic
Sonam Sharma
 
Overview of Java
josemachoco
 
Java 8 presentation
Van Huong
 
Introduction to java
Sandeep Rawat
 
Core Java Tutorials by Mahika Tutorials
Mahika Tutorials
 
Introduction to Java Programming, Basic Structure, variables Data type, input...
Mr. Akaash
 
Presentation on Core java
mahir jain
 
Java Programming
Elizabeth alexander
 
Introduction to Java Programming
Ravi Kant Sahu
 
JDK,JRE,JVM
Cognizant
 
Java programming course for beginners
Eduonix Learning Solutions
 
Java virtual machine
Nikhil Sharma
 

Similar to What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka (20)

PDF
Java Certification Tutorial | Java Tutorial For Beginners | Java Training | E...
Edureka!
 
PDF
Java notes
Debasish Biswas
 
PDF
Devoxx UK 2013 Test-Driven Development with JavaEE 7, Arquillian and Embedded...
Peter Pilgrim
 
PDF
JavaScript Form Validation Tutorial | Edureka
Edureka!
 
PPTX
concept of core java
Mintu_94
 
PPTX
Java Insecurity: How to Deal with the Constant Vulnerabilities
Lumension
 
PDF
Advance Java Tutorial | J2EE, Java Servlets, JSP, JDBC | Java Certification T...
Edureka!
 
PPTX
Ten Man-Years of JavaFX: Real World Project Experiences
Henrik Olsson
 
PDF
Introduction to JavaFX
Mindfire Solutions
 
PPTX
java basics.pptx
mlakshumaiah
 
PPT
MarvelSoft SchoolAdmin Dev Framework
Ranganath Shivaram
 
PDF
From Web App Model Design to Production with Wakanda
Alexandre Morgaut
 
DOCX
Sudeep_Automation_resume
Sudeep Sinha
 
ODP
Java code coverage with JCov. Implementation details and use cases.
Alexandre (Shura) Iline
 
PPTX
Audit your reactive applications
OCTO Technology
 
PPTX
Jakarta EE Test Strategies (2022)
Ryan Cuprak
 
PDF
Wicket Deliver Your Webapp On Time
Will Hoover
 
PDF
Spark Summit EU talk by Jaroslav Bachorik and Adrian Popescu
Spark Summit
 
PDF
Extending Spark With Java Agent (handout)
Jaroslav Bachorik
 
PPTX
Web Application Defences
Damilola Longe, CISSP, CCSP, MSc
 
Java Certification Tutorial | Java Tutorial For Beginners | Java Training | E...
Edureka!
 
Java notes
Debasish Biswas
 
Devoxx UK 2013 Test-Driven Development with JavaEE 7, Arquillian and Embedded...
Peter Pilgrim
 
JavaScript Form Validation Tutorial | Edureka
Edureka!
 
concept of core java
Mintu_94
 
Java Insecurity: How to Deal with the Constant Vulnerabilities
Lumension
 
Advance Java Tutorial | J2EE, Java Servlets, JSP, JDBC | Java Certification T...
Edureka!
 
Ten Man-Years of JavaFX: Real World Project Experiences
Henrik Olsson
 
Introduction to JavaFX
Mindfire Solutions
 
java basics.pptx
mlakshumaiah
 
MarvelSoft SchoolAdmin Dev Framework
Ranganath Shivaram
 
From Web App Model Design to Production with Wakanda
Alexandre Morgaut
 
Sudeep_Automation_resume
Sudeep Sinha
 
Java code coverage with JCov. Implementation details and use cases.
Alexandre (Shura) Iline
 
Audit your reactive applications
OCTO Technology
 
Jakarta EE Test Strategies (2022)
Ryan Cuprak
 
Wicket Deliver Your Webapp On Time
Will Hoover
 
Spark Summit EU talk by Jaroslav Bachorik and Adrian Popescu
Spark Summit
 
Extending Spark With Java Agent (handout)
Jaroslav Bachorik
 
Web Application Defences
Damilola Longe, CISSP, CCSP, MSc
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 
Ad

Recently uploaded (20)

PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 

What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka