Enthusiasm codehs 7.6.4 Write a function called add_enthusiasm that takes a string and returns that string in all uppercase with an exclamation point added.

Answers

Answer 1

Answer:

Hope this help

Explanation:

def add_enthusiasm(string):

   return string.upper() + "!"

   

print add_enthusiasm("hello")


Related Questions

What is the main difference between a generator and an electric motor?​

Answers

Answer:

b

Explanation:

Answer:

An electric motor converts electricity into mechanical energy, providing a power source for machinery. A generator does the opposite of this, converting mechanical energy into electricity.

I don't know why it got deleted but I answered again

Hope it helps.....

Have a great day :P

Given the following class code: public class RecurseSample { public static void main(String[] args) { System.out.println(recurse(3)); } public static int recurse(int n) { int total = 0; if (n == 0) { return 0; } else { total = 3 + recurse(n - 1); } return total; } } What values will be printed when this code is executed?

Answers

Answer:

The output of the given code is "9".

Explanation:

In this question, a class "RecurseSample" inside the class a "recurse" method is declared that holds that holds an integer variable as the parameter, and inside the method a total variable is declared and uses a conditional statement to check the n variable value that is equal to 0 if it is true it will return 0. In the else block it call the method and add value in the total variable, and returns its value. In the main method, the print method is used that prints the above method values.

Here is the API for a robot library.
// moves the robot forward
function moveForward();

// turns the robot to the left
function rotateLeft();

// turns the robot to the right
function rotateRight();

// checks if a robot can move in any direction
// direction {string} - the direction to be checked
// return {Boolean} - true if the robot can move in that direction, otherwise returns false
function canMove(direction);
Which code segment will guarantee that the robot makes it to the gray square without hitting a wall or a barrier (black square)?



A.
B.
C.
D.

Answers

Answer:

hi

Explanation:

Give 3 features and uses of
Desktop
laptop
palmtop computer

Answers

Answer:

A Palmtop or hand-held personal computer is small enough to hold in one hand and operate with the other. Also called a handtop, these ultra-small computers may have specialized keyboards or keypads for data entry applications or have small qwerty keyboards.

• Palmtops are also called PDAs, hand-held computers and pocket computers.

• Palmtop or hand-held personal computer, lightweight, small, battery-powered, general-purpose programmable computer. It typically has a miniaturized full-function, typewriter like keyboard for input and a small, full color, liquid-crystal display for output. In addition to an operating system that is compatible with that of a desktop computer, a palmtop will typically contain a word processor, a spreadsheet program, and a calendar and phone book. A variety of other programs can be loaded and executed, and data can usually be transferred to and from a desktop computer. Although some palmtops are like personal digital assistants in that they accept handwritten or touch screen input, they generally differ in that the palmtop has more memory, a keyboard, and a greater variety of available programs.

Explanation:

What is "public static grossPay()" an example of?



A) Method()


B) Literal()


C) Private()


D) Order()

Answers

Answer:

A) Method()

Explanation:

This is an example of a Java method header. It has the visibility modifier called public which makes it visible to other classes. It is a static method which means it can be only be called through the Class's name because an object instance of it cannot be created. It is named grossPay and has no parameters and does not return any type.

NEED ANSWERS ASAP 50 POINtTS!!!!
Katie wants to use VLOOKUP for a column in a table. Which value of the mode parameter should she use to look for an exact match of the searched data?
Katie should use the __ value of mode parameter for an exact match with the searched data.

Answers

Answer:

The exact match mode is the mode parameter that Katie should use to look for an exact match of the searched data

Further Explanation:

The VLOOKUP function in Excel helps us search for and retrieve information from a particular column in a table and lookups a value in the left-most column of the table. It has two modes of matching.

Exact matching – When you perform a range_lookup, an argument FALSE is defined to mean that there is an exact match of the return value.

To achieve this, select a cell in your Excel worksheet

Type =VLOOKUP in the type bar of the Excel sheet

Select the value to look up and then select the data range

Type the column number that you want to search and then type FALSE

Press enter

Answer:

The exact match mode is the mode parameter that Katie should use to look for an exact match of the searched data

Explanation:

The VLOOKUP function in Excel helps us search for and retrieve information from a particular column in a table and lookups a value in the left-most column of the table. It has two modes of matching.

Exact matching – When you perform a range_lookup, an argument FALSE is defined to mean that there is an exact match of the return value.

To achieve this, select a cell in your Excel worksheet

Type =VLOOKUP in the type bar of the Excel sheet

Select the value to look up and then select the data range

