Question

In: Computer Science

(a) Explain at least TWO (2) major aspects of an object-oriented programming (OOP). Provide suitable examples,

(a) Explain at least TWO (2) major aspects of an object-oriented programming (OOP). Provide suitable examples,

Solutions

Expert Solution

Explanation of two major aspects of an Object-Oriented Programming (OOP) with suitable examples:
The different aspects, capabilities, or features are encapsulation, inheritance, and polymorphism.
Encapsulation uses, and makes modularity a mandate, forcing it to be used wherever applicable, and appropriately.
Inheritance passes the characteristics of knowledge in a downward direction.
Polymorphism, on the other hand, is a completely different concept, wherein it is about taking any shape.

From a different OOP paradigm perspective, classes and objects are the two main aspects. A "class" is used to create new types, whereas "objects" are simply class instances. These two aspects are important and are building blocks of code in a program.

In Swift:

"Class" example:

class Motorcycle
{

}


An "Instance" example to create instances of a class:

class Motorcycle
{

}

let yamaha:Motorcycle = Motorcycle()

From a, yet different perspective, the other aspects of OOP are properties and functions (methods). A property can be considered as a variable belonging to a class and storing information belonging to an instance of a class. A method is a function belonging to a class and executes tasks belonging to an instance of a class.


Related Solutions

What is different between procedural and object-oriented programming? Match each of the following OOP concepts with...
What is different between procedural and object-oriented programming? Match each of the following OOP concepts with its example/description. Question 2 options: 12345678 Providing a way for an entity to behave in several ways OR providing multiple entities to be treated in a similar way 12345678 A key way of saving having to retype a lot of code for similar but different objects 12345678 The removal of non-essential information 12345678 Allowing which function to be called by an object to be...
Research and explain in your words what is known as Object Oriented Programming. Then, identify two...
Research and explain in your words what is known as Object Oriented Programming. Then, identify two advantages of OOP for application development. In peer replies, choose from one of the following and define the concept as part of your response. Abstraction. Encapsulation. Inheritance. Polymorphism.
Explain what classes and objects are in object - oriented programming. Give an example of each...
Explain what classes and objects are in object - oriented programming. Give an example of each and explain how they work together in a computer program.
-What is object-oriented programming? -What is a class? -What is an object? -A contractor uses a...
-What is object-oriented programming? -What is a class? -What is an object? -A contractor uses a blueprint to build a set of identical houses. Are classes analogous to the blueprint or the houses? Explain. -What is a class diagram? How is it used in object-oriented programming? -What is an attribute in OOP? What is a data member? -What is a method in OOP? What is a member function? -What is the difference between private members and public members of a...
We now begin learningconcept in modern programming - Object Orientation Programming (OOP). Let's write our first...
We now begin learningconcept in modern programming - Object Orientation Programming (OOP). Let's write our first Class definition, and then instantiate an object of this Class to run in a test application to test our objects behaviors. Employee.java - Make an Employee Class, code to the design of the UML diagram -name: String -employeeId: int -Shift: Boolean -HourlyPay: double +Employee() +setName(n: String) +setemployeeId(i:int) +setShift(s:Boolean) +setHourlyPay(p:double) +getname() : String +getemployeeId() : int +getShift() : Boolean +getHourlyPay() : double +calculateOvertimePay( hours :...
1. In Object Oriented Programming The private object fields can be directly manipulated by outside entities....
1. In Object Oriented Programming The private object fields can be directly manipulated by outside entities. Group of answer choices A. True B. False 2. __________ programming is centered on the procedures or actions that take place in a program. Group of answer choices A. Class B. Object-oriented C. Menu-driven D. Procedural/ Structural 3. __________ programming encapsulates data and functions in an object. Group of answer choices A. Object-oriented B. Class C. Menu-driven D. Procedural 4. The data in an...
object oriented programming java Create a Student class that have two data members id (assign to...
object oriented programming java Create a Student class that have two data members id (assign to your ID) and name (assign to your name). Create the object of the Student class by new keyword and printing the objects value. You may name your object as Student1. The output should be like this: 20170500 Asma Zubaida
Why is it more feasible to use Objects and object oriented programming as compared to using...
Why is it more feasible to use Objects and object oriented programming as compared to using method based programs? What are the disadvantages of using only methods in your programs.
Explain the various categories of ratio analysis and provide examples of at least two ratios in...
Explain the various categories of ratio analysis and provide examples of at least two ratios in each category. If you were an investor, which category would you be most interested in? Why?
Provide at least two examples of social or service groups and explain their involvement in community...
Provide at least two examples of social or service groups and explain their involvement in community health.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT