1. What are the many uses of PowerPoint that you have seen or used? 2. When is a numbered list appropriate and when is a bulleted list appropriate? Are there really different uses for the two? 3. Can the use of graphics be overdone? Give specific examples of when too many or too few graphics were used and how it impacted the presentation? 4. How do you like the PowerPoint 2019 video features? Do you find them easy to use?

Answers

Answer 1

PowerPoint is a flexible tool that maybe used for various purposes, such as :

Creating presentations: PowerPoint is usual for creating slide-located presentations, either for educational, professional, or personal purposes.

What is the PowerPoint?

PowerPoint is commonly used in classrooms and preparation sessions to give lectures, present visual aids, and engross learners through interactive fundamentals like quizzes or animations.

Business reports and proposals: PowerPoint is utilized in trade settings to construct reports, proposals, and pitch decks. It enables consumers to present information in a visibly appealing and short manner, enhancing ideas and understanding.

Learn more about PowerPoint  from

https://brainly.com/question/1130738

#SPJ4


Related Questions

MARIE includes 4096 bytes of memory. If Marie memory is divided in four memory banks, how much is each memory bank? O 2K Bytes O 1K Bytes 4K Bytes Question 31 (X+Y)Z+W+ 1 results in 1 as the output. O True O False

Answers

Marie includes 4096 bytes of memory. If Marie memory is divided into four memory banks, The amount of memory in each memory bank is determined by dividing the total amount of memory by the number of memory banks.

As a result, each memory bank of 4096 bytes memory will have a size of 4096/4 = 1024 bytes.So, the answer to your question is 1K Bytes.Each memory bank will have a capacity of 1K Bytes.Note: (X + Y) Z + W + 1 results in 1 as the output has a False output. The given equation can be written as:XZ + YZ + W + 1 = 1XZ + YZ + W = 0The expression on the left-hand side of the equation cannot be equal to zero. So, the output is false.

Based on the given content, MARIE includes 4096 bytes of memory. If this memory is divided into four memory banks, each memory bank would have 4096 divided by 4, which is equal to 1024 bytes or 1K byte.

As for the second part, it seems to be a multiple-choice question with the expression (X+Y)Z+W+1 resulting in 1 as the output. Without further context or values assigned to the variables, it is not possible to determine whether the statement is true or false.

To know more about memory banks visit:

https://brainly.com/question/31567696

#SPJ11

Javascript and java are really just two slightly different names for the same language.
a) True
b) False

Answers

Answer:

False

Explanation:

JavaScript is language used along with html documents.

Java is a full-fledged programming language that handles applications.

using code to set up and maintain systems in a consistent manner, with no mistyped commands, is known as .

Answers

Using code to set up and maintain systems in a consistent manner, with no mistyped commands, is known as automation.

Automation is the use of technology to accomplish a task with as little human interaction as possible. In computing, automation is usually accomplished by a program, a script, or batch processing.Basic automation : takes simple, rudimentary tasks and automates them. This level of automation is about digitizing work by using tools to streamline and centralize routine tasks, such as using a shared messaging system instead of having information in disconnected silos. Business process management (BPM) and robotic process automation (RPA) are types of basic automation.Process automation : manages business processes for uniformity and transparency. It is typically handled by dedicated software and business apps. Using process automation can increase productivity and efficiency within your business. It can also deliver new insights into business challenges and suggest solutions. Process mining and workflow automation are types of process automation.Integration automation : is where machines can mimic human tasks and repeat the actions once humans define the machine rules. One example is the “digital worker.” In recent years, people have defined digital workers as software robots that are trained to work with humans to perform specific tasks. They have a specific set of skills, and they can be “hired” to work on teams.

To know more about automation visit:

https://brainly.com/question/14096325

#SPJ4

Everything you do online is recorded in the cloud, but you can choose to erase it, as you have control over your digital footprint.

Group of answer choices

Answers

True. When you use online services or browse the internet, your activities can leave a digital footprint

What does this include?

This encompasses details like your past internet activity, virtual communications, and any other information that might be saved on remote servers or in online storage.

As a person, you possess some authority over the reflection of your online presence. You possess the option to eliminate specific information or accounts, modify your privacy preferences, or restrict the extent of your online disclosures.

Although it may be difficult to completely delete all digital records, being proactive can assist in controlling and reducing your online presence.

Read more about digital footprint here:

https://brainly.com/question/17248896

#SPJ1

1. Identify a local or regional cause or issue for Social Change related to specific professional tracks that can be addressed or tackled using an ICT Project for Social Change.
2. Analyze how target or intended users and audiences are expected to respond to the proposed ICT project for Social Change on the basis of content, value, and user experience

Answers

Answer:

56 J

Explanation:

Formula to find the kinetic energy is :

E_kEk = \frac{1}{2}21  × m × v²

Here ,

m ⇒ mass

v ⇒  velocity

Let us solve now

 E_kEk = \frac{1}{2}21 × m × v²

     = \frac{1}{2}21 × 7 kg × ( 4 ms⁻¹ )²

     = \frac{1}{2}21 × 7 × 16

     = \frac{1}{2}21 × 112

     = 56 J

Hope this helps you :-)

Let me know if you have any other questions :-)

Using the following chart, write an if/else if statement that assigns .10, .15, or .20 to commission, depending on the value in salesSales Commission RateUp to $10,000 10%$10,000 to $15,000 15%Over $15,000 20%

Answers

To write an if-else-if statement that assigns .10, .15, or .20 to commission, depending on the value in sales, the following code can be used:

if (sales <= 10000)

{

commission = sales * 0.10;

}

else if (sales <= 15000)

{

commission = sales * 0.15;

}

else

{

commission = sales * 0.20;

}

The above code first checks if sales are less than or equal to 10000. If yes, the commission is assigned 10% of sales. Else, it checks if sales are less than or equal to 15000. If yes, the commission is assigned 15% of sales. Otherwise, the commission is assigned 20% of sales.

To learn more about if-else-if statements visit : https://brainly.com/question/18736215

#SPJ11

You have recently joined in an academic programme to learn more about

programming. You have learnt a few programmes. Your teacher has now given you a

number of tasks to complete.


a) Explain the concept of an algorithm and describe common algorithmic

techniques and solutions.

b)Create a flowchart from the following algorithm.

Step 1: Input VALUE1, VALUE2

Step 2: if (VALUE1 > VALUE2) then

MAX VALUE1

else

MAX VALUE2

endif

Step 3: Print “The largest value is”, MAX

Answers

The concept of an algorithm simply refers to the procedure that is used in problem-solving.

The description of the common algorithmic techniques and solutions are:

Brute-force or exhaustive search.Divide and Conquer.Greedy Algorithms.Dynamic Programming.Branch and Bound Algorithm.Randomized Algorithm.Backtracking.

The sample flowchart:

START

Input

VALUE1,VALUE2

is

VALUE1>VALUE2

If yes

MAX  VALUE1

If no

MAX  VALUE2

Print

“The largest value is”, MAX

STOP

Read more about flowcharts here:

https://brainly.com/question/6532130

#SPJ1

In teaching the antonyms and synonyms of a word such as generosity, a teacher would be emphasizing which aspect of language?.

Answers

In teaching the antonyms and synonyms of a word such as generosity, a teacher would be emphasizing the vocabulary of the language.

What is synonyms?

This article discusses "synonym's" definition in its broadest sense. See Synonym for other usage. A term, morpheme, or phrase that in a particular language has the exact same meaning as another term, morpheme, or phrase is said to be a synonym. For instance, the words begin, start, commence, and begin are all synonyms of one another in the English language; they are interchangeable. A sentence's ability to retain its meaning when one form is substituted for another is the traditional test for synonymy. Words are only considered synonymous in a single context; for example, long and extended can both be used to mean lengthy time or extended time, but long cannot be used to mean wider family.

to learn more about synonyms
https://brainly.com/question/76433
#SPJ4

Need help plz 100 POINTS

