I need help with my work

I Need Help With My Work

Answers

Answer 1

Answer:

totally

awesome

Explanation:

You can evaluate the expressions in the statements by hand:

if (a*b!=c) evaluates to

if (2*3 != 11)

if (6 != 11)

if (true)

so the next line is executed (it prints 'totally')

Likewise, the other if statement also evaluates to true.


Related Questions

Jazmine just finished setting up an operating system that's designed to work between a VM guest OS and computer hardware. What is the name of the operating system Jazmine is setting up?

Client
Host
Hybrid
Network

Answers

The name of the operating system Jazmine is setting up is option A: Client  operating system.

What  is the operating system running in virtual machines?

A guest or client operating system is known to be the operating system that one can installed on a virtual machine (VM) or on any kind of partitioned disk.

Hence, the name of the operating system Jazmine is setting up is option A: Client  operating system.

Learn more about operating system from

https://brainly.com/question/22811693

#SPJ1

Answer:

Host

Explanation:

I got it right on the test.

which of the following panels (labelled a, b, c, and d) in (figure 2) correctly depicts the field lines from an infinite uniformly negatively charged sheet? note that the sheet is being viewed edge-on in all pictures.

Answers

Since the dipole's lines are most closely spaced together between and immediately around the two charges, this pattern tells us that the electric field is strongest in that area.

Where is the electric field strongest in a dipole?Because it is more practical, Electric field lines are only depicted in two dimensions. An endless number of field lines could be formed as they radiate out from the charges in three dimensions. But just a few are ever depicted in photographs for clarity's sake. Accordingly, five times as many lines would appear from a +5q charge as from a +q charge. The number is chosen to be proportional to the size of the charge.Information regarding the size or strength of the field can also be gleaned from the arrangement of electric field lines. The lines are more closely spaced together near the charges, where the electric field is stronger.Lines are more dispersed at farther distances from charges, where the electric field is weaker. It is true that, generally speaking, areas with closer-spaced field lines have a stronger electric field. The number of lines per unit area travelling perpendicularly through a surface is, in reality, proportional to the strength of the electric field regardless of the amount of charges present.The number of lines per unit area is constant across the region where the electric field lines are evenly spaced, and the strength of the electric field is constant throughout.

To Learn more About electric field Refer To:

https://brainly.com/question/28027633

#SPJ4

when is it best to print part of a document as opposed to the whole thing? ( Test out module 3.1)

Answers

It is best to print only part of a document when you only need certain pages or sections of the document, as it saves paper and ink/toner. It can also be more efficient to only print the necessary information rather than printing the entire document and having to search for the relevant information.

Meaning of U.R.L in computer​

Answers

Uniform Resource Locator. It is the unique address that each webpage has, which makes it easier for us to access them

Uniform Resource Locator, or URL, is an Internet resource address and a reference to that resource.

A URL has two main components:

Protocol identifier: For the URL http://example.c0m, the protocol identifier is http.Resource name: For the URL http://example.c0m, the resource name is example.com.

The resource name and the protocol identification are separated from one another by a colon and two forward slashes. The name of the protocol to be used to get the resource is indicated by the protocol identifier. The Hypertext Transfer Protocol (HTTP), which is frequently used to serve up hypertext content, is utilized in the sample. One of the many different protocols used to access various kinds of online content is HTTP. The File Transfer Protocol (FTP), Gopher, File, and News are further protocols.

The full address to the resource is contained in the resource name. However, for many protocols, including HTTP, the resource name comprises one or more of the following elements. The structure of the resource name totally depends on the protocol being used.

Host Name: The name of the computer that houses the resource.

Filename: The computer's pathname for the file.

the port number to which you should connect (typically optional).

Referencing a named anchor inside a resource that often designates a particular spot within a file (typically optional).

Many protocols only need the host name and filename, while others allow for the port number and reference. For instance, the resource name for an HTTP URL must include the host name of the network server, the filename of the content on that server, a port number, and a reference.

