answersLogoWhite

0


Best Answer

"Initiate" stands for launching or engaging, switching-on some objects in rather science terms... e.g; "The security protocol has been initiated." or.. "Initiating rocket launch."

WHEREAS "Initialize" is rather a computer term, which stands for loading process, close to the actual "initiating", but more in terms of "loading" or "retrieving". "Initialize" also refers to virtual objects (e.g; within computer software), whereas "initiate" regards physical objects (such as science machines, rockets, weapons etc...)

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between initialize and initiate?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between a declarative statement and an imperative statement?

In a declarative statement, you initialize the object. But in an imperative statement, you use a preexisting statement and use it.


What is the difference between initialize of elements in a class with the use of constructor and without use of it?

when initializing a class elements by using constructor it will assigned to the elements when object creation is going on. by using other ways the elements will be initialize with default values when object creation


Difference between for and while loop not in syntactically?

Well 'while' goes like this: while (condition) statement 'for': for (initialize; condition; after-each-loop) statement


What is the difference between repeat and redo?

You use redo to undo an undo, but you use repeat to initiate the same keystrokes just completed in your typing.


How do you initialize variable?

initialize simple types: int i = 0; initialize objects: Object o = null; (in java)


What is the difference between assertive and passive people?

Assertive people are confident in expressing their opinions, setting boundaries, and standing up for themselves in a respectful manner. Passive people tend to avoid conflict, suppress their feelings, and have difficulty asserting themselves or expressing their needs.


What is the difference between reagent and catalyst?

catalysts accelerate the rate of reaction but does not get consume in reaction, and reappear after reaction is over, whereas reagents initiate reation and get consume in reation.


What does initialize mean?

The term "initialize" means to start, begin, or prepare. Often the word "initialize" is used in context with starting something such as a program or sequence.


Why can't java compiler initialize local variables?

Its not that the compiler can't initialize local variables; its that the compiler does not initialize local variables.This is by design and language specification. If you want to initialize local variables, you must explicitly do so.


Do you have to initialize your SIM card?

No - there's no need to initialize it. Simply insert it in the handset for it to work.


How do you find factorial 5 in C programming?

to find the factorial we declare a variable n and initialize its value to 1 initiate a loop for example a for loop and multiply the numbers upto 5 code:- for(i=1,n=1;i<=5;i++) { n=n*i; }


Is it possible to initialize null character in string?

yes we can initialize null characterfor example syntax :string='\0';