Type the column number that you want to search and then type FALSE

Press enter

Which of the following items are not a
component of a graphical user
interface?
(A) windows
(B) icons
(C) menus
(D) prompts​

Answers

Answer:

D

Explanation:

we dont use prompts on graphical iser

Prompts​ following items are not a component of a graphical user interface.

What is Graphical user interface?

A mouse is used to interact with a graphics-based operating system interface, which uses menus and icons to govern user interaction. The Xerox GUI was made popular in the 1980s by the Apple Macintosh.

However, Microsoft Windows, the company's GUI, has since become the standard user interface for personal computers. At the time, Microsoft's operating system, MS-DOS, required the user to input particular commands (PCs).

A graphics library, an interface toolkit, an interface style guide, and standardized applications make up a complete GUI environment. A high-level graphics programming interface is offered by the graphics library.

Therefore, Prompts​ following items are not a component of a graphical user interface.

To learn more about Graphical user, refer to the link:

https://brainly.com/question/14758410

#SPJ2

this not a queston but a warning

if you see a tnyInk link DO NOT DOWNLOAD THE FILE IN IT they most likley contain malware and if you see that link in a comment report it please it will help. and also show this to your freinds or someone.

Answers

okay. epic swag man. z

how can you send and share a message information through a phone​

Answers

Answer:

Through text message

Explanation:

Go to messages and select the text you want to share and save it to your clipboard then go to the person you want to send it to then hit the clipboard button and your text will be there.

Through text messages

Go to messages and select the text you want to share and save it to your clipboard then go to the person you want to send it to then hit the clipboard button and your text will be there!

I really need help in this!!!

Type the correct answer in each box. Spell all words correctly.

How does an employer judge a candidate?

The employer judge's the candidate's ________ for a job.

Answers

Answer:

An employer always looks over a candidate's resume (pronounced "reh-zoo-may" before deciding to hire them.

Explanation:

how to use function in python

Answers

Answer:

Use the keyword def to declare the function and follow this up with the function name.

Add parameters to the function: they should be within the parentheses of the function. ...

Add statements that the functions should execute.

Help!!!!!!
please
Who will give the answer I'll mark him/her as brainlist..​

Answers

17, 12.5, 6, and 10. HOPE THIS HELPS

x = 0
while x < 4:
print(x)
x += 1
Make it a for loop

Answers

Answer: Here you go :)

Explanation:

x = 0

for n in range(4):

  print(x)

1) "Information systems are revolutionizing the way businesses function in the 21st century," Do you agree or disagree with this statement? Provide evidence to support your position, (2 points)​

Answers

Answer:

true

Explanation:

everything is computerized. banks, shopping, financial business records, ect

When you insert a copy of Excel data into a Word document the data is __________ in the Word document

Answers

Answer:

I don't know if I get a chance to get through

Brainliest for correct answer :)
a. X = A NOR B
b. X= NOT (A OR B)
c. X = A OR B

Answers

the answer is A, the logic circuit is a NOR

An example of software is a

Answers

Answer: false

Explanation:

while
norma
mean
cinta
to the user
a.) Define the term microcomputers.​

Answers

Explanation:

Microcomputers are computers designed around a microprocessor, smaller than a minicomputers or a mainframes.

Hope it will help :)❤

HELP MY TABLET KEEPS ON REBOOTING I TRIED TO FACTORY RESET BUT IT KEEPS ON REBOOTING

Answers

Answer: try to restart It

Explanation:Random reboots can happen because of problems with the firmware, but can also be due to some app you installed that is making the system unstable, or perhaps some bad bit of data that is in the system cache. A corrupt SD card can also cause problems.

Answer: it most likely a thrid party app that is causing this

Explanation: Random restart problems are sometimes caused by a bad third party app. To check if that's the case here, try running your tablet on safe mode and observe. If it works normally and won't restart on safe mode for some time, that can mean that an app is causing the trouble.Mar 6, 2021

A cell is the intersection of a row and a column, identified by a letter and number.

True or false

Answers

Answer: True

hello how are you

Answer: True hope it helps

Most wires are covered in rubber to insulate them and keep people safe from electricity and heat true of false

Answers

Answer:

I think it is true...

Explanation:

Hope its right

I need help please and thank you

Answers

Answer:

Explanation: For "BEST way to handle the situation," try Option 1, because it would possibly help them or make the Technical Support Representative do less work.

For "WORST way to handle the situation," Option 4 would be the best because you're basically just hanging up on the person.

What is the purpose of the website directory provided by the website host?