Need help plz 100 POINTS
Need help plz 100 POINTS
Need help plz 100 POINTS
Need help plz 100 POINTS
Need help plz 100 POINTS

Answers

Answer:

1. 12 anything below that looks like a slideshow presentation lol

2. False I dont think so.

3. Length X Width

4. Almost all news programs are close up.

5. True

cost-effectiveness of inhaled corticosteroids in adults with mild-to-moderate asthma: results from the asthma policy model

Answers

Clinical practitioners in the United States continue to underutilize inhaled corticosteroids in the management of mild-to-moderate adult asthma.

In a cohort of patients aged 18 and older with FEV(1) values between 60% and 100% of predicted normal, the aim of this experiment was to determine the clinical effects, health-related quality of life, cost, and cost-effectiveness of inhaled corticosteroid therapy.

We compared the use of inhaled corticosteroid therapy along with quick relievers (such as short-acting beta-agonists) on an as-needed basis to the use of quick relievers alone.

To predict symptoms, acute exacerbations, quality-adjusted life years (QALYs), health care expenses, and cost-effectiveness, evaluated in both dollars per QALY gained and dollars per symptom-free day gained, a mathematical simulation model was created.

Learn more about corticosteroids:

https://brainly.com/question/28255810

#SPJ4

The complete question is '' what is the cost-effectiveness of inhaled corticosteroids in adults with mild-to-moderate asthma: results from the asthma policy model''.

perpare the algorithm to calcutate petimeter rectangular object of lenglth and breath are given and write its QBASIC program​

Answers

Answer:

See below.

Explanation:

Here's an algorithm to calculate the perimeter of a rectangular object with given length and breadth.

StartInput the length of the rectangular object and assign it to a variable, say L.Input the breadth of the rectangular object and assign it to a variable, say B.Calculate the perimeter of the rectangular object using the formula: P = 2(L + B)Display the perimeter of the rectangular object.End

Here's the QBASIC program to implement the above algorithm.

CLS

INPUT "Enter the length of the rectangular object: ", L

INPUT "Enter the breadth of the rectangular object: ", B

P = 2 * (L + B)

PRINT "The perimeter of the rectangular object is: "; P

END

In this program, the INPUT statement is used to get the values of length and breadth from the user, which are then used to calculate the perimeter of the rectangular object using the formula mentioned in the algorithm. The PRINT statement is used to display the calculated perimeter.

5.
1 point
*
*
dog#
Choose
This is a required question

Answers

Answer:

WHAT IS YOUR QUESTION ⁉️⁉️

SO I CAN HELP YOU

BECAUSE I APPLIED IN BRAINLER HELPER

Why can videos be streamed from one computer to another with excellent
quality?
A. They are received using either analog or digital signals.
B. They are transmitted using digital signals.
C. They are transmitted using analog signals.
D. They are received using both analog and digital signals.
SUBMIT

Answers

Answer:

I believe the answer is B.

Explanation:

They are transmitted using digital signals. The correct option is B.

What is video quality?

Video quality refers to how clear, sharp, and detailed the image of a video appears to the viewer.

Videos are typically transmitted as digital signals that can be easily encoded, compressed, and transmitted over the internet or other networks.

Maintaining the video stream's quality requires ensuring a stable and fast network connection between the sender and receiver, as well as employing efficient video compression techniques to reduce the amount of data that must be transmitted.

Furthermore, the use of buffering and other techniques can help to smooth out any fluctuations in network performance and ensure smooth and uninterrupted video playback.

Thus, the correct option is B.

For more details regarding video quality, visit:

https://brainly.com/question/9940781

#SPJ5

Why is it important for a photographer to understand the relationship between color and light?

Answers

Answer: Different light can cast a different impact on the picture. If a photographer knows how the light will change the picture, he or she can click the picture he wants.

can you give me some hints

How are the waterfall and agile methods of software development similar?

Both methods allow project teams to complete small portions of the entire project in small sprints and work on different steps simultaneously.

Both methods focus on development rather than planning, in order for project teams to work more quickly.

Both methods have project teams work on one step at a time and move on when the previous step is completed and approved.

