a bank charges $10 per month plus the following check fees for a commercial checking account: $.10 each for fewer than 20 checks $.08 each for 20-39 checks $.06 each for 40-59 checks $.04 each for 60 or more checks the bank also charges an extra $15 if the balance of the account falls below $400 (before any check fees are applied). write a program that asks for the beginning balance and the number of checks written. compute and display the bank's service fees for the month. input validation: do not accept a negative value for the number of checks written. if a negative value is given for the beginning balance, display an urgent message indicating the account is overdrawn.

Answers

Answer 1

Banks are not permitted to charge interest on this kind of account under Regulation Q of the US Federal Reserve. Instead, banks issue earnings credits based on the average account balance.

What is commercial checking account?

Any sort of bank account utilized by corporations and enterprises is referred to as a commercial account. A commercial account is typically a checking or other demand deposit account, which allows for unlimited money withdrawals. Compared to retail accounts, commercial accounts often have higher monthly service fees and other costs. Retail accounts, which are handled online or in a nearby branch, are a type of consumer banking or personal banking. Typically, businesses with commercial banking accounts are allocated a business representative.

#include <iostream>

using namespace std;

int main()

{

int balance;

int cw;

int fee1;

int fee2;

int totalfee;

cout<<"enter the beginning programology balance"<<endl;

cin>>balance;

cout<<"enter the check written "<<endl;

cin>>cw;

if(balance<400)

{

fee1=15;

}

else

{

fee1=0;

}

if(cw<=20)

{

fee2=(10*cw);

//programology.

}

else if(cw>20 && cw<=39)

{

fee2=(8*cw);

}

else if(cw>39 && cw <=59)

{

fee2=(6*cw);

}

else if (cw >=60)

{

fee2=(5*cw);

}

totalfee=fee1+fee2;

cout<<"your total fee is ="<<totalfee<<endl;

cout<<"check fee is ="<<fee2<<endl;

cout<<"programology says yeah its  low fee balance ="<<fee1<<endl;

}

To know more about commercial checking account, visit

https://brainly.com/question/20716129

#SPJ4


Related Questions

Which of the following is true of a NOT truth table?
a. The statement will only be true if both statements are true.
b. In order for to be true, one or both of the original statements has to be true.
c. All of these answer choices are correct.
d. The statement that contradicts the first input value and has the opposite truth value or output.

Answers

A statement which is true of a NOT truth table is: D. The statement that contradicts the first input value and has the opposite truth value or output.

What is a truth table?

A truth table can be defined as a mathematical table that comprise rows and columns, which is used in logic to show whether or not a compound ststement is true or false.

In Science, there are different types of truth table and these include the following:

AND truth tableOR truth tableNOT truth table

This ultimately implies that, a statement that contradicts the first input value and it has the opposite truth value or output denotes a NOT truth table.

Read more on NOT operator here: https://brainly.com/question/8897321

Which test is the best indicator of how well you will do on the ACT

Answers

Answer:

The correct answer to the following question will be "The Aspire test".

Explanation:

Aspire seems to be a highly valued technique or tool that would help parents and teachers take measurements toward another excellent 3rd-10th grade ACT assessment test.

The Aspire test measures academic achievement in five aspects addressed either by ACT quiz such as:

EnglishMathReadingScienceWriting.

So that the above is the right answer.

what is database management?​

Answers

Answer:

Database management is the process of organizing, storing, retrieving, and protecting data using a database management system (DBMS). The DBMS is a software application that enables users to interact with the database and manage data efficiently.

Database management involves designing the database schema, creating tables and fields, defining relationships between tables, and ensuring data integrity by enforcing constraints and validation rules. It also involves querying the database using SQL or other programming languages, updating or deleting data, and creating reports or visualizations of data.

Python help!
Input a grade level (Freshman, Sophomore, Junior, or Senior) and print the corresponding grade number [9-12]. If it is not one of those grade levels, print Not in High School.
Hint: Since this lesson uses else-if statements, remember to use at least one else-if statement in your answer to receive full credit
Sample Run 1
What year of high school are you in? Freshman
Sample Output 1
You are in grade: 9
Sample Run 2
What year of high school are you in?
Kindergarten
Sample Output 2
Not in High School

