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
Hoochie [10]
3 years ago
15

How much money is one third of $2.34

Mathematics
2 answers:
SCORPION-xisa [38]3 years ago
8 0
Divide it by 3.
$2.34 divided by 3.
BabaBlast [244]3 years ago
6 0

Answer:

$0.78 or 78 cents.

Step-by-step explanation:

We have to calculate one third of the money $2.34.

First we will rewrite the question as :

\frac{1}{3} of 2.34

= \frac{1}{3} × 2.34

= $0.78

Convert it into cents

1 dollar = 100 cents

0.78 dollar = 100 × 0.78

                  = 78 cents

One third of $2.34 is $0.78 or 78 cents.

You might be interested in
A circle has a radius of 3it has an arc with a 20 degree central angle
alexandr402 [8]

Answer:

Step-by-step explanation:

The circumference of the circle is 6π inches  

The length of the arc is (20/360)×6π = 1.04 inches  

(The complete circumference would cover 360°. Angle ALB is 20°)

7 0
3 years ago
1 point) Use Stoke's Theorem to evaluate ∫CF⋅dr∫CF⋅dr where F(x,y,z)=xi+yj+1(x2+y2)kF(x,y,z)=xi+yj+1(x2+y2)k and CC is the bound
Drupady [299]

Answer:

0

Step-by-step explanation:

Thinking process:

\int\limits^a_b {cF} \, .dr

= \int\limits^a_b {x} \, dx \int\limits^a_b {x} \, dx curlFdS by Stoke's Theorem

= \int\limits^a_b {} \,  \int\limits^a_b {} \, < 12y, -12x, 0 > .< z_x,-z_y, 1 > dA\\= \int\limits^a_b {} \, \int\limits^a_b {} \, < 12y, -12x, 0 > .< 2x, 2y, 1 > dA since z = 25-x^{2} -y^{2} \\= 0

3 0
3 years ago
Solve for r and t:<br> 6r - 3t = 6<br> 6r + 8t = -16
MAVERICK [17]
Multiply the first equation with (-1)
you should get this

-6r + 3t = -6
6r + 8t = -16

start to eliminate

11t = -22

divide by 11

t = -2

substitute 

6r - 3(-2) = 6
6r + 6 = 6
6r = 6 - 6
6r = 0 
r=0
8 0
3 years ago
SIMPLIFY THE EXPRESSION.<br> 9(1 - 7x)
jok3333 [9.3K]

Answer:

9-63x

Step-by-step explanation:

9(1-7x)

9-63x

7 0
3 years ago
Read 2 more answers
5. The recursive algorithm given below can be used to compute gcd(a, b) where a and b are non-negative integer, not both zero.
s2008m [1.1K]

Implementating the given algorithm in python 3, the greatest common divisors of <em>(</em><em>124</em><em> </em><em>and</em><em> </em><em>244</em><em>)</em><em> </em>and <em>(</em><em>4424</em><em> </em><em>and</em><em> </em><em>2111</em><em>)</em><em> </em>are 4 and 1 respectively.

The program implementation is given below and the output of the sample run is attached.

def gcd(a, b):

<em>#initialize</em><em> </em><em>a</em><em> </em><em>function</em><em> </em><em>named</em><em> </em><em>gcd</em><em> </em><em>which</em><em> </em><em>takes</em><em> </em><em>in</em><em> </em><em>two</em><em> </em><em>parameters</em><em> </em>

if a>b:

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>greater</em><em> </em><em>than</em><em> </em><em>b</em>

return gcd (b, a)

<em>#if</em><em> </em><em>true</em><em> </em><em>interchange</em><em> </em><em>the</em><em> </em><em>Parameters</em><em> </em><em>and</em><em> </em><em>Recall</em><em> </em><em>the</em><em> </em><em>function</em><em> </em>

elif a == 0:

return b

elif a == 1:

return 1

elif((a%2 == 0)and(b%2==0)):

<em>#even</em><em> </em><em>numbers</em><em> </em><em>leave</em><em> </em><em>no</em><em> </em><em>remainder</em><em> </em><em>when</em><em> </em><em>divided</em><em> </em><em>by</em><em> </em><em>2</em><em>,</em><em> </em><em>checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>and</em><em> </em><em>b</em><em> </em><em>are</em><em> </em><em>even</em><em> </em>

return 2 * gcd(a/2, b/2)

elif((a%2 !=0) and (b%2==0)):

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>odd</em><em> </em><em>and</em><em> </em><em>B</em><em> </em><em>is</em><em> </em><em>even</em><em> </em>

return gcd(a, b/2)

else :

return gcd(a, b-a)

<em>#since</em><em> </em><em>it's</em><em> </em><em>a</em><em> </em><em>recursive</em><em> </em><em>function</em><em>,</em><em> </em><em>it</em><em> </em><em>recalls</em><em> </em><em>the function</em><em> </em><em>with </em><em>new</em><em> </em><em>parameters</em><em> </em><em>until</em><em> </em><em>a</em><em> </em><em>certain</em><em> </em><em>condition</em><em> </em><em>is</em><em> </em><em>satisfied</em><em> </em>

print(gcd(124, 244))

print()

<em>#leaves</em><em> </em><em>a</em><em> </em><em>space</em><em> </em><em>after</em><em> </em><em>the</em><em> </em><em>first</em><em> </em><em>output</em><em> </em>

print(gcd(4424, 2111))

Learn more :brainly.com/question/25506437

6 0
3 years ago
Other questions:
  • You have a $90 gift card for a coffee shop. each day you use the card to get a coffee for $4.20. what is the value of the card a
    15·1 answer
  • You want to limit the amount of television you watch to an average of at most 2 hours per week during an 8-week period. How many
    7·1 answer
  • How many real solutions does j2+75=0
    8·1 answer
  • What is the answer for Q2ii!!?? Thank you!
    5·1 answer
  • A phone company offers two monthly plans. Plan A costs $11 plus an additional $0.16 for each minute of calls. Plan B costs $29 p
    12·1 answer
  • Examine the equation.
    9·2 answers
  • Solve the system. x + y = 8 2x2 – y = –5 Add the equations
    15·2 answers
  • Reduce to simplest form. - 3/5 + 1/3
    9·1 answer
  • Grace was driving down a road and after 4 hours she had traveled 66 miles. At this speed, how many miles could Grace travel in 8
    15·2 answers
  • Does anyone know what 8x+4 = 3x+2?
    10·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!