Both methods require documentation so project teams stay on track and keep control over what version of the project they are working on.

Answers

Answer:

In the question "first and last", that is "option 1 and 4" is correct.

Explanation:

In the given question the numbering of the choices is missing. if we numbering the choices, then the first choice is on the 1 number, the second choice is in 2 and so on, in which the correct and the wrong choice can be  defined as follows:

In point 1, Both method, it divides the project into small parts, at it the working is easy, that's why it is correct. In point 4, Both method, it requires the documentation, that's why it tracks the project. In point 2 and 3, both were wrong because it focuses on both development and planning, and in Waterfall when one part is complete then it will go on the next part, but in the Agile, it does not use this technique.

What is 1 of the rules for naming variables?

Answers

Answer:

Rules for Naming VariablesThe first character must be a letter or an underscore (_). You can't use a number as the first character. The rest of the variable name can include any letter, any number, or the underscore. You can't use any other characters, including spaces, symbols, and punctuation marks.

#Markasbrainlessplease

what is cache memory?Mention its importance. ​

Answers

Explanation:

collection of items of the same type stored in a hidden or inaccessible place.

What is the order of execution of statements in the following Verilog code? Is there any ambiguity in the order of execution? What are the final values of a, b, c, d? initial begin a = 1'60; #0 C = b; end initial begin b = 1'b1; #0 d = a; end

Answers

In the given Verilog code , there are two initial blocks with different statements. The order of execution in Verilog is based on the timing control, in this case, "#0". Since both blocks have the same timing control, they are executed concurrently.

In Verilog, statements are executed sequentially unless a delay is introduced using the "#" symbol. In this code, two initial blocks are defined, which will be executed concurrently. The first block assigns the value 60 in binary to variable a and then assigns the value of b to c after a delay of 0 time units. The second block assigns the value 1 to variable b and then assigns the value of a to d after a delay of 0 time units. There is no ambiguity in the order of execution since the delays are the same. The final values of a, b, c, and d are 60, 1, 0, and 60 respectively.

Learn more about Verilog code https://brainly.com/question/31481735

#SPJ11

you need to develop an infrastructure that can be replicated and deployed in another aws region in a matter of minutes. which aws service might you use to build a reproducible, version-controlled infrastructure?

Answers

To promote economic growth and improve quality of life, infrastructure development entails building the fundamental support systems.

What do you meant by infrastructure development ?

Transportation, communication, sewage, water, and educational systems are a few examples of infrastructure. A region's economic growth and prosperity depend on infrastructure investments, which are frequently expensive and capital-intensive.

Result for the phrase "infrastructure development" Infrastructure projects include making new roads, creating new power plants, maintaining sewage systems, and supplying public water sources. Public infrastructure projects are the responsibility of the federal government or the state governments of a nation.

Infra- means "below," hence infrastructure is the "underlying structure" of a nation and its economy, i.e., the permanent fixtures required for its operation. Roads, bridges, dams, water and sewage systems, railways and subways, airports, and harbors are a few examples.

To learn more about infrastructure development  refer to:

https://brainly.com/question/14237202

#SPJ4

How can we solve mental stress?

Hello can anyone answer

Answers

Answer:

Please don't delete it. Because other people did!

Explanation:

Use guided meditation, Practice deep breathing, Maintain physical exercise and good nutrition!

Answer:

By making yourself comfortable around your environment.I know it can be hard but try making yourself feel distracted from stress.Have a break from what you are doing and take your time to heal.


Explanation:

Question # 3 Multiple Choice A data unit created at the transport layer by UDP is a _____. Responses datagram datagram packet packet frame frame segment

Answers

Answer:

A data unit created at the transport layer by UDP is a datagram.

Explanation:

The User Datagram Protocol (UDP) is a minimal, connectionless network protocol that belongs to the transport layer of the Internet protocol family. UDP enables applications to send datagrams to IP-based computer networks.

"How do Joey and Alana feel about participating in the hackathon?
A.They're worried about their friendship being challenged in the hackathon.
B. They're proud to have finally made it to the state-level hackathon.
C. They're eager to represent their computer club at the hackathon.
D.They're nervous about competing against other teams in the hackathon."

