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
Help!!!!!!!!!! TYSM if you answer this!!!!!!!!!!!
Arlecino [84]

Answer:

10p+5

Step-by-step explanation:

8 0
2 years ago
-13d-8=-8-6d equation
olga nikolaevna [1]
Well, for -6d to equal -13d, d would have to be 0 to satisfy this equation
4 0
3 years ago
Read 2 more answers
A data set with a mean of 34 and a standard deviation of 2.5 is normally distributed
tresset_1 [31]

Answer:

a) z= \frac{34-34}{2.5}= 0

z= \frac{39-34}{2.5}= 2

And we want the probability from 0 to two deviations above the mean and we got 95/2 = 47.5 %

b) P(X

z= \frac{31.5-34}{2.5}= -1

So one deviation below the mean we have: (100-68)/2 = 16%

c) z= \frac{29-34}{2.5}= -2

z= \frac{36.5-34}{2.5}= 1

For this case below 2 deviation from the mean we have 2.5% and above 1 deviation from the mean we got 16% and then the percentage between -2 and 1 deviation above the mean we got: (100-16-2.5)% = 81.5%

Step-by-step explanation:

For this case we have a random variable with the following parameters:

X \sim N(\mu = 34, \sigma=2.5)

From the empirical rule we know that within one deviation from the mean we have 68% of the values, within two deviations we have 95% and within 3 deviations we have 99.7% of the data.

We want to find the following probability:

P(34 < X

We can find the number of deviation from the mean with the z score formula:

z= \frac{X -\mu}{\sigma}

And replacing we got

z= \frac{34-34}{2.5}= 0

z= \frac{39-34}{2.5}= 2

And we want the probability from 0 to two deviations above the mean and we got 95/2 = 47.5 %

For the second case:

P(X

z= \frac{31.5-34}{2.5}= -1

So one deviation below the mean we have: (100-68)/2 = 16%

For the third case:

P(29 < X

And replacing we got:

z= \frac{29-34}{2.5}= -2

z= \frac{36.5-34}{2.5}= 1

For this case below 2 deviation from the mean we have 2.5% and above 1 deviation from the mean we got 16% and then the percentage between -2 and 1 deviation above the mean we got: (100-16-2.5)% = 81.5%

7 0
2 years ago
A ratio is in its simplest form 7:9.<br>if its consequent is 117, find the antecedent​
a_sh-v [17]

Answer:

Let the income and saving rs7x and respectively 2x

then

2x=500

Step-by-step explanation:

3 0
2 years ago
According to the 2000 Census the population of Canton was 7,720. Holly Spring's population was 3,200. Canton's population increa
Kazeer [188]
Firstly, the rate of increase of Canton = 80/7720 = 0.010
The rate of increase of HP = 120/3200 = 0.0375
Apply  the formula of compound interest==> A =A'(1+i)^n
The population will be equal when the following equality is satisfied

7720(1+0.01)^n = 3200(1+0.0375)^n

or

7720x1.01^n = 3200x1.0375^n

Divide both sides by 3200 ===>(193/80)x1.01^n=1.0375^n
8 0
3 years ago
Read 2 more answers
Other questions:
  • Solve |z - 8| = 4 please
    7·1 answer
  • In the diagram, which pair of angles are vertical angles?
    12·1 answer
  • Does anyone know the answer?
    9·2 answers
  • Plz help and plz show work
    9·2 answers
  • How many wheels are on 27 cars?
    13·2 answers
  • Multiple choice
    15·2 answers
  • (Don’t send me a link pls just answer!) First 3 people to answer get lots of points pls do it by friday!
    12·2 answers
  • You and your three friends are going to a concert. The total price for the
    11·2 answers
  • If my teacher has 45 hair pieces and she cuts 38 how many does she have left
    5·1 answer
  • Can I get some help please? ASAP <br><br>Solve for X. for both equations pleaseee​
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!