Answers

Answer:

print("What year of high school are you in?")

grade = input()

grade = grade.lower()

if grade == "freshman":

   print("You are in grade: 9")

elif grade == "sophomore":

   print("You are in grade: 10")

elif grade == "junior":

   print("You are in grade: 11")

elif grade == "senior":

   print("You are in grade: 12")

else:

   print("Not in high school")

Explanation:

The first line prints the question. "grade = input()" stores the answer the user will type in the terminal into the variable 'grade'.

grade.lower():

The third line lowercases the entire string ("FreshMan" would turn to "freshman"). Python is case-sensitive.

Then, test the string to see if it matches freshman, sophomore, junior, or senior. If the input string matches print the statement inside the if block. The last statement is the else. It prints if nothing else matches.

Please help me.
I was trying to do something for school and it didn't work. Now, I need to change my Microsoft Word back to English. Any idea how?
Thanks for your help. Cheers!

Answers

Answer:

change it from the microsoft email itself

Explanation:

re install it

All of the following are examples of Broadband Internet Access except:
a 5GWiFi
b Satellite
c Internet.
d TCP/IP
e Fiber Optic.

Answers

All of the following are examples of Broadband Internet Access except TCP/IP.

This is option D

What is broadband internet access?

Broadband internet access refers to high-speed internet access that is faster than traditional dial-up access. It is available via a variety of methods, including DSL (digital subscriber line), cable modem, fiber optic, wireless, and satellite. All of these methods are examples of broadband internet access.

Broadband internet access enables fast data transmission, allowing users to access the internet, stream video and audio content, and download files quickly. It is necessary for many modern applications that require high-speed internet access, such as online gaming, video conferencing, and remote work or learning.

So, the correct answer is D

Learn more about dial-up access at

https://brainly.com/question/3241679

#SPJ11

you've finished programming the app! Now your company has to decide whether to use an open source
license or proprietary license. explain which one you would choose and why.​

Answers

Answer:

Proprietary License gives you full ownership and trademark/patent opportunites. Open source allows for code donation and a community based development for your app. Generally speaking, if your a private entity creating an app for a client, you'll need the Proprietary Licence, which will allow you to sell the codebase to your client.

If your creating an app for your company as itself, you go either way, sell the license in licensing agreements, or have your companies community contribute and better your app from the inside.

Its entirely based on the agreements you set for the app.

Who was responsible for the development of the rocket motor?
-Technical Societies
-Robert H. Goddard
-Germans
-Wernher von Braun
I WILL MARK YOU BRAINLIEST ‼️‼️

Answers

Answer: Robert H. Goddard

Explanation: he developed and flew the first liquid-propellant rocket

Answer:

-Technical Societies

Explanation:

Rocket enthusiasts and rocket clubs were active in Germany, the US, Russia, and other countries. Experimental rockets were designed, tested, and sometimes flown. Some of the experiments used liquid fuel, though solid-fuel rockets were also developed. In 1932, the rocket motor was developed as a reusable method for the flight of a rocket.

if i don't convert type to outlines in illustrator, does the viewer need to have the fonts installed? Yes/No

Answers

Yes, if you don't convert the type to outlines in Illustrator and the viewer does not have the fonts installed on their computer, the text will not display correctly.

This is because when you create text in Illustrator, it uses the fonts installed on your computer to display the characters. If you send the file to someone who does not have those fonts installed, their computer will substitute a different font, which may not match the original design.

However, if you convert the text to outlines, the font is no longer required and the text will be displayed as a graphic, which can be viewed correctly regardless of the viewer's installed fonts. It's important to note that converting text to outlines can make it more difficult to make edits later, so it's recommended to keep a copy of the original file with the live text intact.

Learn more about fonts here:

https://brainly.com/question/14934409

