answersLogoWhite

0


Best Answer

Initiating means starting. The sense of the word would often apply in a work setting, and a person who is an "initiator" would be the one who can start projects independently, without waiting to be told by superiors. Of course, this kind of initiation may not be appropriate in any work setting. As a person is given more and more responsibility at work, the ability to initiate becomes more and more valuable.

User Avatar

Keyshawn Walter

Lvl 10
2y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

16y ago

Initiating means starting. The sense of the word would often apply in a work setting, and a person who is an "initiator" would be the one who can start projects independently, without waiting to be told by superiors. Of course, this kind of initiation may not be appropriate in any work setting. As a person is given more and more responsibility at work, the ability to initiate becomes more and more valuable.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

Initialized means to begin something to commence most of the times in doing new tasks

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the meaning of initialized?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When you combine AND and OR operators the OR operators take precedence meaning their Boolean values are evaluated first?

in some cases, aloop control variable does not have to be initialized.


What do you mean by initialization in c plus plus?

Not initialized variable: int myInt; Initialized variable: int myInt = 10;


Can array be initialized if they are static?

Yes.


Are variables automatically initialized by Java if the programmer does not?

no


Are initialized words first alphabetically?

yes


How can a PHP static be initialized?

PHP static can only be initialized using a literal or constant. You can not use an expression. You can initialize it to an integer but you may not to another variable.


What is the value of the un initialized pointers?

Random garbage, obviously. Let's note that global (ie not automatic) variables are automatically initialized by zero (=NULL)


What is the proper spelling of the past tense of initial?

The correct past tense of "initial" is "initialed."


Which variable is initialized once when program is compiled?

global and static


What value cannot be changed once it is initialized?

A constant value.


What happens if you don't initialize an instance variable of any of the primitive type in java?

Java by default initializes it to the default value for that primitive type. Thus an int will be initialized to 0(zero), a Boolean will be initialized to false.


Why do you use superclass init method inside your init method in a servlet?

Because, that is how all Java classes work. When a class is initialized/created all the classes it extends from (its super classes) need to be initialized as well.