Answer:
b so easy
Explanation:
Answer:
B. 100
Explanation:
1) Given what you have learned about computers and information technology thus
far, what IT career interests you the most? Use the job descriptions and titles in the
"Computer and Information Technology" section of the Occupational Outlook
Handbook or the IT career cluster for your answer. (2 points)
B r u h that is mostly based on your opinion
Can someone help me figure out why my else statment is not working?
----------------------------------------------------------------------------------------------------------------------------
print("\tBank of The Funny Money Bunny Farm\n")
print("Client\t\tDeposits\tWithdrawals\tBalance\t\tNotes:")
print("__________________________________________________________________________________________________________________________")
names = ['Judith', 'Jimmie', 'Johnny', 'Joseph', 'Jeffry', 'Buddie', 'Charlie', 'Maxine', 'Jannis', 'Bodine']
deposists = [255.23, 525.55, 323.21, 651.48, 507.11, 101.11, 253.36, 323.22, 611.45, 252.91]
withdrawals = [255.76, 128.65, 156.22, 175.33, 390.12, 255.41, 128.22, 156.23, 728.98, 251.43]
balance = []
notes = []
for i in range(len(names)):
balance.appened(deposits[i] - withdrawals[i])
if(balance < 0):
print((names[i] + ", you are overdrawn. Your account balance is " + "$%.2f"%(balance[i]))
else:
print("" + names[i] + "\t\t" + "%.2f"%(deposits[i]) + "\t\t" + "%.2f"%(withdrawals[i]) + "\t\t" + "%.2f"%(balance[i]) + "\t\t" + notes[i])
print("__________________________________________________________________________________________________________________________")
print("\© Copyright 2021 Funny Bunny Money Productions")
#Main
print("\tBank of The Funny Money Bunny Farm\n")
account = int(input("How many new accounts are needed: "))
for i in range(account):
input("Enter the name of the client: ")
input("Enter the deposist of the client: ")
input("Enter the withdraral of the client: ")
Answer:
below is a version of your code that runs.
I'm not sure if it does what you expect it to do.
To configure a router/modem, what type of IP interface configuration should you apply to the computer you are using to access the device administration web app?
Answer:
You would temporarily assign it a fixed IP address in the same subnet as the router's default configuration.
Explanation:
If the router doesn't have DHCP enabled yet, your computer will not get an IP address, so you cannot communicate with it.
Two friends can share 100 songs from their Bluetooth enabled mobile devices
a. True
b. False
c. They need internet connection
d. Not sure
Answer:
A
Explanation:
If they are connected via bluetooth, you can share unlimited amounts of anything.
Who is the father of computer
Answer:
Charles Babbage is known as the father of computer.
Explanation:
hope it is helpful to you
ayo which one is better genshin impact or fortnite, i personally prefer genshin impact since it's not boring and it has so many other things you could do when you're not doing a story quest or daily commissions
Answer:
Genshin Impact and you can fight me on it.
Explanation:
The game has way more to explore and offer with different fighting styles which include Magic and Swords fighting. It also has more story and I appreciate that!
The side quests to get tedious though so the final rating is 8.79//10.00
Answer:
genshin
Explanation:
explain irony and why its ironic in 300 words
I’m not sure if I can do it in 300 words but you could probably stretch this out if you try hard enough.
Irony is like when you say how much you hate planes then the first time you get on a plane it crashes. It’s like when you say something that you don’t like or you don’t want to happen and it ends up happening anyways or something around those means.
This is 181 words sorry I couldn't figure out what else to add...
Explanation:
Verbal Irony occurs when the speakers attention is the opposite of what he or she is saying. Dramatic Irony occurs when the audience knows a key peice of information that the characters in a play or story do not know. There are a few diffrent types of Irony but theses two are the main ones used. It's kinda like when in the Cask of Amontillado Montresor hates Fortunado and leads him into the catacombs to kill him. There was a lot of Verbal and dramatic Irony. Verbal irony is created as the pair journey into the catacombs. Fortunado has a cough, and Montresor asks him to "return," or go out of the catacombs a few times. Fortunado continues in the hopes of sampling the amontillado. After Montresor chains Fortunado to the wall, he says, "Once more, let me implore you to return. No?" This is ironic because Montresor has no intention of letting Fortunado go. Another good representation of Dramatic Irony would be in Romeo and Juliet when the audience knows that Juliet is not dead, but Romeo thinks she is.
choose one of the following about video games
Increases physical health/mobility concerns
Decrease in social interactions
Increases violent behaviors
Increases awareness in practical life skills
Decreases stress levels
Answer:
decrease in social interactions
Explanation:
if you play a video game you are starring at a screen and you are not interacting with people
Write a C++ program to add two integers. Make a function add() to add integers and display sum in main() function.
Answer:
In C++:
#include <iostream>
using namespace std;
int add(int a, int b){
int c = a + b;
return c;
}
int main(){
int a, b;
cout<<"Enter two numbers: ";
cin>>a;
cin>>b;
cout<<add(a,b);
return 0;
}
Explanation:
The add() function begins here
int add(int a, int b){
This adds the two integers
int c = a + b;
This returns the sum of the two integers
return c;
}
The main begins here
int main(){
This declares two numbers
int a, b;
This prompts user for two numbers
cout<<"Enter two numbers: ";
The next two lines gets the two numbers
cin>>a;
cin>>b;
This gets the sum of the two numbers from the add() function. The sum is also printed
cout<<add(a,b);
return 0;
}
Jeff is at his workplace and needs a file from his computer at home. Which protocol can Jeff use to access this file from a remote location? A HTTP B. POP3 C. LDAP D. Telnet
which kind of blocks is used to hold values
Answer:
Variable block.
Explanation:
In Computer programming, a variable can be defined as a placeholder or container for holding a piece of information that can be modified or edited.
Basically, variable stores information which is passed from the location of the method call directly to the method that is called by the program.
For example, they can serve as a model for a function; when used as an input, such as for passing a value to a function and when used as an output, such as for retrieving a value from the same function. Therefore, when you create variables in a function, you can can set the values for their parameters.
For instance, to pass a class to a family of classes use the code;
\\parameter Name as Type (Keywords) = value;
\\procedure XorSwap (var a,b :integer) = "myvalue";
Hence, variable block is used to hold values. Also, it can be used to hold strings in variables, which may be displayed through the computer monitor.
"During a context-switch, the process status word (PSW) of the running process is also saved." TRUE or FALSE?
Answer:
The answer is "True".
Explanation:
In the processor status word, comprising all pointers into some kind of registry account, which must be stored whenever a context switch took place. In this, each size of a process is reduced through the use of lightweight processes in such a multitasking environment, and the entire process will save through the unique process ID.
Use the drop-down menu to complete the steps for using the Goal Seek feature.
1. Go to the
tab.
2. In the
from the drop-down What-If Analysis menu.
3. Specify the cell that contains the formula to solve and enter the desired result.
4. Specify the
that contains the value to adjust.
5. Click OK
group, select
Answer:
1. Go to the data tab.
2. In the forecast ribbon from the drop-down What-If Analysis menu.
3. Specify the cell that contains the formula to solve and enter the desired result.
4. Specify the changing cell that contains the value to adjust.
5. Click OK
Answer: see below
Explanation:
what three factors helped the Wright brothers achieve success in controlled sustained and powered flight?
What are some potential challenges that society will face given the digital revolution? You may want to think particularly of the news industry. Discuss how these challenges could impact young people such as yourself.
Answer:
Some said that technology causes more problems than it solves. ... Others said humans' uses and abuses of digital technologies are causing ... Highly technological societies have to be iterative if they hope to ... where we believe we can tell honestly delivered information from fake news and disinformation.
hope this helps...
Explanation:
Joe creates HTML pages of website prototypes and page designs and validates page code for a web development team. What is Joe's role? A. usability lead B. art director C. information architect D site production lead
Answer:
D. Site production lead
Explanation:
Answer:
D site production lead
Explanation:
Hope this will help
PLEASE HELP
Write a method that takes two rectangles and returns the (positive) difference between their areas.
This method must be named areaDiff() and have 2 Rectangle parameters. This method must return a double.
For example suppose two Rectangle objects were initialized as shown:
Rectangle rect1 = new Rectangle(2.0, 8.0);
Rectangle rect2 = new Rectangle(6.0, 3.0);
The method call areaDiff(rect1, rect2) should then return the value 2.0.
The program to define a method that computes the positive difference between the areas of two rectangles is found in the attached image.
The program defines a class Rectangle with a constructor, and a static method areaDiff. The static method areaDiff takes two rectangles (rect1 and rect2) and returns the positive difference between their areas.
The formula used by areaDiff is:
[tex]|(rect1.width \times rect1.height)-(rect2.width \times rect2.height)|[/tex]
where
[tex]rect1,rect2=\text{the two rectangles}\\(rect.width\times rect.height)\text{ calculates the area of a rectangle object}\\|x|=\text{the absolute value function}[/tex]
Another Python program that solves a geometry problem can be found here: https://brainly.com/question/19150697
Here is a sequence of binary digits:
011000101110010100110100010001110101001110001010101
What could this sequence represent? What could it mean?
A. A piece of text
B. A number
C. A set of instructions
D. Musical notes
E. Any piece of information
Could I have some help please?
Answer:
E
Explanation:
trust me
Write an extensive note on register and type of register .
a very long note that will give me enough mark.
I WILL MARK U BRAINLEST
30 POINTS
If you type =5*3 into a cell, what do you expect the answer will be?
A. 5*3
B. 15
C. E3
D. 8
Answer:
I think 15
what do you mean by cell
Explanation:
Answer:
15
Explanation:
right on edge
does anyone now how to make an app on code.org????
i’ll pay you if you can do it for me!!
Answer: Honestly, code.org wont get you far. I recommend you get a IDE and pick a language to learn.
I would be happy to help you im not going to make it for you but i can help walk you thought it. I know a little bit of code.org had to make something in it last year.
* EMAIL*
What do you type in the “recipients” box
(A) The title of your email/summary of what you need
(B) The persons name you are sending an email to
(C) The question you are asking
Answer:
The correct answer is: (B) The persons name you are sending an email to.
Explanation:
"Recipients" are the people receiving the email whether it be one or multiple people. Those are the people that will be getting your email on whatever your sending your email about. Hope this helps you! :D
how do you do the ask tutor thing on the computer?
Answer:
what do you mean
Explanation:
who like the videos where is clown is from :)
Answer:
i hate clowns alot especially pennywise lol
Explanation:
One tool under What-If-Analysis is Scenarios. Which best describes the purpose of setting up and using scenarios
1. to quickly combine multiple formulas from different cells into just one
2. to instantly compare results when data in numerous cells change to specified values
3. to conduct automatic complex statistical analysis on a range of cells
4. to constrain some cells to certain values so that the wrong data are rejected if entered
Answer:
Option B, to instantly compare results when data in numerous cells change to specified values
Explanation:
Scenario setting with in the What If Analysis is used to compare various scenarios with in the same excel sheet. Scenarios has set of values that are saves and updated automatically as the values with in the cell changes. Also the scenarios can be switched.
Hence, option B is correct
What is a mod in programming?
Give more Java questions
Answer:
The modulo operation (abbreviated “mod”, or “%” in many programming languages) is the remainder when dividing. For example, “5 mod 3 = 2” which means 2 is the remainder when you divide 5 by 3. ... An odd number is “1 mod 2” (has remainder 1).
Explanation:
What happens if an email server cannot find a matching username or the mailbox is full
Answer:
if the email server cannot find a matching username, you need to verify your email. I think at least.
Explanation:
Answer:
it do not send your e-mail
Do you think the constant use of the Internet for almost all information seeking is a good or bad thing? Explain.
Who should NOT apply for financial aid?
Students who will attend college part-time
Students whose annual family income is over $100,000
Students who will attend community college
All students should apply for financial aid
Answer: wealthy students should, not a must, apply for it. Not every student.
1 Sales tax
5.00%
Use the image to help you answer the question.
Which formula will tell you the total "Before tax"
price using cell references?
A. =3+2+50
B. =B8
C. =B4+B5+B6
D. =B4*B5*B6
Answer:
Future value (FV) tells you the value in the future of money deposited in a bank account ... We can use Excel to make a table of how the future value grows with the ... 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. A. B. C. D. E. F. Interest. 6% ... To answer the question, we compute the IRR of the investment and compare it.
Explanation:
Answer:
C. = B4+B5+B6
Explanation:
Edge 2020