Checking account a charges a mouthly service fee $23 and wire transfer fee of $7.50 while checking account b charges a monthly service fee of $14 and wire transfer fee of $9.50 which checking account is the better deal if four wire transfers are made per month

Answers

Answer 1

Answer:

Checking account b is the better deal, because the total monthly fees amount to $52, while those for checking account a amount to $53.

Explanation:

Given:

monthly service fee of checking account a = $23

wire transfer fee of a = $7.50

monthly service fee of checking account b = $14

wire transfer fee of b = $9.50

To find:

which checking account is the better deal if four wire transfers are made per month?

Solution:

If four wire transfers are made per month then total monthly fees of both accounts is computed as follows:

Account a:

service fee of a + four wire transfers fee of a

23 + 4(7.50) = 23 + 30 = $ 53

Account b:

service fee of b + four wire transfers fee of b

14 + 4 (9.50) = 14 + 38 = $ 52

From the above results checking account b is the better deal because the total monthly fees amount to $52 while total monthly fees for checking account a amount to $53.


Related Questions

Microsoft ____ is the new web browser.
plz answer this question I would mark your answer brainlist!!!!​

Answers

the answer is microsoft edge not word

how to create a code in pyton to ask the user to enter the number of switches and calculate the possible outcomes that can come from those many numbers of switches(on/off). Please help me with this​

Answers

amount = int(input("How many switches? "))

if amount == 0:

   print("There are no outcomes for 0 switches")

else:

   print("With {} switch(es), there are {} outcomes.".format(amount, 2**amount))

4.9 question 2 edhesive
Anyone know how to do this???

Answers

I've included my code in a picture. I hope this helps!

Answer:

sum = 0

for x in range (20, 91, 10):

   sum= sum + x

   print(sum)

 

Explanation:

PLEASE HELP ME<3

Write a short paper describing the history and differences between Six Sigma, Waterfall, Agile, and Scrum models. Understanding these models can give you a good idea of how diverse and interesting IT development projects can be. Describe what the rationale for them is and describe their key features. Describe the history behind their development.

Search the web for information on these topics and describe where they are most effectively used. The length of the paper should be at least 400 words and should include all three models, their basic definitions, for what kind of projects they are used, and their limitations or drawbacks.

Answers

Answer:

The difference present between the Agile model and Waterfall model are defined as follows:-

The working of the Agile model is done in separate sprints and Waterfall model persist the working in different steps of the process.

The flexibility of the Agile method is better than Waterfall method which is considered rigid.

The working if the agile methodology is the increasing order whereas waterfall method has more sort of sequential order functioning.

The reviewing of the test plan is done after execution of every sprint in agile model whereas the test plan in waterfall method is watched while the functioning in the test phase.

Explanation:

3.4 Code Practice: Question 2

Answers

Answer:

n = float(input("Enter the Numerator: "))

d = float (input("Enter the Denominator: "))

if (d != 0):

  print ("Decimal: " + str(n/d))

else:

  print("Error - cannot divide by zero.")

Which of the following are safety rules when using household chemicals?
A. Never mix household products together B. Keep chemicals in their original bottles C. Turn on a fan or open windows when using household chemicals. D. All of the above

Answers

Answer:

D. All of the above.

Explanation:

Answer:

all of the above

Explanation:

js took the test

discuss two basic types of monitors CRT and LCD give me in short ​

Answers

Difference Between CRT Monitor and LCD Monitor is that CRT monitor is a desktop monitor that contains a cathode-ray tube. ... While An LCD monitor is a desktop monitorthat uses a liquid crystal display to produce images. These monitorsproduce sharp, flicker-free images

4.5 Code Practice


Write a loop that inputs words until the user enters STOP. After each input, the program should number each entry and print in this format:

#1: You entered _____
When STOP is entered, the total number of words entered should be printed in this format:

All done. __ words entered.

Sample Run
Please enter the next word: cat
#1: You entered cat
Please enter the next word: iguana
#2: You entered iguana
Please enter the next word: zebra
#3: You entered zebra
Please enter the next word: dolphin
#4: You entered dolphin
Please enter the next word: STOP
All done. 4 words entered.

