answersLogoWhite

0

A base unitis a defined unit in a system of measurement that is based on an object or event in the physical world.

A derived unit is a unit that is defined by a combination of base units.

User Avatar

Yazmin Sawayn

Lvl 13
3y ago

What else can I help you with?

Related Questions

What and the difference between base and soap?

There is no clear difference between base and soap because soap is a base.


How can you differentiate between base and derived quantities?

Base quantities are independent and cannot be expressed in terms of other quantities, while derived quantities are dependent and derived from combinations of base quantities. Base quantities are fundamental in a system of measurement, while derived quantities are derived through mathematical relationships. For example, length is a base quantity, while speed is a derived quantity that depends on both length and time.


What is the difference between SI base units and derived units.?

There are 7 base SI units and all other are defined using these 7 base units. See the related question below:[http://wiki.answers.com/Q/What_are_all_the_SI_unitsWhat are all SI units?]


What the difference between SI base unit and SI derived unit?

There are 7 base SI units and all other are defined using these 7 base units. See the related question below:[http://wiki.answers.com/Q/What_are_all_the_SI_unitsWhat are all SI units?]


What are derived quantities?

All other quantities which described in terms of base quantities are called base quantities.


What is the Difference between base and area of base?

base is for 2d shapes and area of base is for 3d shapes


what difference between perpendicular/base and 1/2 * base *height?

2


Program for derived class in cpp?

#include<iostream> class base { int m_data; public: base(const int data):m_data(data){} base(const base& cpy):m_data(cpy.m_data){} base& operator=(const int rhs){m_data=rhs;return(*this);} base& operator=(const base& rhs){m_data=rhs.m_data;return(*this);} virtual ~base(){} }; class derived { public: derived(const int data):base(data){} derived(const derived& cpy):base(cpy){} derived& operator=(const int rhs){return(base::operator=(rhs));} derived& operator=(const derived& rhs){return(base::operator=(rhs));} virtual ~derived(){} }; int main() { derived d=42; }


What is the difference between a base path and a base line?

A base path is the path determined by the runner as he is travelling between bases, and the base line is the the direct lines between the two bases.


What is the difference in wheel base between a 2000 4-door blazer and a 2000 2-door blazer?

there is no difference in wheel base


What is the Difference between multilevel and multiple inheritance?

Multiple Inheritance : we can inherit more than one class in the same class. Multi-Level Inheritance: where one class can inherit only one base class and the derived class can become base class of some other class.


What is the difference between the direct and indirect base class?

Direct base classes are those that are specified in a derived class' inheritance declaration. Indirect base classes are those that are inherited via the direct base classes. class A{}; class B : public A{}; class C : public B{}; With respect to C, B is direct while A is indirect. With respect to B, A is direct.