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
A coin was flipped 150 times. The results of the experiment are shown in the following table:
Wewaii [24]
<span>It is 10% higher than the theoretical probability.</span>
4 0
3 years ago
simplify the following polynomial expression. <img src="https://tex.z-dn.net/?f=%285x%5E%7B3%7D%20%2B4x%5E%7B2%7D%20%2B6x-3%29%2
FrozenT [24]
Here is the answer hope it helps

7 0
3 years ago
Find the x- and y-intercepts for the linear equation.<br> – 3x + 5y = 15
Paladinen [302]

Answer:

x-intercept: (-5,0)

y-intercept: (0,3)

Step-by-step explanation:

y-intercept: when x = 0

-3(0) + 5y = 15

5y = 15

y = 3

x-intercept: when y = 0

-3x + 5(0) = 15

-3x = 15

x = -5

6 0
3 years ago
Read 2 more answers
In the equation |x+8| = 3 the center number is -8. true or false
jenyasd209 [6]

Answer:

False the center number is a postive 8

Step-by-step explanation:

7 0
3 years ago
Richard goes electronics store. He buys 2 memory cards that cost 8.99 each and 3 packages of batteries that are on sales for 7.4
Licemer1 [7]
His total is (73.37) hope it helps and have a great day! 
3 0
3 years ago
Other questions:
  • What is 3.7 repeating, as a mixed number
    7·2 answers
  • Oak grove and salem are 87 mi from each other. How far apart would the cities be on a map that has a scale of 5in: 29mi
    7·1 answer
  • What equation results from completing the square and then factoring?<br> x2 + 10x = 15
    11·2 answers
  • Write a linear function that passes through (1,5) and (2,15)
    11·1 answer
  • B - 1/4 = 3 1/2 please help I need to correct my answer
    5·1 answer
  • Esteban has a big jar of change in his room. He has 600 coins total, and 240 of them are pennies. What percentage of the coins a
    11·2 answers
  • Hey Guys! I've forgot way to do. Can you help me, please?
    6·1 answer
  • What’s the correct answer for this?
    9·2 answers
  • Please help i need to turn it in
    8·2 answers
  • to test an​ individual's use of a certain​ mineral, a researcher injects a small amount of a radioactive form of that mineral in
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!