Answers

In python 3:

i = 0

while True:

   word = input("Please enter the next word: ")

   if word == "STOP":

       break

   i += 1

   print("#{}: You entered {}".format(i, word))

print("All done. {} word(s) entered.".format(i))

I hope this helps!

The program is an illustration of loops.

Loops are used to perform repetitive operations.

The program in Python, where comments are used to explain each line is as follows:

#This gets input for the first word

word = input("Please enter the next word: ")

#This initializes count to 0

count = 0

#The following iteration is repeated until the user enters "STOP"

while word != "STOP":

   #This prints the word entered

   print("You entered",word)

   #This increments count by 1

   count += 1

   #This gets input for the next words

   word = input("Please enter the next word: ")

   

   

#This prints the count of all words

print("All",count,"words entered!")

At the end of the program, the number of valid inputs is printed.

Read more about similar programs at:

https://brainly.com/question/18283451

A folder is one icon considered a short cut true or false

Answers

Answer:

True

Explanation:

A shortcut can be an icon that points to a certain app or website.

Tim is trying to explain to his aunt how her computer works, but she does not understand what a CPU does. Which description will most likely help Tim’s aunt understand the CPU’s role?

Answers

Answer:

CPU is considered as the brain of the computer. CPU performs all types of data processing operations. It stores data, intermediate results, and instructions (program). It controls the operation of all parts of the computer.

Explanation:

Answer:

The CPU processes commands from software.

Explanation:

Learned on edge

what is Mainframe computer​

Answers

Answer:

A Mainframe computer, informally called an mainframe or big iron, is a computer used primarily by large organizations for critical applications, bulk data processing such as the census and industry and consumer statistics.

How can you ensure that messages from a trusted email address will not be identified as spam or junk email?
Add the message to the Safe Senders list.
Add the message to the Safe Recipients list.
O Right-click the message, and select Move to the Saved folder.
O Right-click the message, and select Move to the Archive folder.

Answers

Answer: A, Add the Message to the safe senders list.

Explanation: I just did the assignment.

Answer:

Answer shown in image below

Or

*Add message to the Safe Senders List*

Explanation:

Edge 2021

Plz click the Thanks button!

<Jayla>

What is the purpose of a computer toolbar?

A. To alphabetize programs
B. To hold frequently used icons
C. To organize files
D. To view all files in the computer

Answers

Answer:

B

Explanation:

In computer interface design, a toolbar (originally known as ribbon) is a graphical control element on which on-screen buttons, icons, menus, or other input or output elements are placed. Toolbars are seen in many types of software such as office suites, graphics editors and web browsers.

The purpose of a computer toolbar is to hold frequently used icons. The correct option is B.

What is toolbar?

A Toolbar is a group of buttons or icons which are the integral part of the window or any software program's interface. Toolbar of the software program's interface has all commands under the menu bar.

In the computer interface, a toolbar has on-screen buttons, icons, menus. Toolbars are available in office suites, graphics editors and web browsers.

Thus, the purpose of a computer toolbar is to hold frequently used icons. The correct option is B.

Learn more about toolbar.

https://brainly.com/question/11496721

#SPJ2

(HELP!!!) Which of the following is true about a low-level language?

Select two answers:

Difficult for machines and humans to parse

Relatively easy for humans to write

Less readable by humans than other languages

Guaranteed to be unambiguous

Answers

Answer:

d and b i think

Explanation:

sorry if im wrong :l

Answer:

A and B

Explanation: It's on google if you do your research.

1What kind of rules protect everyone’s rights when we use each other’s content

2What are two example of intelectual property

Answers

Answer:

1. Copyright.

2. Songs and books.

Explanation:

A copyright law can be defined as a set of formal rules granted by a government to protect an intellectual property by giving the owner an exclusive right to use while preventing any unauthorized access, use or duplication by others.

For example, when an individual downloads a song owned by any record company without paying a purchase fee, it is a violation of copyright law.