#SPJ11

_____ are online media where active users submit news, photos, and videos often accompanied by a feedback process to identify popular topics.

Answers

Social news websites are online media where active users submit news, photos, and videos, often accompanied by a feedback process to identify popular topics.

These websites typically allow users to vote, comment, and share the content submitted by others. The most popular or trending topics often rise to the top of the website based on user engagement and interactions.

Examples of social news websites include Reddit, Digg, and Slashdot. These platforms rely on user-generated content and community participation to curate and promote news and discussions. Users can submit links or text posts, and the content is then voted on by the community, determining its visibility and prominence on the site.

To learn more about social news websites visit-

https://brainly.com/question/29762863

#SPJ11

i need random facts about bill gates.

Answers

He is the co founder of Microsoft

. ____ is the set of rules that allow an agent to interpret the meaning of those expressions or sentences.
a. Grammar b. Syntax c. Semanticsd. Logic

Answers

c.Semantics is the set of rules that allow an agent to interpret the meaning of those expressions or sentences.

Semantics involves the development of rules and techniques for representing the meaning of words and sentences in a way that can be understood by computers. This includes techniques for identifying synonyms, antonyms, and other relationships between words, as well as developing algorithms for analyzing the structure of sentences and identifying the relationships between words within them.

Semantics is important for allowing computer agents to interpret and understand natural language text.  By developing a set of rules and techniques for interpreting the meaning of expressions or sentences, computer agents can analyze and make decisions based on the content of text in a way that is similar to human understanding.

So the correct answer is c.Semantics.

Learn more about semantics:https://brainly.com/question/14151082

#SPJ11

Solve the following problems in a programming language of your choice. Please submit all your codes, plots, as well as output, in a single pdf document. All your codes and analysis should be your own. Consider the function $(2) = 0.5 - 3.0x +5.87522 -3.25.23 - 1.5+ + 1.0.25. 8. What qualitative difference do you notice about the two plots ? What can you conclude about the accuracy of zg that you estimated ?

Answers

All information that can be measured, counted, or quantified is referred to as quantitative data and is given a numerical value.

In contrast to quantitative data, which is descriptive in nature, qualitative data is expressed in terms of language. The outline of qualitative data

investigation and observation.

Interviews.

either polls or questionnaires.

focus groups, online communities, or forums.

a case study.

Instead of using numerical values to categorize anything, qualitative data—also known as category data—is utilized to do it in a descriptive, expressive manner. It is, to put it simply, knowledge about anything you can see, touch, or feel. Market analysts and statisticians frequently utilize qualitative analysis to comprehend behavior. In the corporate world, data analysts frequently use it to comprehend and extrapolate user and customer behavior.

Learn more about quantitative here:

https://brainly.com/question/14810759

#SPJ4

How should Marianne Barner respond to the invitation for IKEA to have a representative appear on the upcoming broadcast of the German video program

Answers

Marianne Barner, the person in charge of managing IKEA’s Global Social and Environmental affairs, should respond positively to the invitation for IKEA to have a representative appear on the upcoming broadcast of the German video program.

This will allow IKEA to address the concerns and explain the steps the company has taken to correct the issue that was raised in the program. It will also give the company an opportunity to share information about its policies and practices regarding social and environmental issues.

Marianne Barner should use this invitation as a chance to provide the "main answer" to the questions raised by the program's broadcast. Here is the explanation of how Marianne Barner should respond to the invitation for IKEA to have a representative appear on the upcoming broadcast of the German video program: IKEA's policies have always focused on social and environmental responsibility.

To know more about broadcast visit:-

https://brainly.com/question/29563380

#SPJ11

use humorous and monster in a sentence.

Answers

Answer: Here are a few...

1) The monstrous elephant trampled through the jungle crushing everything in its path.

2) Because it was so monstrous, the maid often got lost in the massive home she cleaned.

3) Monstrous amounts of foods are needed to feed the hundreds of refugees who showed up at the soup kitchen.

Explanation:

