answersLogoWhite

0


Best Answer

Because there is no specific multiply sign other than a "x", which is used in algebraic equations and it would get confusing. Since an asterisk looks sort of like an x and has no other use in math, they used that instead.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago

The multiply sign is an "x" . This would cause confusion when using programming language and spreadsheets etc. So the "*" was used as the most viable option.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why you use asterisk symbol instead of multiplication symbol in computer language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why multiplication does not exist on a windows caculater?

It's quite possible you're looking for the wrong symbol on the calculator to represent Multiplication. Instead of using the normal X sign, on a windows calculator, multiplication is represented by an asterisk - one of these -> * Multiplication exists on all Windows Calculators.


Why is the multiplication sign on the calculator in the computer a star instead of a x?

there is no reason. it should not be a star. bullcrap if you ask me. the multiplication symbol will always be a "X" in my eyes,


How do you hide input password in c?

Do not echo the keystrokes, output an asterisk instead.


A Sentence for asterisk?

All punctuation is before the asterisk.For example:This is a life-time warranty.* *Warranty does not protect against acts of war, internal uprising, domestic unrest, natural disasters, or acts of God.


Is computer science a vernacular language?

Vernacular means in the common language of. As an example, a vernacular mass in an English speaking country would be in English, instead of Latin. As such, computer languages are not in the vernacular.


What is the use of java language for a computer science engineer?

Java is a programming language. The computer science engineer may decide to use the Java language to do his programming - or somebody else may have done the decision for him, in a company at which he works. Or they might decide to use some other language instead.


How do you write to the third power?

the same way you would write to the second power, only with a 3 instead of a 2, a tiny 3 where this asterisk* is. so 3 to the 3rd is 3* but with a three (where the asterisk is)


What is computer language programming?

A computer programming language is any type of code that you can use that is then changed into binary so the computer can read it. An example of that would be the computer programming language python. Instead of having to input a huge amount of binary information to tell the computer to put the words "hello world" onto the screen, I can simply type: print "hello world" then tell it to run.


Why computer show boxes instead of other language?

are you using mac? because for mac, it shows unrecognized front or languages as empty boxes.


Why do they have a multiplication sign?

Why algebra has a different multiplication sign is because they don't want to mix up the American multiplication sign with the variable x. So they use a centered dot for algebra instead of this: x.


Why you do convolution instead of multiplication?

Convolution is particularly useful in signal analysis. See related link.


Is the asterisk is the wild-card used to represent one and only one character in find criteria?

The interpretation of the asterisk depends on the exact filter language and dialect in use.For example, the Windows console supports an asterisk as a placeholder for any alphanumerical character which can be part of a file base name, that is, letters, digits, underscore, and some others, but other characters with special meaning in this context, such as a period, a colon or a backslash. For example - the instruction Dir *.txt would list every file with the extension txt.Commonly used equivalents console applications under the Unix (Linux) family of operating systems (so-called 'shell' programs such as BASH and many others) interpret the asterisk as a placeholder for any valid file name character (that is, including the period).In most regular expression dialects, the asterisk does not represent a particular character or group of characters at all. It is instead used to implement a multiplier, where the asterisk matches "zero or more times whichever search expression precedes the asterisk." Thus, 'AZ*' will be interpreted as "match a sequence consisting of letter A, followed by zero or more letters Z: 'A', 'AZ', 'AZZZZZ', etc.