Answers

Joey and Alana's feelings about participating in the hackathon can be described as being eager to represent their computer club at the hackathon.

Among the given options, option C - "They're eager to represent their computer club at the hackathon" - best describes Joey and Alana's feelings about participating in the hackathon.

The statement suggests that Joey and Alana have a positive and enthusiastic attitude towards the hackathon. They see it as an opportunity to represent their computer club and showcase their skills and abilities in a competitive setting. Their eagerness implies a sense of excitement and anticipation for the event.

Option A - "They're worried about their friendship being challenged in the hackathon" - does not align with the information provided in the statement. There is no mention of concerns about their friendship.

Option B - "They're proud to have finally made it to the state-level hackathon" - does not directly convey their feelings. While it is possible that they feel proud, the statement does not explicitly mention it.

Option D - "They're nervous about competing against other teams in the hackathon" - is not mentioned in the statement. The focus is more on their eagerness to participate rather than nervousness.

Therefore, based on the information given, option C is the most suitable choice to describe Joey and Alana's feelings about participating in the hackathon.

To learn more about hackathon  Click Here: brainly.com/question/29316296

#SPJ11

8.6 Code Practice: Question 2

Instructions

Copy and paste your code from the previous code practice. If you did not successfully complete it yet, please do that first before completing this code practice.


After your program has prompted the user for how many values should be in the array, generated those values, and printed the whole list, create and call a new function named sumArray. In this method, accept the array as the parameter. Inside, you should sum together all values and then return that value back to the original method call. Finally, print that sum of values.


Sample Run

How many values to add to the array:

8

[17, 99, 54, 88, 55, 47, 11, 97]

Total 468

Answers

Answer:

import random

def buildArray(a, n):

   for i in range (n):

      a.append(random.randint(10,99))

     

arr = []

def sumArray(a):

   tot = 0

   for i in range(len(a)):

       tot = tot + a [i]

   return tot

       

   

arr = []

numbers = int(input("How many values to add to the array:\n"))

buildArray(arr, numbers)

print(arr)

print("Total " + str(sumArray(arr)) )

Explanation:

The program is an illustration of lists

Lists

Lists are variables that are used to hold multiple values in one variable name

Python Program

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

#This gets the number of inputs to the array

n = int(input("How many values to add to the array: "))

#This initializes the sum to 0

sumArray = 0

#This initializes a list

myList = []

#This iterates through n

for i in range(n):

   #This gets input for the list elements

   num = int(input())

   #This appends the input to the list

   myList.Append(num)

   #This calculates the sum

   sumArray+=num

#This prints the list elements

print(myList)

#This prints the sum of the list elements

print("Total",sumArray)

Read more about lists at:

https://brainly.com/question/24941798

Write a program in the if statement that sets the variable hours to 10 when the flag variable minimum is set.

Answers

Answer:

I am using normally using conditions it will suit for all programming language

Explanation:

if(minimum){

hours=10

}

do a web search for open source and freeware intrusion detection tools. identify a commercial equivalent of one of the no-cost choices. what would the estimated cost savings be for an organization to use the open source or freeware versions? what other expenses would the organization need to incur to implement this solution?

Answers

Organizations can use a number of freeware and open-source intrusion detection programmes, including OSSEC, Suricata, and Snort. Cisco's Firepower is comparable to Snort in the business world.

Software that is publicly accessible for use, modification, and dissemination is referred to as open-source. Public access to the source code of open-source software enables developers to work together, enhance it, and adapt it to their specific needs. A community of developers who donate their time and skills frequently produce and maintain open-source software. The open-source movement encourages communication, cooperation, and creativity in the creation of software. A growing number of people now use open-source software because of its adaptability, dependability, and affordability. Open-source software has been adopted by many organisations, including big businesses and governmental institutions, as a way to cut costs and boost creativity in their IT systems.

Learn more about open-source here:

https://brainly.com/question/20226948

#SPJ4

How many bit strings of length seven either begin with two 0s or end with three 1s?

