answersLogoWhite

0


Best Answer

For example: 0.75 = 75% = 3/4

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What class and what function is used to other conversion from decimal?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

What is decimal to binary conversion?

"Ordinary" numbers are on base 10 (="decimal"). Binary only has 2 digits. 0 and 1 (representing "on" or "off" in some circuits). So "conversion" is how to represent an number in one to how it appears in the other. So 10 (binary) means 1x21 + 0x20 , which is 2. Decimal to binary effectively means representing an ordinary ("decimal") number in binary form. So 10 (decimal) is broken up into powers of 2 as 8+2 = 1x23 + 0x22 + 1x21 + 0x20 which is 1010 (binary).


What does terminating decimal mean in math?

Decimals can be "terminating" "recurring" or "other." A terminating decimal is one which is finite. Recurring and other decimals continue on forever. For instance 0.5 is a terminating decimal. 0.729 is a terminating decimal. 0.3333333... is not a terminating decimal. pi (3.1415926535....) is not a terminating decimal.


How many meli meter equals 1 decimal?

None, for the following reasons: First, there is no such thing as a meli meter - perhaps you mean millimetre, which is a measure of length. Let us assume that you made a spelling error. A decimal can either be a way of representing a number in such a way that the place value of each digit is ten times that of the digit to its right. In that case, it is a pure number and has no dimensions of length and, according to the basic rules of dimensional analysis, conversion from one to the other is not valid. Alternatively, a decimal is a measure of area, used mainly in South Asia. This has dimensions of Length2 and since that is different to the dimensions for a millimetre, again according to the basic rules of dimensional analysis, conversion from one to the other is not valid.


How does the exponential function differ from other functions?

Every function differs from every other function. Otherwise they would not be different functions!


How do you write 42.7 percent as a decimal?

Hi We are studying decimals in my class to write decimals you read the number and after and you put a dot a write the other number * * * * * That's as maybe but it does not answer the question. The correct answer isc 42.7% = 0.427

Related questions

What is the difference between friend function and normal member function?

We can access a Friend function from any other class in which friend function is introduced or declared even if the other class is not a member of first class. But when we use normal member function, we can have its access only in the derived classes of the first class. This is the basic difference between a friend function and a normal member function.


How do virtual functions differ from pure virtual functions?

Virtual functions is a function that can be overridden in inheriting class with the same signature (function name, parameters number, parameters types and return type);Pure virtual function is function that does not have implementation and if class has pure virtual function is called abstract. It is not possible to instantiate that class. Some other class must inherit it and define the body for it (implement). In other words class only have function prototype/declaration(signature) and no definition(implementation).


Can a derived class make a public base function private true or false?

True. A derived class can make a public base function private. The derived function is private, within the derived class, but public in other contexts.


What is the use of private constructor in c plus plus?

Private construction prevents objects from the class from being instantiated other than via a static member function of the class, a friend function or a friend class.


What is the pupouse of static function?

A static function, not part of a class, is visible only to other code within the same compilation unit, i.e. the same source file. A static function, part of a class, can only operate on static class data, which is per class data as opposed to per instance data.


What is self referential function in c plus plus?

A self-referential function in C++, or in any other supporting language, is a recursive function.


What is function in java terminology?

In Java, a function is called a "method". In Java as well as other languages, a method is a function defined specifically for one class. In Java, this is the only way to define functions, therefore, all functions are methods.In Java, a function is called a "method". In Java as well as other languages, a method is a function defined specifically for one class. In Java, this is the only way to define functions, therefore, all functions are methods.In Java, a function is called a "method". In Java as well as other languages, a method is a function defined specifically for one class. In Java, this is the only way to define functions, therefore, all functions are methods.In Java, a function is called a "method". In Java as well as other languages, a method is a function defined specifically for one class. In Java, this is the only way to define functions, therefore, all functions are methods.


Is a public function accessed like a non-member function?

A public function is scoped to the class in which it is declared. If declared non-static, then it must be invoked against an instance of the class but if declared static then namespace resolution is required to access the function. A non-member function is not scoped to any class but may be scoped to a namespace. If no namespace is specified, then it is scoped to the (unnamed) global namespace. If scoped to any other namespace then namespace resolution is required to access the function.


Difference between member function and friend function?

1. Function - is normally refered to a C-style function which has a global level scope. As long as its declaration is visible in a file where it is being used, and the definition is available somewhere in the application, the linker will find the definition and link to it. It can be used anywhere in the application. 2. Member function - is normally referred to a C++Style method declared/defined inside of a C++ class. The scope for such member functions is the class. They are not accessible outside the class and are only accessible thru an object/instance of such a class. There are, of course, exceptions to this, such as static and friends.


What is decimal to binary conversion?

"Ordinary" numbers are on base 10 (="decimal"). Binary only has 2 digits. 0 and 1 (representing "on" or "off" in some circuits). So "conversion" is how to represent an number in one to how it appears in the other. So 10 (binary) means 1x21 + 0x20 , which is 2. Decimal to binary effectively means representing an ordinary ("decimal") number in binary form. So 10 (decimal) is broken up into powers of 2 as 8+2 = 1x23 + 0x22 + 1x21 + 0x20 which is 1010 (binary).


Does conversion to OCF format function of GstarCAD still works after the free of charge period?

Yes, when free of charge period expires, the saving function is restricted by GstarCAD, the other functions are still working.


What is friend function and its advantages?

The best way to understand the advantage of friend functions is to consider that a member function has the following properties:1. Private access to the class representation.2. Scoped to the class.3. Can be invoked upon an instance of the class (has a this pointer).A static member function only has the first two properties while a friend function only has the first property. All other function have none of these properties. This gives the programmer fine-grained control over which functions can access which parts of the class representation.