A copyright can be defined as an exclusive legal right granted to the owner of a creative work (intellectual property) to perform, print, record, and publish his or her work. Also, the owner is granted the sole right to authorize any other person to use the creative work.

Hence, copyright is a kind of rules that protect everyone’s rights when we use each other’s content.

An intellectual property can be defined as an intangible creation of the human mind, ideas, thoughts or intelligence. Some examples of an intellectual property are songs, books, poems, technology, design etc.

How do you activate the Slicer Tools contextual tab?
Select a PivotTable and it will appear.
Select a slicer and it will appear.
Click Slicer and then Options.
It is found under the PivotTable commands.

Answers

Answer:

Select a slicer and it will appear.

Explanation:

i did it

You can activate the Slicer Tools contextual tab by selecting a slicer and it will appear. Thus, the correct option for this question is B.

What do you mean by the Slicer tool?

The Slicer tool may be characterized as a type of tool that significantly provides buttons that you can click to filter tables or PivotTables. In addition to quick filtering, slicers also indicate the current filtering state, which makes it easy to understand what exactly is currently displayed.

According to the context of this question, if you want to use the slicer tool in excel, select Insert > Slicer. After selecting a slicer it will automatically appear on the computer screen followed by selecting the fields you'd like to filter.

Therefore, you can activate the Slicer Tools contextual tab by selecting a slicer and it will appear. Thus, the correct option for this question is B.

To learn more about Slicer tools, refer to the link:

https://brainly.com/question/19717692

#SPJ5

What process should be followed while giving a reference?
sam

Answers

Keep the information factual. Avoid opinions about issues such as personal conflicts
Qualify what you say. For example, “It was our experience or “In this situation
Make your praise specific. ...
Refer to specific tasks or projects
Avoid examples that highlight a candidate's weaknesses.

what is the 3rd streak fun fact from brainly

Answers

Answer:

it is something like you life time saliva can fill up two swimming pools i think

Answer:

During your lifetime, you will produce enough saliva

What is the term used to describe the basic unit of data passed from one computer to another?

message

packet

package

transmission

Answers

Answer:

transmission

Explanation:

What is the special set of characters that indicates the start and end of an HTML element and that element's type?

Answers

the answer is HTML Tag

The HTML tag ..........

Lisa intends to use the Hide command on a column in her spreadsheet. How are the cells in this column affected by this command?
A) The data in all of the cells is deleted.
B) The data in only some of the cells is deleted.
C) The cells can no longer be referenced in functions or formulas.
D) The cells can still be referenced in functions or formulas.

Answers

Answer:

D

Explanation:

Answer:

D Because it's all about the functions

Employees at the Red Bluff Golf Club & Pro Shop have the opportunity to become certified trainers if they log enough hours. Aleeta would like to know which of her employees are certified. On the EmployeeAnalysis worksheet, in cell D5, enter a function that will return the text Certified if the number of training hours completed is 50 or more, otherwise return the text Not Certified. AutoFill the function down through cell D9. Club members get a 10% discount off all items in the Pro Shop. Aleeta wants to keep track of these discounts. On the Transactions worksheet, in cell I10, enter a function that will return 0.07 if the customer is a member, otherwise return a blank value (""). Use the fill handle to copy the formula down through cell I30.

Answers

Answer:

Following are the solution to this question:

Explanation:

Some of the data is missing in the question, which is defined in the attached file. Please find it.

Follows are the formula which is used in the question:

EmployeeAnalysis Worksheet IF(C5>49,"Certified","Not Certified") Transactions Worksheet IF(F10="No","",0.07)

In the first condition, it checks "C5" is greater than 49 if the condition is true, it will give "Certified" otherwise, it will give "Not Certified".

In the second condition, it checks "F10" is equal to "No" if the condition is true, it will give a blank or space otherwise, it will give "0.07".

Create a summary of no less than 125 words of a show that would NOT go over well with television producers because it is targeted to people in the least desirable groups. Include the title of the show, the main characters, and a description of the show's premise. Explain why this show would NOT go over well with television producers.

