100% tevredenheidsgarantie Direct beschikbaar na je betaling Lees online óf als PDF Geen vaste maandelijkse kosten 4.2 TrustPilot
logo-home
Tentamen (uitwerkingen)

OOP Exam Questions With Correct Answers.

Beoordeling
-
Verkocht
-
Pagina's
14
Cijfer
A+
Geüpload op
15-01-2025
Geschreven in
2024/2025

OOP Exam Questions With Correct Answers. What is the difference between procedural and object-oriented programs? - Answera) In procedural program, programming logic follows certain procedures and the instructions are executed one after another. In OOP program, the unit of program is an object, which is nothing but combination of data and code. b) In procedural program, data is exposed to the whole program whereas in OOPs program, it is accessible within the object and which in-turn assures the security of the code. What are Encapsulation, Inheritance and Polymorphism? - AnswerEncapsulation is the packing of data and functions into a single component and keeps both safe from outside interference and misuse. Inheritance is the process by which one object acquires the properties of another object. Polymorphism is the ability of objects taking on many forms and is a feature that allows one interface to be used for general class actions. What is the difference between Assignment and Initialization? - AnswerAssignment can be done as many times as desired whereas initialization can be done only once. What is OOPs? - AnswerObject oriented programming organizes a program around its data, i. e. , objects and a set of well defined interfaces to that data. An object-oriented program can be characterized as data controlling access to code. What are Class, Constructor and Primitive data types? - AnswerClass is a template for multiple objects with similar features and it is a blue print for objects. It defines a type of object according to the data the object can hold and the operations the object can perform. Constructor is a special kind of method that determines how an object is initialized when created. Primitive data types are 8 types and they are: byte, short, int, long, float, double, boolean, char. What is an Object and how do you allocate memory to it? - AnswerObject is an instance of a class and it is a software unit that combines a structured set of data with a set of operations for inspecting and manipulating that data. When an object is created using new operator, memory is allocated to it. What is the difference between constructor and method? - AnswerConstructor will be automatically invoked when an object is created whereas method has to be called explicitly. ©BRIGHSTARS 2024/2025 ALL RIGHTS RESERVED. 2 | P a g e What are methods and how are they defined? - AnswerMethods are functions that operate on instances of classes in which they are defined. Objects can communicate with each other using methods and can call methods in other classes. Method definition has four parts. They are name of the method, type of object or primitive type the method returns, a list of parameters and the body of the method. A method's signature is a combination of the first three parts mentioned above. What is casting? - AnswerCasting is used to convert the value of one type to another. How many ways can an argument be passed to a subroutine and explain them? - AnswerAn argument can be passed in two ways. They are passing by value and passing by reference. Passing by value: This method copies the value of an argument into the formal parameter of the subroutine. Passing by reference: In this method, a reference to an argument (not the value of the argument) is passed to the parameter. What is the difference between an argument and a parameter? - AnswerWhile defining method, variables passed in the method are called parameters. While using those methods, values passed to those variables are called arguments. What are different types of access modifiers? - Answerpublic: Any thing declared as public can be accessed from anywhere. private: Any thing declared as private can't be seen outside of its class. protected: Any thing declared as protected can be accessed by classes in the same package and subclasses in the other packages. default modifier : Can be accessed only to classes in the same package. What is final, finalize() and finally? - Answerfinal : final keyword can be used for class, method and variables. A final class cannot be subclassed and it prevents other programmers from subclassing a secure class to invoke insecure methods. A final method can't be overridden. A final variable can't change from its initialized value. finalize() : finalize() method is used just before an object is destroyed and can be called just prior to garbage collection. finally : finally, a key word used in exception handling, creates a block of code that will be executed after a try/catch block has completed and before the code following the try/catch block. The finally block will execute whether or not an exception is thrown. For example, if a method opens a file upon exit, then you will not want the code that closes the file to be bypassed by the exception- handling mechanism. This finally keyword is designed to address this contingency. What is UNICODE? - AnswerUnicode is used for internal representation of characters and strings and it uses 16 bits to represent each other. What is finalize() method? - Answerfinalize () method is used just before an object is destroyed and can be called just prior to garbage collection. What are Transient and Volatile Modifiers? - Answer- Transient: The transient modifier applies to variables only and it is not stored as part of its object's Persistent state. This means that

Meer zien Lees minder
Instelling
Object Oriented Programming
Vak
Object Oriented Programming









Oeps! We kunnen je document nu niet laden. Probeer het nog eens of neem contact op met support.

Geschreven voor

Instelling
Object Oriented Programming
Vak
Object Oriented Programming

Documentinformatie

Geüpload op
15 januari 2025
Aantal pagina's
14
Geschreven in
2024/2025
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