I hope this helps :D

Which action should you choose for a virtual machine within the actions pane in order to obtain the virtual machine connection window?

Answers

To obtain the virtual machine connection window, you should choose the "Connect" action for the virtual machine within the actions pane.

The "Connect" action within the actions pane is specifically designed to establish a connection with a virtual machine. By selecting this action, you initiate the process of establishing a remote desktop session or console connection to the virtual machine. The virtual machine connection window provides the interface through which you can interact with the virtual machine's operating system and applications. It allows you to view and control the virtual machine's desktop environment, access files and folders, and perform administrative tasks. Choosing the "Connect" action is the appropriate step to initiate the virtual machine connection window and gain remote access to the virtual machine.

To know more about virtual machine click the link below:

brainly.com/question/31674424

#SPJ11

"What is the longest time (with extensions) a developer can have to file a final map after receiving tentative map approval?"

Answers

Answer:

The answer is "Five years (Two years)".

Explanation:

It supplies with proactive maps of approved modifications beyond the limits of plan may be expanded by the submission of final maps, reflecting the stages of the initial proactive plan, up to ten years with both the chief administrator.

Its provisional submission of a map, that will include the request forms or other resources provided at the request of the city administrator and the office.  It also allows the phasing for the current map, that has been accepted.

Please please help ASAP it’s timed

Please please help ASAP its timed

Answers

Answer:

First Part = def add(numA, numB) : Return numA + numB

Second Part = answer = add(8,2)

Third Part = print (asnwer)

Hope my answer helps :)

What system acquisition method has the advantages of freeing up it resources by bypassing the is department and avoids delays, and allows users to control the design of the application and make changes as needed?.

Answers

The  system acquisition method that has the advantages of freeing up it resources by bypassing the is department and avoids delays, and allows users to control the design of the application and make changes as needed is  1) Rapid Application Development

What does "rapid application development" refer to?

Rapid Application Development, or RAD, is a flexible approach to software development that places less of a focus on detailed design and more on experimentation and quick feedback. In general, the RAD approach places more emphasis on prototyping and development than it does on planning.

Hence, Rapid application development (RAD) is a well-liked agile project management method in the software industry. A RAD approach's main advantage is quick project turnaround, which makes it a desirable option for professionals working in a hectic setting like software development.

Learn more about Rapid Application Development  from

https://brainly.com/question/19004839
#SPJ1

See full question below

What system acquisition method has the advantages of freeing up IT resources by bypassing the IS department and avoids delays, and allows users to control the design of the application and make changes as needed?

options: 1)Rapid Application Development 2)Traditional Systems Development (SDLC) 3)Prototyping 4)End-user Development

In PKI, the CA periodically distributes a(n) _________ to all users that identifies all revoked certificates.

Answers

Answer:

" CRL (certificate revocation list)" is the appropriate answer.

Explanation:

A collection of such subscriber bases containing accreditation or certification status combined with the validation, revocation, or outdated certification within each final customer is known as CRL.Only certain subscribing workstations with a certain underlying cause authentication system should have been duplicated.

To ensure you don't forget your password, you should use one unique and safe password for all your accounts. a) True b) False

Answers

The answer is False you shouldn’t do that!


3. Rajat wants to assign green colour to a paragraph. Write the code that will help him in completing the task
Answer fast , will mark branliest .​

Answers

Explanation:

use the style attribute

3. Rajat wants to assign green colour to a paragraph. Write the code that will help him in completing

Which statement describes a repository with central storage of a longitudinal record?
A. Patient data are from a single hospital's data for the most current record?
B. Portions of a patient's lifetime medical record are stored in databases at the facility where the data were collected
C. The information collected by the organization is stored in a single database no matter when or where the patient was seem
D. Data from multiple hospitals are kept compact and efficient by deleting "old" data

Answers

The statement that describes a repository with central storage of a longitudinal record is:

C. The information collected by the organization is stored in a single database no matter when or where the patient was seen.

