• For Individuals
  • For Businesses
  • For Universities
  • For Governments
Coursera
Online Degrees
Careers
Log In
Join for Free
Coursera
LearnQuest
Introduction to Object-Oriented Programming with Java
  • About
  • Outcomes
  • Modules
  • Recommendations
  • Testimonials
  • Reviews
  1. Browse
  2. Computer Science
  3. Software Development

This Labor Day, enjoy $120 off Coursera Plus. Unlock access to 10,000+ programs. Save today.

LearnQuest

Introduction to Object-Oriented Programming with Java

This course is part of Core Java Specialization

Evan Bergman
LearnQuest Network

Instructors: Evan Bergman

Instructors

Instructor ratings

We asked all learners to give feedback on our instructors based on the quality of their teaching style.

4.5 (144 ratings)
Evan Bergman
Evan Bergman
LearnQuest
5 Courses•56,345 learners
LearnQuest Network
LearnQuest Network
LearnQuest
9 Courses•447,766 learners

46,244 already enrolled

Included with Coursera Plus

•

Learn more

4 modules
Gain insight into a topic and learn the fundamentals.
4.7

(513 reviews)

Beginner level

Recommended experience

Recommended experience

Beginner level

Some programming experience in any language or Course 1 in this Specialization

Flexible schedule
1 week at 10 hours a week
Learn at your own pace
97%
Most learners liked this course

4 modules
Gain insight into a topic and learn the fundamentals.
4.7

(513 reviews)

Beginner level

Recommended experience

Recommended experience

Beginner level

Some programming experience in any language or Course 1 in this Specialization

Flexible schedule
1 week at 10 hours a week
Learn at your own pace
97%
Most learners liked this course
  • About
  • Outcomes
  • Modules
  • Recommendations
  • Testimonials
  • Reviews

Skills you'll gain

  • Computer Programming
  • Java Programming
  • Object Oriented Programming (OOP)
  • Package and Software Management
  • Java
  • Virtual Machines

Details to know

Shareable certificate

Add to your LinkedIn profile

Assessments

12 assignments

Taught in English

See how employees at top companies are mastering in-demand skills

Learn more about Coursera for Business
 logos of Petrobras, TATA, Danone, Capgemini, P&G and L'Oreal

Build your subject-matter expertise

This course is part of the Core Java Specialization
When you enroll in this course, you'll also be enrolled in this Specialization.
  • Learn new concepts from industry experts
  • Gain a foundational understanding of a subject or tool
  • Develop job-relevant skills with hands-on projects
  • Earn a shareable career certificate

There are 4 modules in this course

Introduction to OO Programming with Java is course 2 of the Core Java Specialization. After completing this course, you'll be able to create simple Java classes that exhibit the principle of Encapsulation, to import other classes for use, to work with Strings, print output and use advanced math functions.

We'll begin with a brief refresher on necessary concepts from Object-Oriented Programming. Next, we'll introduce basic Java concepts regarding classes, enabling you to start writing simple Java classes with attributes and methods. We'll introduce the idea of instances, or objects created from classes, so that you can start to build object-oriented solutions. Finally, we'll cover namespaces and Java Libraries to explain how Java packages classes, so that everyone can develop code without name collisions. You will be able to organize and access classes, as well as use selected standard classes from the Java runtime environment. To be successful in this course, you should have taken Course 1: Introduction to Java or have equivalent knowledge.

In this module, we discuss why we are using Object-Oriented Programming, and introduce the concepts in Java of Classes, Objects, Attributes, and Methods. Along with that, we'll discuss some of the conventions of the JavaBeans Specification, and make use of them in our code.

What's included

14 videos7 readings4 assignments2 ungraded labs1 plugin

14 videos•Total 57 minutes
  • Course Overview•0 minutes
  • Classes and Objects•6 minutes
  • Why Use OO?•2 minutes
  • Code Re-use•1 minute
  • Managing Change•3 minutes
  • Moving to OO from Procedural•5 minutes
  • OO Definitions•3 minutes
  • OO Definitions - Example•5 minutes
  • Defining a Class •4 minutes
  • An Example Class: Car•4 minutes
  • An Example Class: Look at the Code•4 minutes
  • Objects•3 minutes
  • Objects Example•6 minutes
  • Experience the Lab Environment•3 minutes
