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
You read 1 chapter every hour. You read 3 hours after school. How many chapters did you read?
Marat540 [252]

Answer:

3 Chapters?

Step-by-step explanation:

3x1=3 but I am not sure if it is asking if you read during school or not because this seems like a really simple question and may be over thinking it.

6 0
2 years ago
Read 2 more answers
What is 525/1000 in simplest form?
KiRa [710]
525/1000 = 105/200 = 21/40
8 0
3 years ago
Formulate the situation as a linear programming problem by identifying the variables, the objective function, and the constraint
abruzzese [7]

Answer:

zero goats and 120 Ilamas to get profit of $15,120

Step-by-step explanation:

Goats: G

Ilamas: l

Explicit constraints:

2G + 5l ≤ 400

100G+ 80l≤ 13,200

Implicit constraints

G≥0

I≥0

P= 84G+ 126l

See attachment for optimal area

substituting coordinats of optimal region in profit equation to get profit

When G= 132, l=0

P=84(132) + 126(0)

P=11,088

When G=0, l=120

P=84(0)+ 126(120)

P = 15120

When G= 100, l=40

P=84(100)+126(40)

P=13440

3 0
3 years ago
TICKETS:
blsea [12.9K]
You would need too do 5*5=25 if you did 5*7=35 that would be wrong
7 0
3 years ago
Line WY is an altitude in triangle WXZ. If ΔYWZ ~ ΔYXW, what is true about XWZ? XWZ is an obtuse angle. XWZ is a right angle. XW
topjm [15]
<span>In triangle WXZ,

Line WY is an altitude (as shown in the attached picture)
Now, it is given that:
</span><span>If ΔYWZ ~ ΔYXW
</span>∠WXY = ∠WZY
<span>
Then, we can also conclude 
</span>∠WYX = ∠WYZ = 90°....(1) (because WY is the altitude)

Now, in any triangle, the sum of all the three angles is 180.

In triangle, WXY, ∠WYX = 90° (From 1)
Therefore, WXY + XWY = 90°

Similarly, in WZY.

Hence, we conclude that XWZ is a right angle.

7 0
3 years ago
Read 2 more answers
Other questions:
  • It takes a boat 4 hours to travel downstream 84 miles and 5 hours to travel up stream 55 miles. What is the speed to the boat in
    14·1 answer
  • The Federal Pell Grant Program gives grants to low-income undergraduate students. According to the National Postsecondary Studen
    7·1 answer
  • How do you solve this?
    15·2 answers
  • a 40 gram sample of a substance that's used for drug research has a k-value of 0.1446. find the substance's half life in days
    11·2 answers
  • Which represents a side length of a square that has an area of 450 square inches?​
    5·2 answers
  • 4m=4(m−1)<br> I'm not sure if this is right but i got 0= -4
    12·1 answer
  • F(x)=2/x and g(x)=2/x what is f(g(x))
    6·1 answer
  • What is the x intercepts of (x+1)(x-3)
    6·1 answer
  • Which situation would most likely take place in a market economy?
    6·2 answers
  • I need help with this asap<br><br><br>10b^4+3b^4-11
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!