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
Jonah drew two squares with the same dimensions. He then added 2 inches to the length of one square to make it a rectangle. He a
nydimaria [60]

Answer:

Perimeter of rectangle 1=4x+4

Perimeter of rectangle 2=4x+4

Step-by-step explanation:

Two squares with the same dimension

Square 1: let length=x

Square 2: let length=x

Since they have same dimensions

He added two inches to the length of square 1 to make it a rectangle

Rectangle 1: width=x, length=x+2

Perimeter=2(l+w)

=2{(x+2)+x}

=2(x+2+x)

=2(2x+2)

=4x+4

He added two inches to the width of square 2 to make it a rectangle

Rectangle 2: length=x, width=x+2

Perimeter=2(l+w)

=2{(x+(x+2)}

=2(x+x+2)

=2(2x+2)

=4x+4

The two rectangles have equal perimeter

3 0
3 years ago
A, B and C lie on a straight line.
lilavasa [31]

Answer:

y+what ever the angle inside=180 since its on a line

180-128=52

52+z+x=180since thats always the angles of a triangle added up

52+91+x=180

add

143+x=180

-143

x=37

Hope This Helps!!!

8 0
2 years ago
XY and BD are parallel lines.
mr_godi [17]

Answer:

Could you take a picture of the question ?

8 0
2 years ago
Which of the following are solutions to the equation below?
Reptile [31]

Answer:

Option B and D

Step-by-step explanation:

Subtract 9 from both sides :

4x² + 4x - 8 = 0

Divide both sides by 4 :

x² + x - 2 = 0

Factorise using factorisation method :

x² - x + 2x -2 = 0

x(x - 1) +2(x-1) = 0

(x+2)(x-1) = 0

Solve for x

x +2 = 0   OR     x - 1 = 0        

x = -2       OR     x = 1

Answer will be Option B and D

Hope this helped and have a good day

7 0
1 year ago
Read 2 more answers
Juan has $1.30 in dimes and nickels he has a total of 15 coins how many dimes does juan have ​
AnnyKZ [126]

Answer:

11 dimes and 4 nickles

Step-by-step explanation:

8 0
2 years ago
Read 2 more answers
Other questions:
  • The 35 members of a drill team are trying to raise at least $1,200 to cover travel costs to a training camp. They have already r
    9·1 answer
  • susan's algebra class begins with 36 students. of 2/3 will finish the class and 3/4 of those ger a passing grade, how many stude
    13·1 answer
  • Solve for x: -(-4x-1)-x>-4x-20
    6·1 answer
  • Lisa has 12 more stickers than John, and together they have 60 stickers. What is the ratio of the number of Lisa’s stickers to t
    14·1 answer
  • Identify the angle relationships in the table.
    15·1 answer
  • Let an = –3an-1 + 10an-2 with initial conditions a1 = 29 and a2 = –47. a) Write the first 5 terms of the recurrence relation. b)
    9·1 answer
  • Which of the following is true if Tom walks his dog 13.5 blocks each day and Margo walks her dog 12.5 blocks each day? A. The pr
    8·2 answers
  • quan plans to spend less than $80 for buying groceries he plans to spend $68.25 on food and spend the rest on juice each juice c
    8·1 answer
  • The Pythagorean Theorem ONLY works on which triangle? *
    15·1 answer
  • In Terrance county, 85% of eligible voters are registered to vote, and government records from a recent gubernatorial election i
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!