Thinking about the way you organize your contacts in a new phone is an example of which analytical skill?
A. Data design
B. Data strategy
C. Understanding context
D. Curiosity

Answers

A good illustration of data design analytical competence is thinking about how you would arrange your contacts in a new phone.

Explain about the analytical skill?

An effective analysis of a circumstance, issue, or problem shows that you have analytical abilities. This means you can approach a problem or issue from various aspects while focusing on finding solutions. Furthermore, it is simple to separate the primary problem from the auxiliary problems.

In order to produce practical answers to these difficulties, analytical thinkers must be able to recognize and characterize problems, extract important information from data, and define problems. They possess a strong sense of logic and are adept at seeing patterns or cause-and-effect connections in challenging circumstances.

Given the importance of analytical abilities in many professions, it's critical that you can effectively demonstrate them on a resume. Giving particular instances to back up your analytical abilities is a smart strategy to show your proficiency and could improve your chances of success.

To learn more about analytical skill refer to:

https://brainly.com/question/747988

#SPJ4

(T/F) The SSCP certification is more applicable to the security manager than the security technician.

Answers

Answer: True

Explanation:

I think it is very true

The text is given in a single line. For each word of the text, count the number of its occurrences before it.
JAVA

Answers

String text = "one two one two three two four three";

String[] words = text.split(" ");

HashMap<String, Integer> wordCount = new HashMap<>();

for (int i = 0; i < words.length; i++) {

   int count = 0;

   if (wordCount.containsKey(words[i])) {

       count = wordCount.get(words[i]);

   }

   wordCount.put(words[i], count + 1);

   System.out.println(words[i] + ": " + count);

}

What does this function do?
def guess_function(guess_List):
if len(guess_List) == 1:
return guess_List[0]
else:
return guess_List [0] + guess_function(guess_List[1:])

Answers

Answer:

below

Explanation:

It checks guess_List and if it only has 1 item, returns the first item as the function. Otherwise, it returns the first item added to the items from the second item onwards in guess_List.

In this lab, you complete a prewritten Python program for a carpenter who creates personalized house signs. The program is supposed to compute the price of any sign a customer orders, based on the following facts:

The charge for all signs is a minimum of $35.00.
The first five letters or numbers are included in the minimum charge; there is a $4 charge for each additional character.
If the sign is make of oak, add $20.00. No charge is added for pine.
Black or white characters are included in the minimum charge; there is an additional $15 charge for gold-leaf lettering.

Instructions
Make sure the file HouseSign.py is selected and open.
You need to assign variables for the following:
A variable for the cost of the sign assigned to 0.00 (charge).
A variable for the number of characters assigned to 8 (numChars).
A variable for the color of the characters assigned to "gold" (color).
A variable for the wood type assigned to "oak" (woodType).
Write the rest of the program using assignment statements and if statements as appropriate. The output statements are written for you.
Execute the program by clicking the Run button at the bottom of the screen. Your output should be: The charge for this sign is $82.0.

Answers

Using the computer language in python to write a function code that personalized house signs

Writting the code in python:

#Assign varibles

charge = 0.00

numChars = 8

color = "gold"

woodType = "oak"

#Checking for number of characters

if numChars > 5:

charge = 35 + (numChars-5)*4

elif numChars > 0:

charge = 35

#Checking wood type

if woodType == "oak":

charge += 20

#Checking for color

if color == "gold":

charge += 15

#Print output

print("The charge for this sign is $"+str(charge)+".")

See more about python at brainly.com/question/13437928

#SPJ1

Pretend you work with a lot of different documents in an internship with a software development company. What kinds of actions can you take to keep your files, folder names, folder structure, and yourself organized? Be thorough in your answer.

Answers

In the case above, I will categories my files and also my folders using as names and structures. The file name will help me to know identify the file in  fast time.

What is file structure?

A file structure is known to be the ways or combination of depiction for data in files.

Hence, In the case above, I will categories my files and also my folders using as names and structures. The file name will help me to know identify the file in  fast time.