Answers

To find the number of bit strings of length seven that either begin with two 0s or end with three 1s, we can use the principle of inclusion-exclusion.

First, let's find the number of bit strings that begin with two 0s. Since the first two digits must be 0, there are only two choices for those two digits. The remaining five digits can be either 0 or 1, so there are 2^5 = 32 possible bit strings that begin with two 0s.Next, let's find the number of bit strings that end with three 1s. Since the last three digits must be 1, there is only one choice for those three digits. The remaining four digits can be either 0 or 1, so there are 2^4 = 16 possible bit strings that end with three 1s.However, we have double-counted the bit strings that both begin with two 0s and end with three 1s (i.e. bit strings that are all 0s or all 1s). There are only two of these, so we need to subtract them from our total countTherefore, the total number of bit strings of length seven that either begin with two 0s or end with three 1s is:

32 + 16 - 2 = 46

So there are 46 such bit strings.

For more such question on exclusion

https://brainly.com/question/27975057

#SPJ11

Define a function below, posodd_number_filter, which takes a single numerical argument. Complete the function to return accepted if the input is positive and odd. Otherwise, return rejected.

Answers

The program is an illustration of functions.

What are functions?

Functions are set of program statements that are executed when called or evoked.

The main program

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

#This defines the function

def posodd_number_filter(num):

   #This checks if the function is odd and positive

   if num >0 and num%2 ==1:

       #If yes, this returns Accepted

       return "Accepted"

   #If no, this returns Rejected

   return "Rejected"

Read more about functions at:

https://brainly.com/question/14284563

yo can someone hook me up with some uranium

Answers

bet where u stay at?

Answer:

now how we gon do dat

Explanation:

...

Drag each label to the correct location. Not all labels will be used.
complete the algorithm that accepts a list of names from a user and displays the longest name
1. Start.
2. Start to read the list of names name[]
3. Set name as "".
4. Set length as 0
5.
6. If you have reached the end of this list then go to step 12
7. If the length of the current name is greater than length, then go to step eight, else go step 10.
8. Set length as the length of the current name
9. Set name as the current name
10. Advance to the next name
11.
12. Display name
13. Stop

Drag each label to the correct location. Not all labels will be used.complete the algorithm that accepts

Answers

Answer:

1. Start.

2. Start to read the list of names name[]

3. Set name as

4. Set length as O

5. For each name in the list:

6. If the length of the current name is greater than length, then go to step eight, else go step 10.

7. Set length as the length of the current name

8. Set name as the current name

9. Advance to the next name

10. End the loop

11. Display name

12. Stop.

What parts of the computer does it not need to function?​

Answers

