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
lidiya [134]
3 years ago
12

Given three floating-point numbers x, y, and z, output x to the power of z, x to the power of (y to the power of z), the absolut

e value of (x minus y), and the square root of (x to the power of z). Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('{:.2f} {:.2f} {:.2f} {:.2f}'.format(your_value1, your_value2, your_value3, your_value4))Ex: If the input is: 5.0 1.5 3.2 Then the output is: 172.47 361.66 3.50 13.13
Computers and Technology
1 answer:
STALIN [3.7K]3 years ago
6 0

Solution :

x = float_(input())

y = float_(input())

z = float_(input())

res1 = x**z

res2 = x**(y**z)

res3 = abs(x-y)

res4 = (x**z)**0.5

print('{:.2f} {:.2f} {:.2f} {:.2f}'.format(res1,res2,res3,res4))

Output is :

5.0

1.5

3.2

172.47 361.66 3.50 13.13

You might be interested in
They predicted another cold day in Seattle. They predicted another windy day in Seattle. Combine the sentences into one sentence
VLD [36.1K]

Answer:

They predicted another cold day in Seattle and another windy day in Seattle.

4 0
3 years ago
Rachelle's computer has frequent system crashes and it takes a long time to access files and folders. What hardware component is
9966 [12]
System crashes, viruses and fragmented file systems are hallmarks of Windows systems, but your teacher is probably looking for Hard Drive for the answer.
8 0
3 years ago
Discovery of user requirements, existing system evaluation, and logical system design are part of the _____ phase of the Systems
natulia [17]

Answer:

analysis

Explanation:

4 0
2 years ago
Web-based e-mail like Hotmail is an example of three-tier client-server architecture that provides access to e-mail messages. Tr
Ksju [112]

Answer:

True

Explanation:

The are two client-server architectures, they are, two-tier and three-tier client-server architectures. The two-tier has two layers of communication, they are the presentation and data processing layers. The three-tier architecture adds a third layer called application logic to the middle. The layers can also be called access, distribution and core layers respectively.

Hotmail is a web based emailing system that is designed following the three-tier client-server architecture. It was launched by Microsoft in 1996 and provides users with access to emails with segment core access.

7 0
3 years ago
Programmers refer to programs that contain meaningful names as ____. AnswerThe answer is: Programmers refer to programs that con
andreyandreev [35.5K]
Self documenting, we also make comments.
3 0
3 years ago
Other questions:
  • Is bit stuffing necessary in the control or address field in theHDLC protocol? why?
    13·1 answer
  • ​A(n) ________ database makes it possible to store information across millions of machines in hundreds of data centers around th
    14·1 answer
  • Which of the following can you use to attach external hardware devices to a computer?
    11·2 answers
  • Which of the following is not a web browser? A. safari B. explorer C. chrome D. google​
    12·2 answers
  • What are some options available in the Spelling and Grammar Checker in word?
    6·1 answer
  • Dang was accepted to a biology program with a rigorous schedule and a high tuition, but good professors. What would be a benefit
    10·2 answers
  • Monitors display images by using a grid made up of millions of tiny dots, called ________.
    13·1 answer
  • Union Carbide accident safety policies and procedures were not followed was due to
    14·1 answer
  • Which attribute defines the file name for the specific image in an image tag??
    13·1 answer
  • Yusuke has been a fan of online games for as long as she can remember. She particularly loves the role-playing games that allow
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!