Learn more about files from

https://brainly.com/question/1178560

#SPJ1

what is topology ? explain the type of topologies used in computer network .​

Answers

Answer:

Topology refers to the layout or structure of a network. It describes how devices on a network are connected to one another and how they communicate.

Explanation:

There are several different types of topologies that can be used in computer networks, including:

Bus topology: all devices are connected to a single cable or bus, which is the backbone of the network.

Star topology: all devices are connected to a central hub or switch, which acts as the hub of the network.

Ring topology: all devices are connected to one another in a closed loop, with data flowing in one direction around the ring.

Mesh topology: all devices are connected to one another, creating multiple paths for data to flow between devices.

Tree topology: a hierarchical topology where a central device (root) is connected to other devices that are connected to other devices.

Hybrid topology: a combination of two or more topologies.

I am trying to sum up a set of data based on 2 criteria (needs to have "green" in column E, and "January 2020" in collum A). Column D is the set of numbers I need to add. I am getting "Error, array arguments in SUMIFS are of different size.

Answers

In summing the set of data using the 2 criteria, the best way to do it is to avoid the error is that On cell G16, one should type the formula "=SUMIF(G2:G11, ">=40")".

What is the code about?

In computing, Formulas seen  In Microsoft Excel are known to be employed to be able to generate some outcome or values to any cell.

Note that the formula need to begin with an equal sign. The formula that is written above has the function "SUMIF" that helps to give the  sum of numeric values as a result of the condition.

Learn more about  SUMIFS from

https://brainly.com/question/19595606

#SPJ1

Explain how advanced analytics (e.g., Machine learning) helps the threat life cycle management. State the stage of the threat life cycle management where advanced analytics is mostly needed in your explanation.

Answers

Advanced analytics may help to simulate the behavior of an infectious disease in epidemiology.

What is Advanced analytics?

Advanced analytics refers to the computation strategies that are able to manage a huge number of parameters to model a situation.

Advanced analytics is very useful in epidemiology because this approach allows for predicting the transmissible behavior of infectious diseases caused by pathogenic microorganisms (e.g., bacteria) and viruses.

In conclusion, Advanced analytics may help to simulate the behavior of an infectious disease in epidemiology.

Learn more about Advanced analytics here:

https://brainly.com/question/15007647

#SPJ1

given the integer variable numinches, type cast numinches to a double and assign the value to the variable newinches. ex: if the input is 12, then the output is:

Answers

System.out.print (num +"5.13"+ cost + "n"); Type cast the double variable numInches to an integer and assign the value to the variable newInches.

It is necessary to make a double variable in some way. A double value can be defined by putting the double keyword in front of the variable. You commonly used this type of data, which has decimal digits of 14 or 15. Variables use the double 64-bit floating data type. A double type can be used to represent values in both their whole and fractional forms. It can have a maximum of 15 digits, including the digits before and after the decimal point. When stored as IEEE 64-bit (8-byte) floating-point integers, negative values for double (double-precision floating-point) variables vary from -1.79769313486231E308 to -4.94065645841247E-324.

Learn more about Double variable here:

https://brainly.com/question/29989514

#SPJ4

Which of the following is not one of the C++ control structures?
A. if
B. do...while
C. switch
D. break

Answers

Answer: (D) break

Explanation:

"break" is not one of the C++ control structures. It is a keyword that is used to exit a loop or a switch statement.

if/else, do...while, and switch are all control structures in C++. They are used to control the flow of a program.

Many classes provide methods to perform common tasks that do not require specific objects—they must be called using a class name. Such methods are called ________ methods. a) classwide
b) dot (.)
c) console
d) static

Answers

Answer:

d) static

Explanation:

static methods are basically global, but the class that originated them must also be static.

you can use a static method without having to instantiate a new object for the class variable, for instance, let's say there are 2 classes (Car and Airplane). Car has a non-static method called "drive()" and Airplane has a static method called "fly()"