This option indicates that all patient data is consolidated into one centralized repository, allowing for easier access and analysis of a patient's lifetime medical record, regardless of the time or location of the treatment.

The appropriate response to ensure the collection of medical information, traceability of prescriptions and medical orders, confidentiality obligations, the security of the medical record, and optimal patient care is the implementation of a dedicated PDMS within a critical care structure.

Know more about central storage of a longitudinal record  here:

https://brainly.com/question/30158478

#SPJ11


Bundlr is an example of gatekeeper technology.
Group startsTrue or False

Answers

Answer:

False

Explanation:

this help me please. ​

this help me please.

Answers

Answer:

1) 1011010

2) 1100100

3) 1010101

4) 23

5) 22

6) 24

A centralized version control system that a programmer or teams of programmers can access to ensure that they are referencing or including the latest version of programming code is a ___________ Versions System.

Answers

A centralized version control system that a programmer or teams of programmers can access to ensure that they are Learn more about Programmer  or including the latest version of programming code is a Centralized Versions System.

A CVCS is a type of version control system where a central server stores all versions of the codebase. Programmers can checkout the latest version of the code from the central server, make changes, and then commit their changes back to the server. This ensures that everyone is working with the latest version of the code and helps to prevent conflicts and inconsistencies.CVCSs are often used by larger teams working on more complex projects, as they provide a centralized way of managing changes and collaborating on code. Examples of CVCSs include SVN (Subversion) and TFS (Team Foundation Server). However, they are generally considered to be less flexible and more prone to single-point-of-failure issues than newer, distributed version control systems like Git.

Learn more about Programmer https://brainly.com/question/13956629

#SPJ11

execute the program and observe the output. click and drag the instructions to change the order of the instructions, and execute the program again. can you make the program output a value greater than 500? how about greater than 1,000?

Answers

The program below is designed to calculate the area of a circle, given the radius of the circle.

What is program ?

Programming is the process of creating instructions for computers to follow. It involves the development and implementation of algorithms, or logical instructions, to perform various tasks. Programming languages are used to write code to create software, applications, and websites. A program is a set of instructions that tells the computer what to do and how to do it. Programs can be written in a variety of languages, such as C++, Java, or Python. Programming can be used to solve problems, automate tasks, and create complex systems. Programming is an essential skill in today's digital world, and is used in a variety of industries, including finance, healthcare, and entertainment.

radius = 10

area = 3.14 * (radius ** 2)

print(area)

When the program is initially executed, the output is 314.0.By changing the order of the instructions, such as assigning the area variable before changing the radius variable, it is not possible to make the program output a value greater than 500. However, by changing the value of the radius variable (e.g. radius = 20) it is possible to make the program output a value greater than 1000. For example, the output would be 1256.0 with a radius value of 20.

To learn more about program
https://brainly.com/question/23275071
#SPJ4

Write the code in python to ask the user to input two integers. Your program will then print the greatest common divisor of the two integers. Look at the math module for a function that will help you find the greatest common divisor.

Answers

import math

num1 = int(input("Enter a number: "))

num2 = int(input("Enter a number: "))

print(math.gcd(num1, num2))

The gcd() - greatest common divisor function, which is part of the math module works perfectly in this situation.

Project stem 4.1 code practice
Python!!
Write a program that asks the user to enter a city name, and then prints Oh! CITY is a cool spot. Your program should repeat these steps until the user inputs Nope.


Sample Run

Please enter a city name: (Nope to end) San Antonio

Oh! San Antonio is a cool spot.

Please enter a city name: (Nope to end) Los Angeles

Oh! Los Angeles is a cool spot.

Please enter a city name: (Nope to end) Portland

Oh! Portland is a cool spot.

Please enter a city name: (Nope to end) Miami

Oh! Miami is a cool spot.

Please enter a city name: (Nope to end) Nope

Answers

A program that the user to enter a city name, and then prints Oh! CITY is a cool spot as follows:

City_name = input("Please enter a name or type Nope to terminate the program: ")

while( user_name != "Nope" ):