7 readings•Total 87 minutes
  • Behind the Build: Why Stories Matter•9 minutes
  • Course Overview: Introduction to Object-Oriented Programming with Java•9 minutes
  • A Computed, Read-Only Property•12 minutes
  • Formatting Output using PrintStream•30 minutes
  • Importing Lab Starters and/or Solutions•10 minutes
  • Breaking the Code Cycle•8 minutes
  • Remember This: Classes and Objects•9 minutes
4 assignments•Total 63 minutes
  • Object-Oriented Programming - Knowledge Check•15 minutes
  • Defining a Class - Knowledge Check•9 minutes
  • Practice Review•9 minutes
  • Assessment•30 minutes
2 ungraded labs•Total 50 minutes
  • Experience the Lab Environment•15 minutes
  • Implement the Car Class (Optional)•35 minutes
1 plugin•Total 10 minutes
  • Let's Chat: Expectations and Outcomes•10 minutes

In this module, we'll go into more detail on creating classes in Java, and how to organize classes into packages. We'll cover attributes (instance and class variables), methods, access modifiers, parameters, variable length argument lists, local variables, constants, constructors, overloaded methods, and more.

What's included

16 videos2 readings5 assignments2 ungraded labs1 plugin

16 videos•Total 110 minutes
  • Introduction to Packages•4 minutes
  • Packages and the Classpath•7 minutes
  • Declaring a Class•6 minutes
  • Class Anatomy•6 minutes
  • Adding Attributes and Methods•6 minutes
  • Method Parameters•7 minutes
  • Method Variables•5 minutes
  • Java Access Modifiers•3 minutes
  • Create Your Own Constructor•4 minutes
  • Multiple Constructors•5 minutes
  • Creating Classes Lab Summary•1 minute
  • Creating Classes Lab Full Walkthrough (Optional)•15 minutes
  • Static Attributes•4 minutes
  • Static Methods Demo•5 minutes
  • Creating Calculator Classes Lab Summary•3 minutes
  • Creating Calculator Classes Lab Full Walkthrough (Optional)•23 minutes
2 readings•Total 17 minutes
  • The Case of the Disappearing Data•8 minutes
  • Remember This: Creating Classes•9 minutes
5 assignments•Total 72 minutes
  • Packages and Classes - Knowledge Check•9 minutes
  • Attributes and Methods - Knowledge Check•15 minutes
  • Constructors - Knowledge Check•9 minutes
  • Static Members - Knowledge Check•9 minutes
  • Creating Classes - Exam•30 minutes
2 ungraded labs•Total 50 minutes
  • Creating Classes•25 minutes
  • Creating Calculator Classes•25 minutes
1 plugin•Total 8 minutes
  • Activity: Declaring Classes and Packaging•8 minutes

In this relatively short module, having discussed, in more detail, creating classes, we'll briefly turn our attention back to objects. How to create them with the "new" keyword, the difference between type and class (something we'll revisit often), and (conceptually) what happens in a JVM when we create a new object.

What's included

5 videos2 readings1 assignment1 ungraded lab

5 videos•Total 47 minutes
  • Creating an Object•4 minutes
  • The Process of Construction•4 minutes
  • Working with Objects•3 minutes
  • Creating Objects Lab Summary•4 minutes
  • Creating Objects Lab Full Walkthrough (Optional)•30 minutes
2 readings•Total 11 minutes
  • Constructor Methods under the Covers•10 minutes
  • Representations in different JVMs•1 minute
1 assignment•Total 30 minutes
  • Assessment•30 minutes
1 ungraded lab•Total 30 minutes
  • Creating Objects•30 minutes

