SEBA Class 10 Computer Science Chapter 10 An Introduction To Object Oriented Programming

Join Roy Library Telegram Groups

Hello Viewers Today’s We are going to Share With You, The Complete Syllabus of SEBA Class 10 Computer Science Chapter 10 An Introduction To Object Oriented Programming Solutions in English in This Page. Are you a Student of (Secondary Education Board of Assam). SEBA Class 10 Computer Science Chapter 10 An Introduction To Object Oriented Programming Notes. Which you Can Download PDF SEBA Class 10 Computer Science Chapter 10 An Introduction To Object Oriented Programming Question Answer for free using direct Download Link Given Below in This Post.

SEBA Class 10 Computer Science Chapter 10 An Introduction To Object Oriented Programming

We have Shared in This Post, SEBA Class 10 Computer Science Chapter 10 An Introduction To Object Oriented Programming Textbook PDF Download for Free with you. SEBA Class 10 Computer Science Chapter 10 An Introduction To Object Oriented Programming Solutions PDF. I Hope, you Liked The information About The SEBA Class 10 Computer Science Chapter 10 An Introduction To Object Oriented Programming Book PDF. If you liked Class 10 Computer Science Notes Then Please Do Share this Post With your Friends as Well.

TEXTUAL QUESTIONS AND ANSWERS

EXERCISE

1. SHORT ANSWER QUESTIONS:

(a) What do you mean by programming paradigm?

Ans. A programming paradigm is the classification, style or way of It is an approach to solve problems by using programming languages.

(b) Define object.

Ans. An object is a basic unit of Object-Oriented Programming and represents the real-life entities. An object is a thing in real world which has certain properties and methods.

(c) Define class.

Ans. Class is a blueprint or template from which objects are created. Class is a group of similar objects.

(d) What is encapsulation?

Ans. Encapsulation is defined as wrapping up of data and information under a single unit. In Object-Oriented Programming, Encapsulation is defined as binding together the data and the functions that manipulate them.

(e) What is data hiding?

Ans. Data hiding is a technique of hiding internal object details, i.e., data members. It is an object-oriented programming technique. Data hiding ensures, or we can say guarantees to restrict the data access to class members. It maintains data integrity.

(f) What is polymorphism?

Ans. The word polymorphism means having many forms. In simple words, we can define polymorphism as the ability of a message to be displayed in more than one form.

(g) Name four object-oriented programming languages.

Ans. Java, C++. Python, PHP, JavaScript etc.

(h) Name two procedure-oriented programming language.

Ans. C, FORTRAN, BASIC, COBOL etc.

(i) Name the first object-oriented language.

Ans. Simula is the first object-oriented programming language.

(j) What is abstraction?

Ans. Abstraction means displaying only essential information and hiding the details. Data abstraction refers to providing only essential information about the data to the outside world, hiding the background details or implementation.

II. LONG ANSWER QUESTIONS:

(a) Mention four characteristics of procedure-oriented programming.

Ans. The characteristics of procedure – oriented programming are:

  • This type of programming emphasis on algorithm.
  • Large programs are divided into smaller programs known as functions.
  • Functions share global data.
  • Data values move freely from one function to another.
  • It uses top-down approach of programming.

(b) Mention two advantages and two disadvantages of procedure – oriented language.

Ans. Advantages:

  • The procedural programming languages are relatively much easier to learn.
  • The straight forward program organization makes it ideal choice as a general-purpose language.
  • The use of standard library functions brings down significant reduction in the overall development cost and time.

Disadvantages:

  • The procedural programming is not suitable for large and complex software.
  • It is difficult to represent the real-world objects.
  • It is difficult to protect the data from inadvertent changes.
  • The software maintenance is relatively difficult for a procedural programming software.

(c) Explain four features of OOP.

Ans. 

  • Encapsulation.
  • Data abstraction.
  • Inheritance.
  • Polymorphism.

(d) List four advantages of OOP.

Ans. 

  • OOP can support large scale and complex software development project.
  • It allows the code re-usability.
  • Better software maintenance.
  • Enhance security.
  • Easy code modification.
  • Polymorphism offers lot of flexibility in OOPs.

(e) Differentiate between procedure-oriented programming and object-oriented programming.

Ans. The difference between procedure – oriented programming and object-oriented programming are:

SI. No.Basis of differenceProcedure Oriented ProgrammingObject Oriented Programming
(i)DefinitionIn procedural programming, program is divided into small parts called functions.In object oriented programming, program is divided into small parts called objects.
(ii)ApproachProcedural programming follows top down approach.Object oriented programming follows bottom up approach.
(iii)Access ModifiersThere is no access specifier in procedural programming.Object oriented programming have access specifiers like private, public, protected etc.
(iv) Over LoadingIn procedural programming, overloading is not possible.Overloading is possible in object oriented programming.
(v) Practical UsesProcedural programming is based on unreal world.Object oriented programming is based on real world.
(vi) ImportanceIn procedural programming, function is more important than data.In object oriented programming, data is more important than function.
S.L No.CONTENTS
Chapter 1Introduction To Computer Network
Chapter 2Html5 And Css3
Chapter 3Database Part – II Mysql
Chapter 4Introduction To Loops
Chapter 5Nested Loops In C
Chapter 6Arrays In C
Chapter 7Functions In C
Chapter 8Pointers In C
Chapter 9Structure In C
Chapter 10An Introduction To Object Oriented Programming
Chapter 11Case Studies
ADDITIONAL QUESTIONS AND ANSWERS

1. What is paradigm?

Ans. Paradigm can also be termed as method to solve some problem or do some tasks.

2. What are the different types of programming paradigm?

Ans. The two most important programming paradigms are Procedure-oriented programming and Object-oriented programming.

3. What are the characteristics of OOPs?

Ans. 

  • Emphasis is on data rather than procedure.
  • Programs are divided into objects.
  • Functions that operate on data of an object are tied together in the data structure.
  • Data is hidden and cannot be accessed by external functions.
  • New data and functions can be easily added whenever necessary.
  • Bottom-up approach is followed in program design.

4. What is object-oriented programming best for?

Ans. Object-oriented programming is an approach that involves defining data structures as objects that can contain data and methods. This approach is well suited to large, complex applications that need to be updated frequently.

5. What is the difference between data abstraction and encapsulation?

Ans. Abstraction is the method of hiding the unwanted information. Whereas encapsulation is a method to hide the data in a single entity or unit along with a method to protect information from outside.

6. What is the main use of class?

Ans. The objects are used to create an instance of a class. Objects can represent a class in an independent form. The basic blueprint, that contains the information of the type of data that can be stored in an object, is given by the class.

7. What is the difference between object and class?

Ans. A class is a group of similar objects. Object is a real-world entity such as book, car, etc. Class is a logical entity. Object is a physical entity.

8. What is inheritance?

Ans. Inheritance is the procedure in which one class inherits the attributes and methods of another class.

The class whose properties and methods are inherited is known as the Parent class.

9. What is procedural oriented programming (POP)?

Ans. Procedure oriented programming is a set of functions. In other words, it is the use of code in a stepwise procedure to develop applications.

10. What is the difference between top-down programming and bottom – up programming?

Ans. The top-down programming is all about breaking a bigger problem into smaller chunks, whereas bottom-up programming focuses on amalgamating smaller chunks to paint the complete and bigger picture.

Leave a Reply

error: Content is protected !!
Scroll to Top