Object Oriented Programming | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 21

Object Oriented Programming

Hello guys ! Like last year, I finally started learning Object Oriented Programming in Java. (Objects, Constructors and other stuff)... Though I'm pretty much understanding all the concepts, it would really help if I'm ahead of my class syllabus as it helps a lot later, so I would love it if you all could suggest me some online resources for that learning that ) I am learning it through Java but almost any other language could be good as well. Thanks guys !

4th Nov 2018, 2:12 PM
Aaron Stone
Aaron Stone - avatar
20 Answers
+ 16
bro , for school syllabus follow your "Sumita Arora" + for programming in java especially as a beginner and learn concepts fast U can follow YT videos of telusko learning(keeping in mind the accent of that sir there , not advance type) & then the links provided by Faisal Danijel Ivanović
4th Nov 2018, 7:03 PM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 10
You are welcome my friend!👍😉 HappyLearning!;) 💪😆🍻
4th Nov 2018, 7:05 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 8
Thanks Gaurav Agrawal too 😁😁 I will surely follow your advice😊
4th Nov 2018, 7:04 PM
Aaron Stone
Aaron Stone - avatar
+ 8
A resource that really helped me understand OOP in Python: https://www.python-course.eu/python3_object_oriented_programming.php
5th Nov 2018, 6:42 AM
Rob Bailiff
Rob Bailiff - avatar
+ 6
Thinking in java by bruce eckel great book
4th Nov 2018, 6:38 PM
Sharofiddin
Sharofiddin - avatar
+ 6
Thanks Danijel Ivanović Faisal Sharofiddin 😁😁 Appreciate your help !!
4th Nov 2018, 6:48 PM
Aaron Stone
Aaron Stone - avatar
4th Nov 2018, 3:13 PM
Faisal
Faisal - avatar
5th Nov 2018, 9:03 AM
meenal deshpande
+ 2
Yakov Fain - Java Programming 24-Hour Trainer (2nd edition) also good thing :)
6th Nov 2018, 12:01 PM
Oksana Knyryk
Oksana Knyryk - avatar
+ 2
Thanks kiibo Ghayal
2nd Jun 2020, 2:26 AM
Ankush
Ankush - avatar
+ 1
You can find good stuff about java OOP or other stuff about it in https://www.tutorialspoint.com Also it has a lot of things to learn, machine learning, IoT, Python and etc. Check it out. It is free.
5th Nov 2018, 7:05 AM
Hadi Najafi
Hadi Najafi - avatar
5th Nov 2018, 11:59 PM
Clyde Wright
Clyde Wright - avatar
+ 1
https://www.google.com.mx/url?sa=t&source=web&rct=j&url=%23&ved=2ahUKEwiHo9qC1r7eAhVJMqwKHYcTCugQwqsBMAB6BAgIEAU&usg=AOvVaw0VTJzWxrN8ZFOD4xbU2nov
6th Nov 2018, 2:02 AM
Ramón
Ramón - avatar
+ 1
Es en español el mejor que he visto!
6th Nov 2018, 2:03 AM
Ramón
Ramón - avatar
+ 1
Follow websites of CS DOJO
6th Nov 2018, 5:36 PM
soham
+ 1
I think javatpoint.com has a good java tutorial. It will really help you. The beauty is, you learn while you build apps.
7th Nov 2018, 9:56 PM
Harold Peter Ssebetta
Harold Peter Ssebetta - avatar
0
hi
5th Nov 2018, 1:27 PM
jishnu
0
OOPs, or Object-Oriented Programming is a programming model or paradigm which revolves around the concept of “OBJECTS”. Objects can be considered as real-world instances of entities like class, that contain some characteristics and behaviors specified in the class template. In simple language, a class can be considered as the blueprint or template, based on which objects can be created. So the Objects are considered the instance of a class, and are therefore sometimes called “instances”. The term “characteristics” refers to the “what” about the Object, and the term “behavior” refers to the “how” about the Object. For example, if we consider a car, then based on the OOPs model: Class = A specific car model, such as Audi A4, BMW I8, Maruti Suzuki Vitara Brezza, etc. Object = A specific car of any model, like the car you own Characteristics = What is the color of your car? What is the Chassis number of your car? etc Behavior = How to start the car? How to change the gear of the car? etc.
19th Aug 2022, 3:59 PM
AMRIT KUMAR
AMRIT KUMAR - avatar