If you want to call the method from Car, you'd have to do:

Car polo = new Car();

polo.drive();

If you want to call the method from Airplane, you'd have to call it directly from the class:

Airplane.fly();

In cell I5, enter a formula without using a function that divides the General Medicine total in cell H5 by the annual total in cell H9 to display the department’s percentage of total revenue. Use an absolute reference for cell H9, and then enter the same formula without formatting from cell I5 to the range I6:I9.

Answers

The formula to enter in cell I5 is  = $H$5/H9

How to enter the formula?

The given parameters are:

Cell H5 = Medicine TotalCell H9 = Annual Total

To divide H5 by H9, we have

H5/H9

Cell H5 is to be referenced by absolute reference

So, we have:

$H$5/H9

To enter the formula in cell I5, we use the following:

= $H$5/H9

When the same formula is entered in I6 to I9, we have:

= $H$5/H10

= $H$5/H11

= $H$5/H12

= $H$5/H13

Read more about Excel formulas at:

https://brainly.com/question/14299634

#SPJ1

Barbarlee suspected and found a loophole in the university computer's security system that allowed her to access other students' records. She told the system administrator about the loophole, but continued to access others' records until the problem was corrected 2 weeks later. Was her actions unethical or not. Explain your position? What should be the suggested system administrators response to Barbarlee's actions? How should the university respond to this scenario?​

Answers

Answer:

Explanation:

I can give you my opinion on the matter, not sure if this was taught to you or not so please take it with a grain of salt.

Her actions are highly unethical and even illegal to some extent. Especially in USA, FERPA prevents random people from accessing your educational records without your permission and there's hundreds of universities with their own rules/regulations on protecting students' privacy. The sys admin should have first recorded this event when she reported it and then actually went into the system to see if unwanted access has been done by any user(s). University should look at disciplinary actions since the person willingly accessed the system even after they reported the bug and also let ALL the university student/faculty/staff know of the problem and how they plan on fixing it.

This is only a summary, and this is my opinion. please expand in places where needed.

I found another answer in go.ogle:

I feel the actions of this person were unethical.

The student's action in searching for the loophole was neither definitively ethical nor unethical, as their motives are unclear.

The student's action in continuing to access records for two weeks was unethical, as this is a violation of privacy.

The system admin's failure to correct the problem could be considered unethical, but it is difficult to surmise, as there are not enough details.

* Describe the five components of a
computer

Answers

Answer:screen, keyboard, cpu, mouse, processor, mother board, power box. Ports

Explanation:

Discussion Topic
Personal finance includes income as well as expenses. You must manage your
personal finances daily, weekly, or monthly. Discuss the advantages of using
spreadsheets for managing personal finances.

Answers

The advantages of using spreadsheets for managing personal finances is that:

Spreadsheets are known to be tools that are very quick and easy and helps one to add into a workflow. Spreadsheets are regarded as an efficient tools for financial documents. A person can have access to a lot of spreadsheet templates and they can be able to visualize data along with caveats.

What is the advantage of using a spreadsheet?

