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
Four brothers each bought two hotdogs and a bag of chips at the concession stand.if the bag of chips was $1.25,and the total was
ahrayia [7]

Answer:

  $1.65

Step-by-step explanation:

The total purchase can be described by ...

  4(2h +1.25) = 18.20 . . . . where h is the price of a hot dog

  8h = 13.20 . . . . . . . . . . . subtract 5.00

  h = 1.65 . . . . . divide by 8

The price of a hot dog was $1.65.

5 0
3 years ago
What is the true solution to ln 20+ln 5= 2 ln x
Aleks [24]
Ln20+ln5=2lnx
ln(20x5)=lnx^2
ln100=1nx^2
100=x^2
square root
x=10
5 0
3 years ago
Read 2 more answers
What is the quotient of the expression: 12/-3
4vir4ik [10]

Answer:

-4

Step-by-step explanation:

trust me im smart

3 0
3 years ago
Read 2 more answers
362,031,100 km as standard form
Alex777 [14]
300,000,000+60,000,000+2,000,000+31,000+1000+100
6 0
3 years ago
Determine the value of each variable in the figure below. Keep answers in simplest<br> radical form.
Tanzania [10]

Answer:

  a = 21

  b = 63

  c = 42√3

  d = 21√3

Step-by-step explanation:

The sides of a 30°-60°-90° triangle have the ratios 1 : √3 : 2. The given side (42) is the longest side of the smallest triangle, and the shortest side of the largest triangle.

That means the other sides of the smallest triangle will be ...

  a = 42/2 = 21

  a+b = 2(42) = 84

  b = (a+b) -a = 84 -21 = 63

  d = 21√3 . . . . middle-length side of the smallest triangle

  c = 42√3 . . . . middle-length side of the largest triangle

The values of the variables are ...

  • a = 21
  • b = 63
  • c = 42√3
  • d = 21√3

7 0
2 years ago
Other questions:
  • What is the answer to this equation <br><br> h(x)= -9 - x; h(2k-5
    8·1 answer
  • A surveyor sights the top of a building with a handheld range finder. the top of the building is 148 feet 2 inches away. the ang
    12·1 answer
  • Question 11 options:<br> m∥n, m∠1 = 65°, m∠2 = 60°, and m∠6 = 85°. What is m∠DBC?
    5·1 answer
  • sock drawer contains 18 blue socks and 10 black socks. If two socks are randomly drawn from the drawer without replacement, what
    11·1 answer
  • Tyrell is going to be use ASA to prove that PQR=SQR
    8·2 answers
  • 11. Find out price elasticity of demand from the following table:
    15·1 answer
  • Given the expression
    13·2 answers
  • If a rectangular prism has a volume of 1,890 feet, a height of 15 feet, and a width of 18 feet, what is the length?
    14·1 answer
  • The table shows the amount of money that Gabe earns based on the number of hours he works. Based on the table, which equation re
    14·1 answer
  • Find the trig ratio. Reduce to<br> lowest terms.<br> 10<br> 24<br> sin A =
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!