In this module, we'll look more closely at the use of Java packages. How we declare our package; the implications of being in a package; why packages are important; how we import classes from other packages; what import does for us; how we come up with our own, unique, package name by following the specified rules; how to resolve name collisions. Finally, we will concluding by looking at four specific Java classes: String, StringBuffer, StringBuilder and Math.

What's included

10 videos6 readings2 assignments1 ungraded lab

10 videos•Total 60 minutes
  • JAR Files and Namespaces (Packages)•6 minutes
  • Packaging Classes•4 minutes
  • Importing Packages•5 minutes
  • Using Imported Classes•4 minutes
  • The String Class•7 minutes
  • Creating String Objects•5 minutes
  • StringBuffer and StringBuilder•5 minutes
  • The Math Class•3 minutes
  • Creating Calculator Objects Lab Summary•2 minutes
  • Creating Calculator Objects Lab Full Walkthrough (Optional)•15 minutes
6 readings•Total 74 minutes
  • I installed my own Java, and it is later than version 8. Where did rt.jar go?•10 minutes
  • Strings, Buffers and Builders•10 minutes
  • Java Math Support•30 minutes
  • Naming Conflict•8 minutes
  • Remember This: Namespaces and Java Libraries•8 minutes
  • Behind the Build: The Turning Point•8 minutes
2 assignments•Total 36 minutes
  • Packaging and Importing - Knowledge Check•6 minutes
  • Assessment•30 minutes
1 ungraded lab•Total 20 minutes
  • Creating Calculator Objects•20 minutes

Earn a career certificate

Add this credential to your LinkedIn profile, resume, or CV. Share it on social media and in your performance review.

Instructors

Instructor ratings

Instructor ratings

We asked all learners to give feedback on our instructors based on the quality of their teaching style.

4.5 (144 ratings)
Evan Bergman
Evan Bergman
LearnQuest
5 Courses•56,345 learners

Instructors

Instructor ratings

We asked all learners to give feedback on our instructors based on the quality of their teaching style.

4.5 (144 ratings)
Evan Bergman
Evan Bergman
LearnQuest
5 Courses•56,345 learners
LearnQuest Network
LearnQuest Network
LearnQuest
9 Courses•447,766 learners

Offered by

LearnQuest

Offered by

LearnQuest

LearnQuest is the preferred training partner to the world’s leading companies, organizations, and government agencies. Our team boasts 20+ years of experience designing, developing and delivering a full suite industry-leading technology education classes and training solutions across the globe. Our trainers, equipped with expert industry experience and an unparalleled commitment to quality, facilitate classes that are offered in various delivery formats so our clients can obtain the training they need when and where they need it.

Explore more from Software Development

  • Status: Free Trial
    Free Trial
    U

    University of Pennsylvania

    Introduction to Java and Object-Oriented Programming

    Course

  • Status: Free Trial
    Free Trial
    P

    Packt

    Java Programming Fundamentals and Object-Oriented Concepts

    Course

  • Status: Free Trial
    Free Trial
    P

    Packt

    Object-Oriented Programming and Java Fundamentals

    Course

  • Status: Preview
    Preview
    U

    Universidad de Palermo

    Object-Oriented Programming with Java

    Course

Why people choose Coursera for their career

Felipe M.
Learner since 2018
"To be able to take courses at my own pace and rhythm has been an amazing experience. I can learn whenever it fits my schedule and mood."
Jennifer J.
Learner since 2020
"I directly applied the concepts and skills I learned from my courses to an exciting new project at work."
Larry W.
Learner since 2021
"When I need courses on topics that my university doesn't offer, Coursera is one of the best places to go."
Chaitanya A.
"Learning isn't just about being better at your job: it's so much more than that. Coursera allows me to learn without limits."

Learner reviews

4.7

513 reviews

  • 5 stars

    76.02%

  • 4 stars

    18.90%

  • 3 stars

    3.70%

  • 2 stars

    0.77%

  • 1 star

    0.58%

Showing 3 of 513

A
AN
5

Reviewed on Oct 26, 2023

Covers all the important concepts. Mentions important points where other tutors fails to mention them.

P
P
5