Answers

Answer:

Follows are the solution to this question:

Explanation:

Its Mid is also an American drama about a Kentucky-based middle-class family who've been struggling to live in an impoverished house, home and earn children on even a daily basis. Mike and Frankie, both live in Orson, Indiana, were mid-aging adults. Users got three kids named Axl, Sue, and Brick. Michael was its owner of a local quarry as well as Frankie, the seller of a motorcycle. It was great for Scriptwriters since it is related to America's many households, a middle and upper-class family. Despicable is an American dramedy about an impoverished and unstable Chicago family.

It among participants is Frank, Gallagher's dad, but Fiona, their household's oldest son, as she actual mom Monica goes up and down as she likes. The other five children of Gallagher are Lips, Yan, Debbie, Lori, and Liam.

Frank is an alcoholic, but Fiona works very hard and provides for her sisters and brothers. It is not used for scriptwriters, because it is related to the poor and victims of abuse of drugs, which aren't considered "wanted." Since that concerns an "unwanted" listeners, its show was indeed a success.

Write a program to find the total ASCII value of vowels in a given string (one word / a phrase / a sentence). The ASCII value of vowels in the given string is calculated by adding the ASCII value of all the vowels in the string. Also, display the individual count of each vowel( number of times each and every vowel appears in the string.

Answers

In python 3:

def vowelAscii(txt):

   vowels = "aeiouAEIOU"

   total = 0

   lst = ([])

   for i in txt:

       if i in vowels:

           total += ord(i)

           if i not in lst:

               lst.append(i)

               print(f"{i} appears {txt.count(i)} time(s) in the string with an individual ASCII value of {ord(i)}")

   return f"The total ASCII value of the vowels in {txt} is {total}."

print(vowelAscii("hello, I'm learning python"))

This is what I managed to come up with. The last line is testing the function. If you need anymore help, just ask. Best of luck.

Computers that are connected to each other, but not to the internet,
configured according to which network?
plzz this due today

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

Computers that are connected to each other, but not to each other - is an intranet.

Because in intranet computers are connected to each other within an organization and don't connect to the internet. In the intranet, computers don't access globally. For example, in banking, the banking system can be accessed within the organization but not from outside as on the internet.

While it is noted that the Internet is a globally-connected network of computers that enables people to share information and communicate with each other. An intranet, on the other hand, is a local or restricted network that enables people to store, organize, and share information within an organization.

A researcher wants to publish the results of a study in an open access journal. Which of the following is a direct benefit of publishing the results in this type of publication?


The researcher can allow the results to be easily obtained by other researchers and members of the general public.




The researcher can better anticipate the effect of the results and ensure that they are used responsibly.



The researcher can ensure that any personal information contained in the journal is kept private and secure.


The researcher can prevent copies of the research from being accessed by academic rivals.

Answers

Answer:

A. The researcher can allow the results to be easily obtained by other researchers and members of the general public.

Explanation:

An open access journal can be defined as a publishing model or principles which typically involves publishing scholarly articles or research papers free of charge and devoid of any access barrier to the general public.

The main purpose of an open access journal is to make scholarly articles or research papers available to the general public or other researchers without paying for subscriptions or getting licenses.

In this scenario, a researcher wants to publish the results of a study in an open access journal. Therefore, the direct benefit of publishing the results in this type of publication is that, the researcher can allow the results to be easily obtained by other researchers and members of the general public.

People often publish their works on journals. The direct benefit of publishing the results in this type of publication is that;

The researcher can allow the results to be easily obtained by other researchers and members of the general public.What is open access publication in research?

Open access is known to be a publishing model that is meant for scholarly communication. It is known to makes research information readily available to readers at no cost per charge.

It is different  from traditional subscription model where readers have access to scholarly information only through paying a subscription fee.

Learn more about  open access publication from

https://brainly.com/question/8913038

The individual pages on a website should maintain a consistent layout and style from one page to the next.
True or False

Answers

Answer:

I think they should.

Explanation:

It would be very confusing for people using the website to go from one page to the next and have the two pages look completely different.

Answer:

True

Explanation:

I WILL GIVE BRAINLIEST TO WHO ANSWERS FIRST AND CORRECTLY.
Use this option to view your presentation as your audience will see it.

File menu
Play button
Slide Show button
Tools menu

Answers

You would need to use the slide show button.

Answer:

It's either slide show button or the play button

Explanation:

URGENT PLEASE HELP!!!!!
Which rule of composition gives an illusion of movement or context?
A. the rule of odds
B. the rule of three
C. the rule of space
D. simplification

Answers

Answer:

Answer:

C. the rule of space

Answer:

The answer is NOT D. simplification. I took the test and got this wrong, my next guess of what it could be would be C. the rule of space.

I hope that this was helpful to you! :)

