Java Constructors Flashcards

1
Q

It is a special method that is used to initialize objects.

A

Constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

This is called when an object of a class is created. It can be used to set initial values for object attributes.

A

Constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

In java, a _____ is a block of codes similar to the method. It is called when an instance of the class is created. At the time of calling it, memory for the object is allocated in the memory.

A

Constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

It is a special type of method which is used to initialized the object.

A

Constructors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Every time an object is created using the _____ keyword, at least one constructor is called.

A

new()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Rules for creating Java Constructor (3):

A
  • Constructor name must be the same as its class name
  • Must have no return type
  • Cannot be abstract, static, final, and synchroized
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Types of Java Constructor (2):

A
  • Default Constructor
  • Parameterized Constructor
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

A constructor is called ______ when it doesn’t have any parameter.

A

Default Constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

<class_name>()
{

}
</class_name>

A

Syntax of default constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

If there is no constructor in a class, compiler _________ a default constructor.

A

automatically creates

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Purpose of a default constructor:

A
  • Provide default values to the object like 0, null, etc., depending on the type.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

A constructor which has a specific number of parameters is called

A

Parameterized Constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Why use Parameterized Constructor?

A
  • used to provide different values to distinct objects. However, you can provide the same values also.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

In Java, a _______is just like a method but without return type. It can also be overloaded like Java methods.

A

Constructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

a technique of having more than one constructor with different parameter lists. They are arranged in a way that each constructor performs a different task. They are differentiated by the compiler by the number of parameters in the list and their types.

A

Constructor Overloading

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Difference Between constructor and method in Java (5)(5):

A

Constructor:
1. Used to Initialize the state of an object.
Method:
1. Used to expose the behavior of an object

Constructor:
2. Must not have a return type.
Method:
2. A method must have a return type.

Constructor:
3. invoked implicitly
Method:
3. Invoked Explicitly

Constructor:
4. compiler provides a default constructor if you don’t have any constructor in a class.
Method:
4. Not provided by the compiler in any case

Constructor:
5. name must be same as the class name.
Method:
5. method name may or may not be same as the class name.