Voorbeeld van de inhoud

©BRIGHSTARS 2024/2025 ALL RIGHTS RESERVED.




OOP Exam Questions With Correct
Answers.


What is the difference between procedural and object-oriented programs? - Answer✔a) In
procedural program, programming logic follows certain procedures and the instructions are
executed one after another. In OOP program, the unit of program is an object, which is nothing
but combination of data and code. b) In procedural program, data is exposed to the whole
program whereas in OOPs program, it is accessible within the object and which in-turn assures
the security of the code.

What are Encapsulation, Inheritance and Polymorphism? - Answer✔Encapsulation is the
packing of data and functions into a single component and keeps both safe from outside
interference and misuse. Inheritance is the process by which one object acquires the properties of
another object. Polymorphism is the ability of objects taking on many forms and is a feature that
allows one interface to be used for general class actions.

What is the difference between Assignment and Initialization? - Answer✔Assignment can be
done as many times as desired whereas initialization can be done only once.

What is OOPs? - Answer✔Object oriented programming organizes a program around its data, i.
e. , objects and a set of well defined interfaces to that data. An object-oriented program can be
characterized as data controlling access to code.

What are Class, Constructor and Primitive data types? - Answer✔Class is a template for multiple
objects with similar features and it is a blue print for objects. It defines a type of object according
to the data the object can hold and the operations the object can perform. Constructor is a special
kind of method that determines how an object is initialized when created. Primitive data types
are 8 types and they are: byte, short, int, long, float, double, boolean, char.

What is an Object and how do you allocate memory to it? - Answer✔Object is an instance of a
class and it is a software unit that combines a structured set of data with a set of operations for
inspecting and manipulating that data. When an object is created using new operator, memory is
allocated to it.

What is the difference between constructor and method? - Answer✔Constructor will be
automatically invoked when an object is created whereas method has to be called explicitly.


1|Page

, ©BRIGHSTARS 2024/2025 ALL RIGHTS RESERVED.

What are methods and how are they defined? - Answer✔Methods are functions that operate on
instances of classes in which they are defined. Objects can communicate with each other using
methods and can call methods in other classes. Method definition has four parts. They are name
of the method, type of object or primitive type the method returns, a list of parameters and the
body of the method. A method's signature is a combination of the first three parts mentioned
above.

What is casting? - Answer✔Casting is used to convert the value of one type to another.

How many ways can an argument be passed to a subroutine and explain them? - Answer✔An
argument can be passed in two ways. They are passing by value and passing by reference.
Passing by value: This method copies the value of an argument into the formal parameter of the
subroutine. Passing by reference: In this method, a reference to an argument (not the value of the
argument) is passed to the parameter.

What is the difference between an argument and a parameter? - Answer✔While defining
method, variables passed in the method are called parameters. While using those methods, values
passed to those variables are called arguments.

What are different types of access modifiers? - Answer✔public: Any thing declared as public
can be accessed from anywhere. private: Any thing declared as private can't be seen outside of its
class. protected: Any thing declared as protected can be accessed by classes in the same package
and subclasses in the other packages. default modifier : Can be accessed only to classes in the
same package.

What is final, finalize() and finally? - Answer✔final : final keyword can be used for class,
method and variables. A final class cannot be subclassed and it prevents other programmers from
subclassing a secure class to invoke insecure methods. A final method can't be overridden. A
final variable can't change from its initialized value. finalize() : finalize() method is used just
before an object is destroyed and can be called just prior to garbage collection. finally : finally, a
key word used in exception handling, creates a block of code that will be executed after a
try/catch block has completed and before the code following the try/catch block. The finally
block will execute whether or not an exception is thrown. For example, if a method opens a file
upon exit, then you will not want the code that closes the file to be bypassed by the exception-
handling mechanism. This finally keyword is designed to address this contingency.

What is UNICODE? - Answer✔Unicode is used for internal representation of characters and
strings and it uses 16 bits to represent each other.

What is finalize() method? - Answer✔finalize () method is used just before an object is
destroyed and can be called just prior to garbage collection.

What are Transient and Volatile Modifiers? - Answer✔- Transient: The transient modifier
applies to variables only and it is not stored as part of its object's Persistent state. This means that



2|Page

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
Brightstars Havard School
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
185
Lid sinds
1 jaar
Aantal volgers
7
Documenten
11829
Laatst verkocht
18 uur geleden
VERIFIED EXAMS AND STUDY GUIDES.

Here, you will find Study Notes, Exam answer packs 100% Guarenteed success.

3,3

29 beoordelingen

5
9
4
4
3
8
2
3
1
5

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Veelgestelde vragen