print("Oh! CITY is a cool spot" , City name)

City name = input("Please enter a name or type Nope to terminate the program: ")

What is a Computer Program?

A computer program may be defined as a series or set of instructions in a programming language that are utilized by the computer to execute successfully.

The variable "City_name" is used to store the input of the user. He might input his name or "NOPE" to terminate. Then we used a while loop to check if the user input NOPE. Then, we print Oh! CITY is a cool spot for "users input".

Therefore, a program that the user to enter a city name, and then prints Oh! CITY is a cool spot is well-described above.

To learn more about Computer programs, refer to the link:

brainly.com/question/1538272

#SPJ1

Current assets include a. inventory and accounts receivable. b. accounts payable and cash. c. cash and intangible assets. d. inventory and accounts payable. e. buildings and equipment.

Answers

a. inventory and accounts receivable. Current assets are resources that are expected to be converted into cash or used up within a year or an operating cycle.

The two most common types of current assets are inventory and accounts receivable. Inventory refers to goods held for sale or in the process of production, while accounts receivable represents the amount owed to a company by its customers for goods or services already delivered. Both inventory and accounts receivable are typically considered liquid assets as they can be readily converted into cash.

Other current assets may include cash equivalents, short-term investments, and prepaid expenses, but the primary components are inventory and accounts receivable.

Learn more about inventory and accounts receivable here:

https://brainly.com/question/28584710

#SPJ11

Other Questions
Question 4 (5 points)The use of technology to develop and maintain relationships is impacting peoplesdecisions about what to disclose and what to keep private.TrueFalse Let f(x) = x 2 and g(x) = x2 7x 9. Find f(g(1)) What is the vertex of the graph of the function f(x) = x2 + 6x + 9?0 A. (-3,0)B. (0, -3)C. (0, 3)O D. (3, 0) to tighten a spark plug, it is recommended that a torque of 30 nm be applied. you may want to review In how many ways can we select a chair person, vice president, secretary and treasurer from a group of 12 people? carter has been modeling ethical behavior, so he is surprised to learn that his employees do not understand that taking pens and notepads from the office is wrong. what could be a problem with carter's approach to modeling ethical behavior? List the causes of American involvement in the Afghan War. Do you believe it was worth American involvement in the War? Microfilaments are made of A. cellulose fibers B. alpha and beta tubulin C. filamentous actin monomers D. globular actin monomers A rectangle is 2 meters wide and 6 times as long as it is wide. Find the area and perimeter The following chemical reaction takes place in aqueous solution:ZnBr2(aq)+2 NaOH(aq) --Zn(OH),(s)+2 NaBr(aq)Write the net ionic equation for this reaction. Which of the following was the 1st to place definite limits on the power of the english monarch?A. English common lawB. Magna carta C. Parliament actsD. English bill of rights What requirements did the Louisiana government enact to prevent African Americans from voting prior to the 1960s?Check all that apply.They established property requirements for voters.They required voters to pass a literacy test.They required a voter's grandparent to have previously voted.They enacted a poll tax to be paid by voters.They required voters to be 21 years or older. Use the distance formula to find the distance between points Y(-1,0) and P(2,6). part a: list three ways in which you can represent the expression, for every 96 action/ adventure movies, there are 38 sci-fi movies to stream, as a ratio. part b: explain why 96:38 is the same as 38:96 Determine whether the given triangles are congruent You saved $300 to spend over the summer. You decide to budget $50 to spend each week. You have already written an equation and graphed on your paper. What is the slope of your graph? An ionic bond is a bond between a Cation (Metal) and an Anion (nonmetal)TrueFalse A student investigates the motion of a ball. They throw the ball downwards with a velocity of 1.5ms-1. If the ball accelerates at 9.8ms-2 and hits the ground 2.61s later, what was the final velocity of the ball? Please help as soon as possible I will give out 100 points and Brian less in how many ways can a ten-person school board choose three of its members to serve on a committee for athletics? (suppose the three committee positions are identical.)