Fancy lights, mouse, keyboard, you can do fan but the computer will eventually overheat, it need coolant for it to run for a long while
Other Questions
Question 10 of 20 One of the Union's major advantages during the early years of the Civil War was having: O A. alliances with European countries. B. a more industrialized economy. O C. a highly organized military. O D. few political divisions. Real inductors have series resistance associated with the wire used to wind the coil. Suppose that we want to store energy in a 10-H inductor. Determine the limit on the series resistance so the energy remaining after one hour is at least 75 percent of the initial energy. Who are the two voices speaking in Part VI of The Rime of the Ancient Mariner?a. the Pilot and the Hermitthe souls of two of the crewb.Life-in-Death and Deaththe Polar Spirit's fellow demonsPlease select the best answer from the choices providedAc.d.D On March 1, Ben, a property owner, and Carl, a licensed contractor, executed a written agreement containing the following provisions:1. Carl agrees to construct a residence using solar panels and related electrical equipment manufactured by Sun Company ("Sun") and to complete construction before Thanksgiving.2. Ben agrees to pay Carl $200,000 upon completion of construction.3. Ben and Carl agree that this written agreement contains the full statement of their agreement.Ben and Carl agree that this written agreement may not be modified except upon written consent of both of them. Prior to execution of the written agreement, Ben told Carl that Carl had to use Sun solar panels and related electrical equipment because Sun was owned by Bens brother, and that Carl had to complete construction prior to Thanksgiving. Carl assured Ben that he would comply. Ben was going to use the property to develop his brothers business for Sun solar as a show room. In August, Ben began to doubt whether Carl would complete construction prior to Thanksgiving; Ben offered Carl a $25,000 bonus if Carl would assure completion, and Carl accepted and gave his assurance. To complete construction prior to Thanksgiving, Carl had to use solar panels and related electrical equipment of equal grade manufactured by one of Suns competitors because Sun was temporarily out of stock.Carl completed construction prior to Thanksgiving. Ben, however, has refused to pay Carl anything. What are Carls rights and remedies against Ben? Discuss. Which of the following is true about treatment of benign prostatic hypertrophy?The goal of treatment is to relieve the bothersome symptoms.Alpha-adrenergic blockers are used to treat patients with relatively small prostate glands.Alpha-adrenergic blockers relax the smooth muscle of the bladder neck and prostate for ease of voiding.Finasteride (Proscar) is the drug of choice for males with large prostate glands.All of the above statements are true. which of the post beep codes would be an indicator of ram failure? winter sports apparel issued convertible debt securities. which of the following statements is true regarding their journal entries as a result of this issuance? Your buddy Joseph wants your advice. He presents you with the utility schedule above and wants to know how many units of Product B he should purchase to maximize his utility. He tells you the price of Product A is $4 and the price of ProductBis$5. Joseph informs you he only wants to spend $37. How many units of Product B do you tell Joseph to purchase? the smallest unit of liquid volume in the apothecary system is the Martin Supply Service paid 350dollars cash to a materials supplier that it owed from the previous month.Which of the following accounts decrease ?a) Acoount Payableb)Owners Capitalc)Office Suppliesd)Account Receivable Set up an integral that represents the length of the curve. Then use your calculator to find the length correct to four decimal places.y = xex, 0 x 2 Operating leverage exists when:Multiple Choicea company utilizes debt to finance its assets.management buys enough of the company's shares of stock to take control of the corporation.the organization makes purchases on credit instead of paying cash.small percentage changes in revenue produce large percentage changes in profit. determine which of the statements below is correct regarding the future value of an ordinary annuity. a person plans to obtain quick money through illegal gambling, but realizes that they might get arrested. this prevents them from going ahead with their plan. according to freud's psychoanalytic theory, which of the following structures most likely stopped this person from going ahead with their plan? the animus the persona the superego the anima Simplify the lefthandside so that LHS = RHS: - 2 tan(x) + 1 cos(2) 1+ sin(2) 1 - sin(x) OS = = 1+ sin(2) 1 - sin(2) Given the first order differential equation dy_2y + t dt 2yt = -, find the general solution for y by 1.1 using the substitution y = vt. (8) 1.2 rewriting the equation as a Bernouli equation and solving as a Bernoulli equation. (8) [16] QUESTION 2 Find the general solution for the following differential equation using the method of undetermined coefficients dy_36y=cosh3x. (10) dx [10] QUESTION 3 Find the general solutions of the following differential equations using D-operator methods: 3.1 (D-5D+6)y=e-x + sin 2x (8) 3.2 (D +2D+4) y = ex sin 2x (8) between smokers and nonsmokers, random samples from each group were selected. the sample proportion of people with Bulldogs Inc. has sales of P3,000,000. Its credit period and average collection period are both 30 days and 1% of its sales end up as bad debts. The general manager intends to extend the credit period to 45 days which will increase sales by P300,000. However, bad debts losses on the incremental sales would be 3%. Costs of products and related expenses amount to 40% exclusive of the cost of carrying receivables of 15% and bad debts expenses. The change in the credit policy would result to increase (decrease) in incremental profit of (Use 360 days a year) Many architects are innovators. Select the examples of innovation presented in this chapter.A. ArchesB. Flying buttressesC. Horizontal ribbon windowsD. Flat pack modulesE. Solar panels with DC microgridsF. A, B, and C onlyG. A, B, and D only True or False - Temperatures in the desert did not fluctuate (change) much from day to night