A. to look up user account information
B. to provide help and training for new customers
C. to store all of a website’s content files
D. to archive website usage logs

Answers

Answer:

mabye A

Explana

.

.

.

Each menu title in an application does not need to have a unique access key.

Answers

Answer:

Explanation:

True

Using cell references enter a formula in B6 to calculate monthly payments for the loan described in this worksheet Omit the optional arguement use a negative value for pv

Answers

Answer:

= PMT(B4/B2, B2 * B3, B1)

Explanation:

The syntax to use is:

= PMT(Rate,NPER, PV)

To answer this question, the following assumptions will be made.

B1 = Present Value i.e. PV

B2 = Number of Payment Period i.e n

B3 = Duration (in years)

B4 = Rate

So, the formula to enter in B6 is:

= PMT(B4/B2, B2 * B3, B1)

The above formula will return the monthly payment in cell B6

Activity in September 2014, the Federal Bureau of Investigation (FBI) announced that is next generation Idenufication system was fully functional The FBI named it the integrated Automated Fingerprint Identification system (IAFIS), Conduct online research on this system and answer the following questions 1. Which elements can be stored in IAFIS? 2. What is the response time of this system? 1. How has this system benefited the FBI​

Answers

Answer:

(Answers may vary.)

In addition to fingerprints, IAFIS stores criminal histories, mug shots, and physical information like scars, tattoos, eye color, hair color, weight, and height. It also stores fingerprints of individuals who are or were employed by the US military and the federal government.

The system’s average response time for criminal fingerprint processing is about 27 minutes. Civil fingerprint processing takes over an hour.

Previously, the tenprint submission and identification was a manual, tedious process. It took the FBI weeks or months to process a single fingerprint submission. IAFIS has automated this process and added advanced identification capabilities. The submission and processing takes just few minutes. This has helped the FBI solve and prevent crime and tighten holds on criminals and terrorists.

Explanation:

In the Business world people are often measured by their???
A- soft skills
B- hobbies
C- iq
D- technical skills

Answers

Answer:

D

Explanation:

You need skills to succeed!!

Answer is D !!!!!!!!

Can someone tell me how to hit on a link on Brainly to see the answer

Answers

no, please do not hit on links. they're viruses i'm pretty sure.
Make sure to report the answer just in case

Can someone please answer these, I'm tired of wasting points on questions that no one answers.

Describe the respective benefits of participatory design and contextual design, with examples of situations in which each might be preferred.

Outline which activities involve mathematical reasoning skills..

Explain the most appropriate methods to use in designing a product for the user in the following scenario, including aspects of the user interface that might need special attention.
Situation: A researcher approaches a designer with a request for a computer interface that will allow the evaluation of the ways children process spatial relationships and the various changes as they learn and develop. The computer interface will not have to perform any task but to play visual spatial games, recording and analyzing all elements in how children between the ages of 2 and 5 manipulate visual objects on a screen.

Answers

What format do you need it in?

9. A convex lens of focal length 8 cm forms a real image of the same size as th
object. What will the distance between the object and its image be:
1) 32cm
2) 8cm
3)16cm
4)24cm​

Answers

Answer: 32cm

Explanation:

Since the focal length of the convex lens is 8cm, the distance between the object and its image be 4f which will be:

= 4 × f

= 4 × focal length

= 4 × 8

= 32cm

The distance between the object and its image is 32cm.