Reviewed on May 28, 2021

Great intro to OOP! Things are explained clearly and the videos are short and no longer than 10 minutes!

J
JD
5

Reviewed on Mar 13, 2025

good for beginners and intermidiate level to understand the fundamentals

View more reviews
Coursera Plus

Open new doors with Coursera Plus

Unlimited access to 10,000+ world-class courses, hands-on projects, and job-ready certificate programs - all included in your subscription

Learn more

Advance your career with an online degree

Earn a degree from world-class universities - 100% online

Explore degrees

Join over 3,400 global companies that choose Coursera for Business

Upskill your employees to excel in the digital economy

Learn more

Frequently asked questions

To access the course materials, assignments and to earn a Certificate, you will need to purchase the Certificate experience when you enroll in a course. You can try a Free Trial instead, or apply for Financial Aid. The course may offer 'Full Course, No Certificate' instead. This option lets you see all course materials, submit required assessments, and get a final grade. This also means that you will not be able to purchase a Certificate experience.

When you enroll in the course, you get access to all of the courses in the Specialization, and you earn a certificate when you complete the work. Your electronic Certificate will be added to your Accomplishments page - from there, you can print your Certificate or add it to your LinkedIn profile.

If you subscribed, you get a 7-day free trial during which you can cancel at no penalty. After that, we don’t give refunds, but you can cancel your subscription at any time. See our full refund policy.

Yes. In select learning programs, you can apply for financial aid or a scholarship if you can’t afford the enrollment fee. If fin aid or scholarship is available for your learning program selection, you’ll find a link to apply on the description page.

More questions

Visit the learner help center

Financial aid available,

Coursera Footer

Technical Skills

  • ChatGPT
  • Coding
  • Computer Science
  • Cybersecurity
  • DevOps
  • Ethical Hacking
  • Generative AI
  • Java Programming
  • Python
  • Web Development

Analytical Skills

  • Artificial Intelligence
  • Big Data
  • Business Analysis
  • Data Analytics
  • Data Science
  • Financial Modeling
  • Machine Learning
  • Microsoft Excel
  • Microsoft Power BI
  • SQL

Business Skills

  • Accounting
  • Digital Marketing
  • E-commerce
  • Finance
  • Google
  • Graphic Design
  • IBM
  • Marketing
  • Project Management
  • Social Media Marketing

Career Resources

  • Essential IT Certifications
  • High-Income Skills to Learn
  • How to Get a PMP Certification
  • How to Learn Artificial Intelligence
  • Popular Cybersecurity Certifications
  • Popular Data Analytics Certifications
  • What Does a Data Analyst Do?
  • Career Development Resources
  • Career Aptitude Test
  • Share your Coursera Learning Story

Coursera

  • About
  • What We Offer
  • Leadership
  • Careers
  • Catalog
  • Coursera Plus
  • Professional Certificates
  • MasterTrack® Certificates
  • Degrees
  • For Enterprise
  • For Government
  • For Campus
  • Become a Partner
  • Social Impact
  • Free Courses
  • ECTS Credit Recommendations

Community

  • Learners
  • Partners
  • Beta Testers
  • Blog
  • The Coursera Podcast
  • Tech Blog

More

  • Press
  • Investors
  • Terms
  • Privacy
  • Help
  • Accessibility
  • Contact
  • Articles
  • Directory
  • Affiliates
  • Modern Slavery Statement
  • Do Not Sell/Share
Learn Anywhere
Download on the App Store
Get it on Google Play
Logo of Certified B Corporation
© 2025 Coursera Inc. All rights reserved.
  • Coursera Facebook
  • Coursera Linkedin
  • Coursera Twitter
  • Coursera YouTube
  • Coursera Instagram
  • Coursera TikTok
Coursera

Sign up

Learn on your own time from top universities and businesses.

​
​
Between 8 and 72 characters
Your password is hidden
​

or

Already on Coursera?


Having trouble logging in? Learner help center

This site is protected by reCAPTCHA Enterprise and the Google Privacy Policy and Terms of Service apply.