The Advantage is that it is one that help[s a person to be able to organizing a lot of data.

Note that The advantages of using spreadsheets for managing personal finances is that:

Spreadsheets are known to be tools that are very quick and easy and helps one to add into a workflow. Spreadsheets are regarded as an efficient tools for financial documents. A person can have access to a lot of spreadsheet templates and they can be able to visualize data along with caveats.

Learn more about spreadsheets  from

https://brainly.com/question/26919847

#SPJ1

given 2,4,3,-1 as input, what is the output for the following program:total_product = 1 user_value = int(input()) while user_value > 0: total_product = total_product * user_value user_value = int(input()) print('Product:', total_product, end='')

Answers

The python program for any of the given values is as written below.

How to run a Program in Python?

We are told to use input for the python program as;

2, 4, 3, -1

Now, the python program using 2 as user value and 1 as total product gives us the program as;

total_product = 1

user_value = (input(1)) #while user_value > 0:

total_product = total_product * user_value

user_value = (input(2))

print('Product:2', total_product, end='2')

Read more about Python Program at; https://brainly.com/question/26497128

#SPJ1

Describe the specific job you would want to have if you were going to pursue a career in digital music or video.
Explain what this job entails, and discuss why it appeals to you. What skills and interests do you have that
would be well-represented and utilized in this job? What skills would you need to learn or improve?

Answers

The specific job you that i would want to have if you were going to pursue a career in digital music or video is to be a gospel music producer.

What does a gospel music producers do?

A gospel producer, or record producer, is known to be a person who is said to often help an artist in regards to their recording project.

Note that the field i am interested in is Christian gospel music and the skills is that it requires one to be:

Be able to Play an Instrument.Be a Sound EngineerMusic Theory & CompositionManaging People. Communication and others.

The skill that i need to improve on is music theory.

Hence, The specific job you that i would want to have if you were going to pursue a career in digital music or video is to be a gospel music producer.

Learn more about Music from

https://brainly.com/question/26373912

#SPJ1

in at least 150 words, explain what the socratic method is, how it works, and what type of conclusions it generally draws

Answers

Socratic method is cooperative argumentative

dialogue

It was named after Greek philosopher Socrates who asked his students to ask more and more question

• Socrates wanted to expose contradictions in the students' thoughts and ideas

The Socratic method is that students learn through use of critical thinking and logic.

The Socratic method is method of teaching that Socrates used to teach philosophy. It is a method of inquiry that is based on the idea that best way to learn is to ask questions. The Socrate method is a

way of teaching philosophy that is not only

effective, but also fun.

The Socrates method of learning is not just about asking questions. It also involves a lot of thinking and discussion. The Socrates method is not a way to get an answer, but away for you to understand the answer

learn more about socratic method at

https://brainly.com/question/17452457

#SPJ4

A cooperative argumentative dialogue is the Socratic method. Socrates wanted the students' ideas and thoughts to be contradictory.

What is the Socratic method objective?

The objective is to acquire skills in legal problem-solving, analogy-based reasoning, critical thinking about one's own and others' arguments, and comprehension of how the law affects those who are subject to it.

The Socratic Method: What is It?

The Socratic Method, which was developed by the Greek philosopher Socrates, is a dialogue between teachers and students that is sparked by the teacher's persistently probing questions in an effort to investigate the underlying beliefs that shape the students' perspectives and opinions.

Learn more about Socratic method :

brainly.com/question/17502350

#SPJ4

The postmortem lessons learned step is the last in the incident response. Why is it the most important step in the process

Answers

The postmortem lessons is the most important step in the process because it is one that gives an highlight to analyzing an incidence and the reason it occurred.

What is this lesson about?

The post-mortem review of an incident is known to be a form of a review that gives a person the answers to questions recording a case such as who, what, how, when, and where of both the incident and the ways and methods that can be used in handling the incident by the response team.

Note that the team is one that now has the space or luxury of time and also an hindsight to analyze what has occurred, what was done right, and what can be improved.

Hence, The postmortem lessons is the most important step in the process because it is one that gives an highlight to analyzing an incidence and the reason it occurred.

Learn more about postmortem from

https://brainly.com/question/21123962

#SPJ1

One way to format text is Blank Space__________ it.
Choose the answer.

Question 8 options:

inserting


underlining


moving


deleting

Answers

Answer:

underlining

Explanation:

It really doesn't matter what language or software you use.

Formatting is the process of changing the way existing text appears

Only underlining changes the existing format of the text

The others - inserting, moving, deleting are editing commands.

In what order would you arrange these steps for sequential reboot

Answers

Answer:

The orders that you would you to arrange these steps for a sequential reboot are;. Power up the router. Power up the modem. Reset the Network.

Explanation:

The orders that you would you to arrange these steps for a sequential reboot are  Power up the router, Power up the modem and Reset the Network.

What do you mean by reboot ?

The term reboot is defined as the act or an instance of shutting down and restarting something such as a computer or program.

The process of shutting down and restarting a computer or its operating system from the initial boot loading sequence is known as rebooting.

This procedure reloads the operating system files and is used to resolve a variety of common computer issues, such as slow processing or freezing. Reboot is also spelled restart.

Thus, The orders that you would you to arrange these steps for a sequential reboot are  Power up the router, Power up the modem and Reset the Network.

To learn more about the reboot, follow the link;

https://brainly.com/question/14059348

#SPJ2

you are the manager in charge of maintaining desktop computers. a user reports that she can't turn her computer on. after some investigation, you find that the power supply is malfunctioning. which of the following actions should you perform next?

Answers

The correct answer is Make a strategy of action. you are the manager in charge of maintaining desktop computers.

Verify You Have the Correct Printer, Clear the Printer Queue, Secure the Connection, and Check Your Printer's Error Lights.Install the software and drivers.Add a printer.Verify that the paper tray is filled up and not jammed.Play withthe cartridges for the ink.A laser printer should only be connected to surge protection outlets or a wall outlet directly. External hard drives, second LED displays, and inkjet printers should all be hooked into battery backup outlets. 2 Placing your printer on a desk or other flat, sturdy, and noise- and vibration-free surface is recommended. Use the printer in a room with good ventilation. Don't put your machine near a lot of people. The printer SHOULD NOT BE PLACED WHERE THE VENTILATION HOLE IS BLOCKED.

To learn more about manager click the link below:

brainly.com/question/29023210

#SPJ4

printer runs out of paper during the printing job. A signal is sent back to the computer to stop temporarily its current task. Name this type of signal

Answers

The signal is sent back to the computer to stop temporarily its current task is known as interrupt signal.

What is  interrupt signal?

An interrupt is known to be a form of a signal emitted by any kind of device such as printer that is said to be attached to a computer or from a program that is seen in the computer.

Hence, The signal is sent back to the computer to stop temporarily its current task is known as interrupt signal.

Learn more about printer from

https://brainly.com/question/145385

#SPJ1

Describe a situation where using functions is not a necessary part of a script and why it is not necessary. Discuss why using functions is always a good practice.

Answers

A situation where using functions is not a necessary part of a script would be a simple script that performs a single task, such as printing out a message on the screen. For example, consider a script that only needs to print out "Hello, World!" on the screen.

print("Hello, World!")

What is the function about?

In the above case, using functions is not necessary as the script is only performing a single task, and it can be executed with a single line of code.

However, even in this simple case, using functions can be a good practice. By encapsulating the single line of code within a function, it makes the code more reusable and easier to test. It also makes the code easier to understand and maintain, as it clearly defines the purpose of the script.

In general, using functions is always a good practice as it promotes code reusability, maintainability, and organization. Functions allow you to break down complex tasks into smaller, manageable chunks of code, making it easier to write, read, and understand.

Learn more about script from

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

Protecting your identity is essential, even on your personal or home computer. You should consider doing all of following except:

Answers

Should not respond to emails asking you to verify your personal infoinformation.

Protecting identity

Because of the prevalence of phishing emails. Such emails may look legitimate as though from someone or an organization you know, but most often they are designed to steal your personal information. Hence, it is often recommended by cyber security experts to avoid responding to emails asking you to provide your personal information.

You can learn more about protecting your identity here https://brainly.com/question/15252417

#SPJ1

Other Questions
Indicate what components of gdp (if any) each of the following transactions would affect. a. aunt jane buys a new house from a local builder. your parents pay an accountant to file their tax returns. b. texas hires public middle school teachers. c. aunt polly buys a new air conditioner from a domestic manufacturer. d. ford manufactures a focus and sells it to avis, the car rental company. e. dell sells a desktop computer from its inventory to the johnson family. f. uncle john receives a check from the federal government for unemployment insurance benefits. A flat, square surface with side length 4.90 cm is in the xy-plane at z=0.Calculate the magnitude of the flux through this surface produced by a magnetic field B =( 0.225 T)i^+( 0.350 T)j^( 0.475 T)k^. what mass of iron(iii) oxide is produced from excess iron metal and 6.8 l of oxygen gas at 102.5c and 871 torr? 4 fe (s) 3 o2 (g) 2 fe2o3 (s) which transition emits light with the highest energy? Suppose a hospital performs bypass surgery. An advancement in technology allows it to perform the surgery at a lower cost. The demand-supply framework predicts the hospital will respond by: Select one: a. performing more surgeries and charging a lower price b. performing more surgeries and charging a higher price c. performing fewer surgeries and charging a higher price d. performing fewer surgeries and charging a lower price Consider a light ray going from a material of index of refraction n1 at angletheta subscript 1to another with n2. If n2 > n1, then the angle of refraction (theta subscript 2) will be:Greater thantheta subscript 1with respect to the normalLess thantheta subscript 1with respect to the normalEqual totheta subscript 1with respect to the normal what three types of ends can be generated through dna cleavage by restriction endonucleases? what is the mass (in g) of 0.935 mol of acetone, ch3coch3? the molar mass of acetone is 58.08 gmol1. The HCl concentration in a gas mixture is reduced from 0. 006 mol fraction of ammonia to 1 % of this value by counter current absorption with water in a packed tower. The flow of the inert gas mixture and water are 0. 03 kmol/m2s and 0. 07 kmol/m2s, respectively. If the equilibrium relationship can be expressed as ye = 1. 55 x where ye is the mol fraction of ammonia in the vapour in equilibrium with a mol fraction x in the liquid. Determine the number of transfer units required to absorb HCl. a 1300-turn coil of wire 2.10 cmcm in diameter is in a magnetic field that increases from 0 tt to 0.150 tt in 12.0 msms . the axis of the coil is parallel to the field. Question: What is the emf of the coil? (in V)Please explain Calculate the dosage of activated carbon to reduce an influent concentration of 300 g/L of chloroform to 100 g/L (treatment objective) using powdered (PAC) and granular activated carbon (GAC). Assume for the GAC and PAC process that the carbons are saturated at the influent concentration and treatment objective, respectively. Given: Q = 10 mgd. g of chloroform (L)0.625 g of activated carbon g K = 159 How long will the GAC last if the filter density pr 0.37 g/cm3 and EBCT 15 min? The velocity of money tends to decrease when people have______ (higher/lower) money balances. Which of the following would cause a decrease in the velocity of money? Check all that apply.A decrease in the rate of inflationA decrease in the availability and acceptance of credit cardsA decrease in the interest rateA decrease in the availability of interest-bearing checking accounts .Assuming k'=150uA/V2, W/L =5, and VTh=0.4 VDetermine the current ID in the following circuit:Write your answer in mA (without units) centerlines have precedence over hidden lines. true or false how does the character of hedda gabler/tesman demonstrate the truly dangerous potential within romanticism and sentimentality? a. How many ounces of pure water must be added to a 15% saline solution to make 75 oz of a saline solution that is 10% salt? b. How many ounces of water evaporated from 50 oz of a 12% salt solution to produce a 15% salt solution? Write a function my_nth_root(x, n, tol) where x and tol are strictly positive scalars, and n is an integer strictly greater than 1. The output argument, r, should be an approximation , the Nth root of x. This approximation should be computed by using the NewtonRaphson method to find the root of the function f(y) = yN x. The error metric should be |f(y)|. galaxy a has a recession velocity of 2500 km/s, while galaxy b has a recession velocity of 5000km/s. calculate the ratio of distance between galaxy a and b and state which is more distant. Lee says that he will always spend $20 a week on lattes. Lee's demand for lattes is price O inelastic. O perfectly inelastic. unitary elastic. O elastic perfectly elastic. determine the rate of increase of atmospheric co2 concentrations from 2000 to 2020. remember, rate is calculated as change in some parameter (here, co2 concentration) over time.