1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
qwelly [4]
2 years ago
7

1.1.1 Write the total number of winners in the correct South African number format. ​

Mathematics
2 answers:
baherus [9]2 years ago
5 0

Answer:

1 234 567,89

The American variation that we had become used to is commas for the thousands separator and a full stop for the decimal point.

1,234,567.89

In programming, I have only ever seen the use of the full stop for the decimal mark, and no thousands separator. However when printing numbers for humans to read, its important to use the thousands separator and to use a number format that the largest group of readers will easily understand.

If your readers are South African, this handy JavaScript function will format your numbers correctly with 2 decimal places, which is mostly useful for displaying currency values. This code is a modified version of this script.

function za_format(number) {

number = parseInt(number).toFixed(2);

number += '';

var x = number.split('.');

var x1 = x[0];

var x2 = x.length > 1 ? ',' + x[1] : '';

var rgx = /(\d+)(\d{3})/;

while (rgx.test(x1)) {

x1 = x1.replace(rgx, '$1' + ' ' + '$2');

}

return x1 + x2;

Step-by-step explanation:

hope it helps

prohojiy [21]2 years ago
4 0

Answer:

As of February 2022, South Africa has played 449 Test matches resulting in 171 victories, 154 defeats and 124 draws for an overall winning percentage of 38.08. Statistics are correct as of South Africa v New Zealand at Hagley Oval, 1st Test, 17-19 February 2022.

Format

The way that something appears or is set out.

You might be interested in
Need help understanding what to do
Juliette [100K]
I believe you are expected to simplify. To do this all you do is group like terms (x, x², x³ etc.) and then simplify the coefficients. 

13. 10z + 7z - 19z² - 5z² - 17z 

first you can rearrange and group like terms (remember the bring the sign in front of each term with it). I would do it like this: 
-19z² - 5z² +10z + 7z - 17z

Now simplify the coefficients: 

-24z² + 0z 

you can omit the 0z and your simplified answer is 

-24z²

Main thing to remember here is that z and z² cannot be simplified together, nor can any variable that has an exponent because the exponent makes them differ. 

6 0
3 years ago
What is the equation of the line that has a slope of 3 and goes through the point (-3,-5)
Bogdan [553]

Answer:

A.

Step-by-step explanation:

If its positive then the equation will be also

6 0
2 years ago
Read 2 more answers
What is log 5 + log 2?
Licemer1 [7]
Hey!~ 

Log 5 + Log 2 = 1

Hope this helps and have a nice day!

-Lindsey
5 0
3 years ago
Read 2 more answers
The Point Imperial is the highest point of the Grand Canyon and it is 8,800
Afina-wow [57]

Answer:

1222

Step-by-step explanation:

sorry youve been waiting a minute

3 0
2 years ago
Find the domain of the function (f/g)(x) given f (x)=x^2-4x-5 and g(x)=x^2-25
Sladkaya [172]
F<span> + </span>g)(x<span>) = </span>f(x<span>) + </span>g(x); (f<span> - </span>g)(x<span>) = </span>f(x<span>) - </span>g(x): (f<span> · </span>g)(x<span>) = </span>f(x<span>) · </span>g(x<span>) ..., let </span>f(x) = 5x+2<span> and </span>g(x<span>) = </span><span>x2</span>-1. <span>4. </span>f(4)=5(4)+2<span>=22 and </span>g(4)=42-1=15 ... (fog)(x<span>) = </span>f<span> [ </span>g(x<span>) ] = </span>f<span> [ 4x2 ] = sqrt( </span><span>4.2</span><span> ) = </span>2<span> | </span>x<span> |; (</span>gof)(x<span>) = </span>g<span> [</span>f(x<span>) ] = </span>g [ s
8 0
2 years ago
Other questions:
  • The area of a triangular block is 64 square inches. If the base of the triangle is twice the height, how long are the base and h
    10·2 answers
  • Prove that if m + n and n + p are even integers, where m, n, and p are integers, then m + p is even. what kind of proof did you
    6·1 answer
  • My math homework states for me to answer the problem 12 - 14 1/2 . How do I solve this problem, and what is the correct answer
    10·2 answers
  • (I will give out Brainlist for the correct answer. Please choose the correct answer, If you do NOT know the answer. or guess. Do
    8·1 answer
  • If AB || CD, EF ⊥ CD and ∠GED = 135° as per the figure given below. Find the value of ∠AGE is
    15·1 answer
  • On the given graph, when x=-1, what is f(x)?<br><br> A) 3<br><br> B) 5<br><br> C) 7<br><br> D)8
    9·1 answer
  • Xm = np , for x Can I get help?
    15·2 answers
  • 8.75 x 10 ^3 in standard form
    14·1 answer
  • Humphrey needs to mail a package. He weighs it at home as 20.2 ounces. When he gets to the post office, the clerk weighs it at 1
    11·1 answer
  • 1. If the spinner below is spun once, find the <br> probability of a number less than 10
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!