answersLogoWhite

0

ministry

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Is power a vector quantity or a scalar quantity?

vector, power= work/time and work= force * distance, force is vector.


Why a unit vector is aone type of vector but a vector is not a unit vector?

A unit vector is a vector whose magnitude is one. Vectors can have magnitudes that are bigger or smaller than one so they would not be unit vectors.


What size drive belt goes on a vector go kart?

Based on the type of system, there could be several lengths that would work.


Is work a vector quantity?

No, work is not a vector quantity. It is a scalar quantity that represents the transfer of energy when a force is applied over a distance.


Why angular velocity is vector quantity?

Because it's a type of velocity and velocity is vector quantity


What is the sum of two vectors A.addition vector B.distance vector C.resultant vector D.displacement vector?

The sum of two vectors is called the resultant vector. It is the vector obtained when adding two or more vectors together. The displacement vector is a specific type of vector that represents the change in position of an object.


What graphic type does not distort or degrade?

Vector


What type of measurement is 12 feet up?

A vector has magnitude and direction, so since it is up it is vector.


What type of measurement is 120 meters northeast?

vector


What type of object can be stored in vector?

your head shape


What type of measurement is 70 meters east?

Vector


What does vectoralphabet(26) do in C plus plus?

It doesn't do anything other than to create a compiler error. A vector is a class template thus you must specify the element type in the type declaration. For example, a std::vector<T> is a vector of type T elements. It is assumed you really meant the following: std::vector<char> alphabet (26); This declaration constructs a vector of type char with a length of 26 elements. The elements are default initialised, thus the vector will contain 26 NULL characters (ASCII character code 0).