what aspect should you consider before adding pictures to documents

Answers

Answer:

make sure you have the correct picture

Explanation:

it might vary to what document your working on

Other Questions
123.456 RONDED TO THE NEAREST HUNDREDTH. Determine the x- and y-intercepts of the graph of y =graph of Y = 1x 2 Which answer choice best explains why nuclear reactions release more energy than chemical reactions? Electrostatic forces of repulsion are thousands of times stronger than gravitational forces. Gravitational forces are thousands of times stronger than electrostatic forces of repulsion. The force that binds together protons and neutrons is stronger than the force that attracts and repels protons and electrons. The force that attracts and repels protons and electrons is stronger than the force that binds together protons and neutrons. The speed of a car is decreasing from 35 m/s to 15 m/s in 4s Which set contains the value below?50A.irrational B.Natural C. rational D.Integers Explain the New Jersey Plan. Why was it introduced at the Constitutional Convention? What states benefited from this plan? A model rocket is shot directly upward, rises to its maximum height and then returns to its launch position in 10.0 s. Assuming free fall conditions, what was the rocket's initial upward velocity?a. 98.0 m/sb. 123 m/sc. 24.5 m/sd. 49.0 m/s PLZZZZZZZZZZZZZZZ HELP I SICK AND TRIED OF BEING SKIP ON I GAVE ALL MY POINTS AWAY FOR THIS QUESTION3. What other inferences (conclusions) can you draw from the graph?4. Which species of livestock had the largest population in 1500? Which species had the largest population by the end of 1590?5. What conclusions can you draw about livestock growth? 18 Which expression uses the greatest common factor and distributive property to write 18 + 24 as a product? 1. What does MAIN stand for? where in water is being converted into a gaseous form?evaporation condensation transportation precipitation Ano ang mitolohiya? The _______ base is the foundation for everything?A- PainB- AerobicC- Explosive effort A screamingly good science lesson question and answer 2. Which of the following will have no effect on the reaction time of a person driving anautomobile?ageof the driverb) Distractions in the environmentc) The speed of the automobiled) Talking on a cell phone while drivinga) The PLS HELP! What are the missing parts that correctly complete the proof? Given: Point P is on the perpendicular bisector of segment A B. Prove: Point P is equidistant from the endpoints of segment A B. Art: A horizontal line segment A B with X as the midpoint is drawn. A vertical line X P is drawn. P is above the horizontal line. The angle P X B is labeled as a right angle. The line segments A X and B X are labeled with a single tick mark. A dotted line is used to connect point P with point A. Another dotted line is used to connect point P with point B. Drag the answers into the boxes to correctly complete the proof. What is the best description of Buck's character, based on this excerpt? 1. Buck is peaceful and content. 2. Buck is strong and aggressive.3. Buck is instinctive and clever. 4. Buck is easygoing and mellow. Which achievements of Ramses II brought positive changes to Egypt? Choose five correct answers.signing peace treatiesstoring food surpluses due to the annual flooding of the Nile Riverdestroying temples and government buildingsdiscouraging higher educationruling for a long period of timerebuilding trade routesgrowing and expanding the economy Only do first 4 questions I will give brainlist Whats the 4 terms of the sequence defined by the rule f(n)=n+10