Other Questions
5Select the correct answer from the drop-down menu.Read the excerpt. Then choose the correct way to complete the sentence.To Thoreau, the underlined sentence in this paragraph representsan unjust government.ResetNext How could this outline be improved to be moreeffective?It should be revised to mention the main topic.It should include a recommendations section.It should include key findings related to the topic.It should be organized into an effective structure. What is the answer to this problem in the photo Without doing a Punnett square, predict what percentages ofoffspring the cross among a heterozygous slipper footedpigeon and a non-slipper footed would create: A 50-year-old male patient arrives in the emergency department complaining of severe chest pain. He is taken to the cardiac cath lab for a coronary angiogram and left ventriculogram. The cardiologist discovers a lesion in the left main coronary artery branch and orders an immediate CABG. Why does the location of this lesion make it more dangerous than lesions in other locations? Where do most volcanoes form? A. Near plate boundaries B. In the middle of tectonic plates C. Where there is no plate movement D. On a supercontinent 24) A chili recipe includes 2 tablespoons of salt and 5 tablespoons of red pepper. Choose ALL statements that are true about this relationship. A) There is 5/ 2 tablespoon of salt for each tablespoon of red pepper. B) There is 2 5 tablespoon of red pepper for each tablespoon of salt. C) There is 2/ 5 tablespoon of salt for each tablespoon of red pepper. Eliminate D) The recipe has a ratio of 5 tablespoons of red pepper to 5 tablespoons of salt. E) The recipe has a ratio of 5 tablespoons of red pepper to 2 tablespoons of salt. A number is added to 12, and the result divided by 2. the answer is the same as you get by subtracting the number from 4. what is the number? Which expense makes up the biggest part of the state's budget? Which expense makes up one of the smallest parts of the budget? How much money from the budget was spent on public safety in 2011? How much money from the budget was spent on human services in 2011? 23Name the positions of the presiding officers of the House of Representatives and the Senate.Explain which one has more power In late 2020, the Nicklaus Corporation was formed. The corporate charter authorizes the issuance of 6,000,000 shares of common stock carrying a $1 par value, and 2,000,000 shares of $5 par value, noncumulative, nonparticipating preferred stock. On January 2, 2021, 4,000,000 shares of the common stock are issued in exchange for cash at an average price of $10 per share. Also on January 2, all 2,000,000 shares of preferred stock are issued at $20 per share.Required:1. Prepare journal entries to record these transactions.2. Prepare the shareholders' equity section of the Nicklaus balance sheet as of March 31, 2021. (Assume net income for the first quarter 2021 was $1,750,000.)Part BDuring 2021, the Nicklaus Corporation participated in three treasury stock transactions:On June 30, 2021, the corporation reacquires 250,000 shares for the treasury at a price of $12 per share.On July 31, 2021, 25,000 treasury shares are reissued at $15 per share.On September 30, 2021, 25,000 treasury shares are reissued at $10 per share.Required:1. Prepare journal entries to record these transactions.2. Prepare the Nicklaus Corporation shareholders' equity section as it would appear in a balance sheet prepared at September 30, 2021. (Assume net income for the second and third quarter was $3,250,000.)Part COn October 1, 2021, Nicklaus Corporation receives permission to replace its $1 par value common stock (6,000,000 shares authorized, 4,000,000 shares issued, and 3,800,000 shares outstanding) with a new common stock issue having a $0.50 par value. Since the new par value is one-half the amount of the old, this represents a 2-for-1 stock split. That is, the shareholders will receive two shares of the $0.50 par stock in exchange for each share of the $1 par stock they own. The $1 par stock will be collected and destroyed by the issuing corporation.On November 1, 2021, the Nicklaus Corporation declares a $0.18 per share cash dividend on common stock and a $0.35 per share cash dividend on preferred stock. Payment is scheduled for December 1, 2021, to shareholders of record on November 15, 2021.On December 2, 2021, the Nicklaus Corporation declares a 1% stock dividend payable on December 28, 2021, to shareholders of record on December 14. At the date of declaration, the common stock was selling in the open market at $10 per share. The dividend will result in 76,000 (0.01 7,600,000) additional shares being issued to shareholders.Required:1. Prepare journal entries to record the declaration and payment of these stock and cash dividends.2. Prepare the December 31, 2021, shareholders' equity section of the balance sheet for the Nicklaus Corporation. (Assume net income for the fourth quarter was $2,750,000.)3. Prepare a statement of shareholders' equity for Nicklaus Corporation for 2021. how can you see condensation in your kitchen (sorry for the subject btw) A wildfire destroys most of the plant life in a forest. What would most likely happen to the animals that lived in the forest? A(n) -Select- is a long-term contract under which a borrower agrees to make payments of interest and principal on specific dates. There are four main types reflecting who the issuers are: -Select- , corporate, state and local government, and foreign. Each type differs with respect to -Select- and expected return. All have some common characteristics even though they may have different contractual features. PLEASE HELP ME NO LINKS I AM BEGGING U !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 1 Anthony purchased a car for $9,400. He paid 6.5% sales tax. How much tax did he pay? 3 reasons gun control is not the solution to our countrys voilence issue, or three reasons why it is? g You are given a 1.25 gram mixture of calcium nitrate and calcium chloride. You dissolve this mixture in 200.0 mL of water and add an excess of 0.300 M silver nitrate. You collect and dry the white precipitate which forms and find it has a mass of 0.535 grams. Calculate the percent calcium chloride by mass in the original mixture. Amy needs to order a shade for a triangular-shaped window that has a base of 6 feet and a height of 8 feet. What is the area of the shade? The area of the shade is ft2. A construction worker transfers 6000000 J in a n 8 hour day of work. What is their average power output? just need a quick answer with the working, thanks