What is the importance of larger fonts? Explain with the help of examples. ​

Answers

Answer 1

Answer: See explanation

Explanation:

The importance of larger fonts is that we should note that when words are being presented in the larger font size, such words are considered to be more memorable and also such words are typically rated with judgments of learning that is high.

It is believed also that people the size of the fonts affect the memory of people. The larger the font size, the larger the importance of such word that is being portrayed.


Related Questions

And office now has a total of 35 employees 11 were added last year the year prior there was a 500% increase in staff how many staff members were in the office before the increase

Answers

There were 5 staff members in the office before the increase.

To find the number of staff members in the office before the increase, we can work backward from the given information.

Let's start with the current total of 35 employees. It is stated that 11 employees were added last year.

Therefore, if we subtract 11 from the current total, we can determine the number of employees before the addition: 35 - 11 = 24.

Moving on to the information about the year prior, it states that there was a 500% increase in staff.

To calculate this, we need to find the original number of employees and then determine what 500% of that number is.

Let's assume the original number of employees before the increase was x.

If we had a 500% increase, it means the number of employees multiplied by 5. So, we can write the equation:

5 * x = 24

Dividing both sides of the equation by 5, we find:

x = 24 / 5 = 4.8

However, the number of employees cannot be a fraction or a decimal, so we round it to the nearest whole number.

Thus, before the increase, there were 5 employees in the office.

For more questions on staff members

https://brainly.com/question/30298095

#SPJ8

Attempting to write a pseudocode and flowchart for a program that displays 1) Distance from sun. 2) Mass., and surface temp. of Mercury, Venus, Earth and Mars, depending on user selection.

Answers

Below is a possible pseudocode and flowchart for the program you described:

What is the pseudocode  about?

Pseudocode:

Display a menu of options for the user to choose from: Distance, Mass, or Surface Temperature.Prompt the user to select an option.If the user selects "Distance":a. Display the distance from the sun for Mercury, Venus, Earth, and Mars.If the user selects "Mass":a. Display the mass for Mercury, Venus, Earth, and Mars.If the user selects "Surface Temperature":a. Display the surface temperature for Mercury, Venus, Earth, and Mars.End the program.

Therefore, the Flowchart:

[start] --> [Display menu of options] --> [Prompt user to select an option]

--> {If "Distance" is selected} --> [Display distance from sun for Mercury, Venus, Earth, and Mars]

--> {If "Mass" is selected} --> [Display mass for Mercury, Venus, Earth, and Mars]

--> {If "Surface Temperature" is selected} --> [Display surface temperature for Mercury, Venus, Earth, and Mars]

--> [End program] --> [stop]

Read more about pseudocode  here:

https://brainly.com/question/24953880

#SPJ1

4.3 lesson practice phython

Answers

Answer:

user input loop

count variable

user input

Explanation:

these are you answers

Write an application that asks the user to enter a 10-character telephone number in the for- mat XXX-XXX-XXXX. The application should display the telephone number with any alphabetic characters that appeared in the original translated to their numeric equivalent. For example, if the user enters 555-GET-FOOD the application should display 555-438-3663.

Answers

Using the knowledge in computational language in python it is possible to write a code that will write an application that asks the user to enter a 10-character telephone number in the for- mat

Writting the code:

def main():

   #character string

   numeric_phone=""

   #user inputs phone number

   alpha_phone = input('Enter 10-Digit phone number: ')

   # digit list

   digit_list = ["2", "3","4", "5", "6", "7", "8", "9", "0"]

   index=0

   # traverse the digits

   for ch in alpha_phone:

     # if digit alphabetic

       if ch.isalpha():

         # convert alphabet to uppercase

         ch.isupper()

         # if ch is A, B or C, then index set is 0

         if ch == "A" or ch=="B" or ch=="C":

             index=0

         # if ch is D, E or F, then index set is 1

         if ch == "D" or ch=="E" or ch=="F":

             index=1

         # if ch is G, H or I, then index set is 2

         if ch == "G" or ch=="H" or ch=="I":

             index=2

         # if ch is J, K or L, then index set is 3

         if ch == "J" or ch=="K" or ch=="L":

             index=3

         # if ch is M, N or O, then index set is 4

         if ch == "M" or ch=="N" or ch=="O":

             index=4

         # if ch is W, X, Y or Z, then index set is 7

         if ch == "W" or ch=="X" or ch=="Y" or ch=="Z":

             index=7

         # rest index is set to 6 according to telephone number

         if ch == "P" or ch=="Q" or ch=="R" or ch=="S" or ch == "T" or ch=="U" or ch=="V":

             index=6

         # get the digit from the list according to index

         ch = digit_list[index]

       # add to numeric_phone variable

       numeric_phone= numeric_phone+ch

   # print the number formed

   print(numeric_phone)

#main function called

main()

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

#SPJ1

Write an application that asks the user to enter a 10-character telephone number in the for- mat XXX-XXX-XXXX.

Help me with this ……..

Help me with this ..

Answers

Answer:

So is this talking about this pic?

Help me with this ..

Write a converter program for temperatures. This program should prompt the user for a temperature in Celsius. It should then convert the temperature to Fahrenheit and display it to the screen. Finally, it should convert the Fahrenheit temperature to Kelvin and display that to the screen.

Answers

Answer:

c = float(input("Enter the temperature in Celsius: "))

f = c * 1.8 + 32

print("The temperature in Fahrenheit: " + str(f))

k = (f - 32) / 1.8 + 273.15

print("The temperature in Kelvin: " + str(k))

Explanation:

*The code is in Python.

Ask the user to enter the temperature in Celsius

Convert the Celsius to Fahrenheit using the conversion formula and print it

Convert the Fahrenheit to Kelvin using the conversion formula and print it

FILL IN THE BLANK the expression being tested by the statement shown below will evaluate to true if var1 is____. if (!isdigit(var1)) an alphabetic character 9 a symbol such as $ or

Answers

The expression being tested by the statement shown below will evaluate to true if var1 is both an alphabetic character and a symbol such as $ or &. The correct option is d.

What is an expression?

A "statement," which is just a standalone unit of execution and returns nothing, is different from a "expression," which is a combination of values and functions that are merged and construed by the compiler to create a new value. Any space devoid of text or graphics on a document page.

The term "negative space," which is also used, comes from the fact that when printing on white paper, any areas that were not printed remained white.

Therefore, the correct option is d. both an alphabetic character and a symbol such as $ or &.

To learn more about (var1)), refer to the below link:

https://brainly.com/question/28488865

#SPJ1

The question is incomplete. Your most probably complete question is given below:

a. an alphabetic character

b. 9

c. a symbol such as $ or &

d. both an alphabetic character and a symbol such as $ or &

e. None of these

In VPython, which object can be used to create this object?

myObject =_____(pos= vector (0, 5, 2))

box
cube
prism

In VPython, which object can be used to create this object?myObject =_____(pos= vector (0, 5, 2))boxcubeprism

Answers

In VPython, Box object can be used to create this object. myObject =box (pos= vector (0, 5, 2))

What is VPython?

The VPython box object is capable of producing 3D structures like a cube, prism, or box. The box entity accepts various inputs, including pos (the center location of the box), size (the width, length, and height of the box), color (the hue of the box), and opacity (the level of transparency of the box).

As an example, suppose you want to fashion a red-colored box that measures 1 inch in length, 2 inches in width, and 3 inches in height, and is situated at coordinates (0, 5, 2) it will be: myObject = box(pos=vector(0, 5, 2), size=vector(1, 2, 3))

Learn more about Box object from

https://brainly.com/question/28780500

#SPJ1

3.15 LAB: Countdown until matching digits
Write a program that takes in an integer in the range 20-98 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical.

Ex: If the input is:

93
the output is:

93 92 91 90 89 88
Ex: If the input is:

77
the output is:

77
Ex: If the input is:

15
or any value not between 20 and 98 (inclusive), the output is:

Input must be 20-98.


#include

using namespace std;

int main() {

// variable

int num;



// read number

cin >> num;

while(num<20||num>98)

{

cout<<"Input must be 20-98 ";

cin>> num;

}



while(num % 10 != num /10)

{

// print numbers.

cout<
// update num.

num--;

}

// display the number.

cout<
return 0;

}




I keep getting Program generated too much output.
Output restricted to 50000 characters.

Check program for any unterminated loops generating output

Answers

Answer:

See explaination

Explanation:

n = int(input())

if 20 <= n <= 98:

while n % 11 != 0: // for all numbers in range (20-98) all the identical

digit numbers are divisible by 11,So all numbers that

​​​​​​ are not divisible by 11 are a part of count down, This

while loop stops when output digits get identical.

print(n, end=" ")

n = n - 1

print(n)

else:

print("Input must be 20-98")

Following Aristotle,man by nature is a political animal,justify the above claim in the light of the Russian invasion of Ukraine

Answers

Following Aristotle, man by nature is a political animal using the claim in the light of the Russian invasion of Ukraine is that:

Aristotle stated that State is natural due to the fact that nature has not made man to be in a self-sufficient state. But Man has a lot of -different type of needs  which they want them to be fulfilled. Russian need and Ukraine need differs and as such, man is fighting to satisfy their needs.

What is the quote about?

In his Politics, Aristotle was  known to be a man who believed man to be a "political animal" due to the fact that he is a social creature that is said to have the power of speech and also one that has moral reasoning:

He sate that man is a lover of war and as such, Aristotle stated that State is natural due to the fact that nature has not made man to be in a self-sufficient state. But Man has a lot of -different type of needs  which they want them to be fulfilled. Russian need and Ukraine need differs and as such, man is fighting to satisfy their needs.

Learn more about Aristotle from

https://brainly.com/question/24994054

#SPJ1

Which line of code will find the first occurrence of a three in an array?

Assume that you have previously imported the array module and created the array.

arr.index(3)
index(arr, 3)
arr.index[3]
index[arr,3]

Answers

Answer:

It is arr.index(3)

Explanation:

The line of code that will find the first occurrence of a three in an array is arr. index(3). The correct option is A.

What is an array?

An array is a collection of data of similar types. For example, if we want to store the names of 100 people, we can create a string array that can hold 100 names.

An array is a group of related data elements that are stored in adjacent memory regions. It is the most basic data structure since each data element may be accessed directly by using only its index number.

To build an array, supply the data type (such as int) and the array name in square brackets []. To add values to it, use a comma-separated list enclosed by curly braces: myNumbers int

Therefore, the correct option is A. arr.index(3).

To learn more about array, refer to the link:

https://brainly.com/question/19570024

#SPJ5

What types of files we do backup in UNIX and Linux?

Answers

Answer:

Nas ja kaki yawe diy. Kitu mu chuk k a jana a.

Explanation:

Karu explain pudi diya chal puter chuti kar.

sir bilal wants to know your arid number for 2 extra grades.

1. Good URI Design
Which of the following are true regarding good URI design?
Pick ONE OR MORE options
URIS should never be changed.
URIS must be constructed by the client.
URIS should be short in length.
URIS should be case-sensitive.
HTTP verbs should be used instead of operation names in URIS.
Use spaces when designing a URI.
Redirection must be used if a change in URI is required.

Answers

The statement that are true regarding good URI design are:

Good URI Design URIs should be short in length. HTTP verbs should be used instead of operation names in URIS.URIs should never be changed.

What is the meaning of the term URIs?

A Uniform Resource Identifier (URI) is known to be a term that is said to be special or  unique because it is the sequence of characters that helps to tell a logical or physical resource that is known to be used by web technologies.

Note that the URIs id one that can be used to know anything, such as real-world objects, people and places, concepts, and others.

Hence, The statement that are true regarding good URI design are:

Good URI Design URIs should be short in length. HTTP verbs should be used instead of operation names in URIS.URIs should never be changed.

Learn more about URIs from

https://brainly.com/question/13267226

#SPJ1

Code a Python program that uses a graphical user interface (GUI) to address a real-world problem. Within reason, you may choose to address any real-world problem that you would like; however, please only choose a real-world problem that is both safe and legal.

Answers

Answer:

Explanation:

The following is a simple GUI Python program that solves for the different variables in a Pythagorean theorem equation, which is a real-world problem that many students have to face on a daily basis. The output can be seen in the attached picture below. Due to technical difficulties, I have added the code as a txt file attachment.

Code a Python program that uses a graphical user interface (GUI) to address a real-world problem. Within

A scared kangaroo clears a fence that is 2.44 meters tall. What is the vertical component of the kangaroos velocity at take off ? If the horizontal component of the kangaroos velocity is 4.80 m per s at what angle did the kangaroo take off the ground? (hint: at its maximum height the kangaroos vertical velocity is 0)

Answers

Answer:

a) The vertical component of the kangaroo's velocity at take off is approximately 4.982 meters per second.

b) The angle at which the kangaroo took off the ground is approximately 46.066º.

Explanation:

a) According to the statement, the kangaroo has an initial horizontal velocity and jumps to overcome the fence until velocity becomes zero. If effects from non-conservative forces can be neglected, then we represent the situation of the kangaroo by Principle of Energy Conservation:

\(K_{1}+U_{g,1} = K_{2}+U_{g,2}\) (Eq. 1)

Where:

\(K_{1}\), \(K_{2}\) - Initial and final translational kinetic energies, measured in joules.

\(U_{g,1}\), \(U_{g,2}\) - Initial and final gravitational potential energies, measured in joules.

By definitions of translational kinetic and potential gravitational energies, we expand and simplify the equation above:

\(\frac{1}{2}\cdot m\cdot [(v_{1,x}^{2}+v_{1,y}^{2})-(v_{2,x}^{2}+v_{2,y}^{2})] = m\cdot g \cdot (y_{2}-y_{1})\)

\(\frac{1}{2}\cdot [(v_{1,x}^{2}+v_{1,y}^{2})-(v_{2,x}^{2}+v_{2,y}^{2})] = g \cdot (y_{2}-y_{1})\) (Eq. 2)

Where:

\(m\) - Mass of the kangaroo, measured in kilograms.

\(g\) - Gravitational acceleration, measured in meters per square second.

\(y_{1}\), \(y_{2}\) - Initial and final heights of the kangaroo above the ground, measured in meters.

\(v_{1,x}\), \(v_{1,y}\) - Vertical and horizontal initial velocities, measured in meters per second.

\(v_{2,x}\), \(v_{2,y}\) - Vertical and horizontal final velocities, measured in meters per second.

If we know that \(v_{1,x} = 4.80\,\frac{m}{s}\), \(v_{2, x} = 0\,\frac{m}{s}\), \(v_{2,y} = 0\,\frac{m}{s}\), \(g = 9.807\,\frac{m}{s^{2}}\) and \(y_{2}-y_{1} = 2.44\,m\), then (Eq. 2) is reduced into this:

\(11.52+0.5\cdot v_{1,y}^{2}=23.929\)

Lastly, we solve for \(v_{1,y}\):

\(0.5\cdot v_{1,y}^{2}=12.409\)

\(v_{1,y}^{2} = 24.818\)

\(v_{1,y} \approx 4.982\,\frac{m}{s}\)

The vertical component of the kangaroo's velocity at take off is approximately 4.982 meters per second.

b) The angle at which the kangaroo took off the ground (\(\theta\)), measured in sexagesimal degrees, is obtained by the following inverse trigonometric relation:

\(\theta =\tan^{-1}\left(\frac{v_{1,y}}{v_{1,x}} \right)\) (Eq. 3)

\(\theta = \tan^{-1}\left(\frac{4.982\,\frac{m}{s} }{4.80\,\frac{m}{s} } \right)\)

\(\theta \approx 46.066^{\circ}\)

The angle at which the kangaroo took off the ground is approximately 46.066º.

b. Some of Company X's new practices and systems are unethical. Business ethics is a set of codes
about how a business should conduct itself. In what ways is Company X not applying ethical practices?
(1 point)

Answers

Answer:

They are changing schedules without proper notice, cutting workers without proper notice and falsely advertising.

Explanation:

Advantages that excel have over paper and pen work​

Answers

Answer:

You can use formulas to create systems on excel.

Explanation:

Some scientists say that robots my become self - aware in the near future Do you think this is possible?​

Answers

Answer:

i believe that robots could become self aware because its called artificial intelligence, and that means that they can pretty much think for themselves

Explanation:

its just my opinion but i hope i helped!

Online privacy and data security are a growing concern. Cybercrime is rampant despite the various security measures taken.

-Mention five tools to safeguard users against cybercrime. How do these tools help decrease crime?
-Provide the details of how each of these tools work.
-Describe how these tools are helping to restrict cybercrime.

Answers

Answer:

The SANS Top 20 Critical Security Controls For Effective Cyber Defense

Explanation:

Password/PIN Policy

Developing a password and personal identification number policy helps ensure employees are creating their login or access credentials in a secure manner. Common guidance is to not use birthdays, names, or other information that is easily attainable.

Device Controls

Proper methods of access to computers, tablets, and smartphones should be established to control access to information. Methods can include access card readers, passwords, and PINs.

Devices should be locked when the user steps away. Access cards should be removed, and passwords and PINs should not be written down or stored where they might be accessed.

Assess whether employees should be allowed to bring and access their own devices in the workplace or during business hours. Personal devices have the potential to distract employees from their duties, as well as create accidental breaches of information security.

As you design policies for personal device use, take employee welfare into consideration. Families and loved ones need contact with employees if there is a situation at home that requires their attention. This may mean providing a way for families to get messages to their loved ones.

Procedures for reporting loss and damage of business-related devices should be developed. You may want to include investigation methods to determine fault and the extent of information loss.

Internet/Web Usage

Internet access in the workplace should be restricted to business needs only. Not only does personal web use tie up resources, but it also introduces the risks of viruses and can give hackers access to information.

Email should be conducted through business email servers and clients only unless your business is built around a model that doesn't allow for it.

Many scams and attempts to infiltrate businesses are initiated through email. Guidance for dealing with links, apparent phishing attempts, or emails from unknown sources is recommended.

Develop agreements with employees that will minimize the risk of workplace information exposure through social media or other personal networking sites, unless it is business-related.

Encryption and Physical Security

You may want to develop encryption procedures for your information. If your business has information such as client credit card numbers stored in a database, encrypting the files adds an extra measure of protection.

Key and key card control procedures such as key issue logs or separate keys for different areas can help control access to information storage areas.

If identification is needed, develop a method of issuing, logging, displaying, and periodically inspecting identification.

Establish a visitor procedure. Visitor check-in, access badges, and logs will keep unnecessary visitations in check.

Security Policy Reporting Requirements

Employees need to understand what they need to report, how they need to report it, and who to report it to. Clear instructions should be published. Training should be implemented into the policy and be conducted to ensure all employees understand reporting procedures.

Empower Your Team

One key to creating effective policies is to make sure that the policies are clear, easy to comply with, and realistic. Policies that are overly complicated or controlling will encourage people to bypass the system. If you communicate the need for information security and empower your employees to act if they discover a security issue, you will develop a secure environment where information is safe.

Answer:

anyone know if the other answer in right?

Explanation:

3. What is a process in software engineering

Answers

a process of dividing software development work into smaller,parallel, or sequential steps or sub-processes to improve design, product management

https://www.celonis.com/solutions/celonis-snap

Using this link

To do this alternative assignment in lieu of Case 2, Part 2, answer the 20 questions below. You
will see on the left side of the screen a menu for Process Analytics. Select no. 5, which is Order
to Cash and click on the USD version. This file is very similar to the one that is used for the BWF
transactions in Case 2, Part 2.
Once you are viewing the process analysis for Order to Cash, answer the following questions:
1. What is the number of overall cases?
2. What is the net order value?
Next, in the file, go to the bottom middle where you see Variants and hit the + and see what it
does to the right under the detail of variants. Keep hitting the + until you see where more than a
majority of the variants (deviations) are explained or where there is a big drop off from the last
variant to the next that explains the deviations.
3. What is the number of variants you selected?
4. What percentage of the deviations are explained at that number of variants, and why did you
pick that number of variants?
5. What are the specific variants you selected? Hint: As you expand the variants, you will see on
the flowchart/graph details on the variants.
6. For each variant, specify what is the percentage of cases and number of cases covered by that
variant? For example: If you selected two variants, you should show the information for each
variant separately. If two were your choice, then the two added together should add up to the
percentage you provided in question 4 and the number you provided in question 3.
7. For each variant, how does that change the duration? For example for the cases impacted by
variant 1, should show a duration in days, then a separate duration in days for cases impacted
by variant 2.
At the bottom of the screen, you see tabs such as Process, Overview, Automation, Rework, Benchmark,
Details, Conformance, Process AI, Social Graph, and Social PI. On the Overview tab, answer the
following questions:
8. In what month was the largest number of sales/highest dollar volume?
9. What was the number of sales items and the dollar volume?
10. Which distribution channel has the highest sales and what is the amount of sales?
11. Which distribution channel has the second highest sales and what is the amount of sales?
Next move to the Automation tab and answer the following questions:
12. What is the second highest month of sales order?
13. What is the automation rate for that month?
Nest move to the Details tab and answer the following questions:
14. What is the net order for Skin Care, V1, Plant W24?
15. What is the net order for Fruits, VV2, Plant WW10?
Next move to the Process AI tab and answer the following questions:
16. What is the number of the most Common Path’s KPI?
17. What is the average days of the most Common Path’s KPI?
18. What other information can you get off this tab?
Next move to the Social Graph and answer the following questions:
19. Whose name do you see appear on the graph first?
20. What are the number of cases routed to him at the Process Start?

Answers

1. The number of overall cases are 53,761 cases.

2. The net order value of USD 1,390,121,425.00.

3. The number of variants selected is 7.4.

4. Seven variants were selected because it provides enough information to explain the majority of the deviations.

5. Seven variants explain 87.3% of the total variance, including order, delivery, credit limit, material availability, order release, goods issue, and invoice verification.

10. January recorded the highest sales volume, with 256,384 items sold for USD 6,607,088.00. Wholesale emerged as the top distribution channel, followed by Retail.

12. December stood out as the second-highest sales month,

13. with an automation rate of 99.9%.

14. Notable orders include Skin Care, V1, Plant W24 (USD 45,000.00) and

15. Fruits, VV2, Plant WW10 (USD 43,935.00).

17. The most common path had a KPI of 4, averaging 1.8 days.

18. This data enables process analysis and improvement, including process discovery, conformance, and enhancement.

19. The Social Graph shows Bob as the first name,

20. receiving 11,106 cases at the Process Start.

1. The total number of cases is 53,761.2. The net order value is USD 1,390,121,425.00.3. The number of variants selected is 7.4. The percentage of the total variance explained at 7 is 87.3%. Seven variants were selected because it provides enough information to explain the majority of the deviations.

5. The seven specific variants that were selected are: Order, Delivery and Invoice, Check credit limit, Check material availability, Order release, Goods issue, and Invoice verification.6. Below is a table showing the percentage of cases and number of cases covered by each variant:VariantPercentage of casesNumber of casesOrder57.2%30,775Delivery and Invoice23.4%12,591Check credit limit5.1%2,757

Check material availability4.2%2,240Order release4.0%2,126Goods issue2.4%1,276Invoice verification1.7%9047. The duration of each variant is as follows:VariantDuration in daysOrder24Delivery and Invoice3Check credit limit2Check material availability1Order release2Goods issue4Invoice verification1

8. The largest number of sales/highest dollar volume was in January.9. The number of sales items was 256,384, and the dollar volume was USD 6,607,088.00.10. The distribution channel with the highest sales is Wholesale and the amount of sales is USD 3,819,864.00.

11. The distribution channel with the second-highest sales is Retail and the amount of sales is USD 2,167,992.00.12. The second-highest month of sales order is December.13. The automation rate for that month is 99.9%.14. The net order for Skin Care, V1, Plant W24 is USD 45,000.00.15.

The net order for Fruits, VV2, Plant WW10 is USD 43,935.00.16. The number of the most common path’s KPI is 4.17. The average days of the most common path’s KPI is 1.8 days.18. Additional information that can be obtained from this tab includes process discovery, process conformance, and process enhancement.

19. The first name that appears on the Social Graph is Bob.20. The number of cases routed to Bob at the Process Start is 11,106.

For more such questions deviations,Click on

https://brainly.com/question/24251046

#SPJ8

ways to ask for help effectively include
a. ask with clarity b.ask with sincerity c. ask with an open mind d. all of these choices

Answers

Answer:

All of these choices

Explanation:

Clarity → the quality of being coherent and intelligible.

Sincerity → the quality of being free from pretense, deceit, or hypocrisy

Open mind → Open-mindedness is receptiveness to new ideas.

HACK ATTACK (MyPltw) MIT app inventor (1.2.2) - I need help on doing the actual hacking algorithm. If someone has done it before please show me how. These blocks are the ones that need to be edited.

HACK ATTACK (MyPltw) MIT app inventor (1.2.2) - I need help on doing the actual hacking algorithm. If

Answers

Answer: 1.4.3.6.2  Is the order they should be in from there!!!

Explanation:

identify any mechanism (gear, lever etc.) that is common to haul trucks, forklifts, graders, and excavators. (2)


describe the operation of this mechanism you have identified. (4)

Answers

One common mechanism found in haul trucks, forklifts, graders, and excavators is the hydraulic system.

How do they work?

The hydraulic system operates using fluid pressure to generate force and control various functions.

It consists of a hydraulic pump   that pressurizes the fluid, hydraulic cylinders that convertthe fluid pressure into mechanical force, and control valves that regulate the flow of fluid.

This system enables the   machines to perform tasks such as lifting heavy loads, steering,and controlling attachments with precision.

Learn more about hydraulic system at:

https://brainly.com/question/2166835

#SPJ1

Design a class named StockTransaction that holds a stock symbol (typically one to four characters), stock name, number of shares bought or sold, and price per share. Include methods to set and get the values for each data field. Create the class diagram and write the pseudocode that defines the class.
Design a class named FeeBearingStockTransaction that descends from StockTransaction and includes fields that hold the commission rate charged for the transaction and the dollar amount of the fee. The FeeBearingStockTransaction class contains a method that sets the commission rate and computes the fee by multiplying the rate by transaction price, which is the number of shares times the price per share. The class also contains get methods for each field.
Create the appropriate class diagram for the FeeBearingStockTransaction class and write the pseudocode that defines the class and the methods.
Design an application that instantiates a FeeBearingStockTransaction object and demonstrates the functionality for all its methods.

Answers

The class diagram and pseudocode for the StockTransaction class is given below

What is the class?

plaintext

Class: StockTransaction

-----------------------

- symbol: string

- name: string

- shares: int

- pricePerShare: float

+ setSymbol(symbol: string)

+ getSymbol(): string

+ setName(name: string)

+ getName(): string

+ setShares(shares: int)

+ getShares(): int

+ setPricePerShare(price: float)

+ getPricePerShare(): float

Pseudocode for the StockTransaction class:

plaintext

Class StockTransaction

   Private symbol as String

   Private name as String

   Private shares as Integer

   Private pricePerShare as Float

   Method setSymbol(symbol: String)

       Set this.symbol to symbol

   Method getSymbol(): String

       Return this.symbol

   Method setName(name: String)

       Set this.name to name

   Method getName(): String

       Return this.name

   Method setShares(shares: Integer)

       Set this.shares to shares

   Method getShares(): Integer

       Return this.shares

   Method setPricePerShare(price: Float)

       Set this.pricePerShare to price

   Method getPricePerShare(): Float

       Return this.pricePerShare

End Class

Read more about StockTransaction  here:

https://brainly.com/question/33049560

#SPJ1

Imagine you're an Event Expert at SeatGeek. How would you respond to this customer?

* Hi SeatGeek, I went to go see a concert last night with my family, and the lead singer made several inappropriate comments throughout the show. There was no warning on your website that this show would not be child friendly, and I was FORCED to leave the show early because of the lead singer's behavior. I demand a refund in full, or else you can expect to hear from my attorney.

Best, Blake

Answers

By Imagining myself as an Event Expert at SeatGeek.I would respond to the customer by following below.

Dear Ronikha,

Thank you for reaching out to SeatGeek regarding your recent concert experience. We apologize for any inconvenience caused and understand your concerns regarding the lead singer's inappropriate comments during the show.

We strive to provide accurate and comprehensive event information to our customers, and we regret any oversight in this case.

SeatGeek acts as a ticket marketplace, facilitating the purchase of tickets from various sellers. While we make every effort to provide accurate event details, including any warnings or disclaimers provided by the event organizers, it is ultimately the responsibility of the event organizers to communicate the nature and content of their shows.

We recommend reaching out directly to the event organizers or the venue where the concert took place to express your concerns and seek a resolution.

They would be in the best position to address your experience and provide any applicable remedies.

Should you require any assistance in contacting the event organizers or obtaining their contact information, please let us know, and we will be happy to assist you further.

We appreciate your understanding and value your feedback as it helps us improve our services.

Best regards,

Vicky

Event Expert, SeatGeek

For more such questions Event,click on

https://brainly.com/question/30562157

#SPJ8

During which part of an examination are various body parts and organs touched and felt?
O Auscultation
Palpation
Inspection
Percussion​

Answers

The correct answer is B. Palpation

Explanation:

In a medical exam or similar, the palpation involves touching different parts of the body to feel the organs and structures in this. This process is essential in diagnosis because palpation can reveal inflammation, pain in certain areas, or abnormalities. Additionally, palpation requires a broad knowledge of anatomy that allows health professionals to understand the structures of the body when they touch these and how to determine abnormalities. Thus, the part of an examination in which body parts are touched and felt is palpation.

Me Completan Pliiiis

Me Completan Pliiiis

Answers

Answer:

its in Spanish most people cant read Spanish

Explanation:

what is the difference between a storage device and storage medium. (with examples)​

Answers

Answer:

The device that actually holds the data is known as the storage device . The device that saves data onto the storage medium, or reads data from it, is known as the storage medium.

If D3=30 and D4=20, what is the result of the function
=IF(D4 D3, D3-D4, "FULL")?
0-10
O Unknown
O 10
O Full

Answers

Answer:

c. 10

Explanation:

Given

\(D3 = 30\)

\(D4 = 20\)

Required

The result of: \(=IF(D4 < D3,D3-D4,"FULL")\)

First, the condition D4 < D3 is tested.

\(D4 < D3 = 20 < 30\)

Since 20 < 30, then:

\(D4 < D3 = True\)

The condition is true, so:

D3 - D4 will be executed.

\(D3 - D4 = 30 - 20\)

\(D3 - D4 = 10\)

Hence, the result of the function is 10

Other Questions
What grade levels are covered in Brainly? If I am homeschooling a Kindergartener, a 3rd grader, and a 6th grader, will there be help for all of them? 5.If "x" and "y" are integers and 8^2x-y = 5^x-y+8, which of thefollowing is the value of x + y ?A) 24B) 22C) 18D) 12 which security protocol encrypts transmissions by iusing a shared secret key combined with an initializatrion vector Exercise 1 Write s if the sentence is simple or c if it is compound.We helped the neighbors rake leaves, and they helped us wash windows. At the beginning of the day, the temperature is -15oF. As the sun comes out, it warms to a high of 8oF. What is the difference in temperature throughout the day?PLEASE ANSWER FAST IM TIMEDDDD!!!! Read the excerpt from Midsummer by Derek Walcott.the childs fairy tale of an antic Englandfairy rings,thatched cottages fenced with dog roses,a green gale lifting the hair of Warwickshire.The allusion to the country province of Warwickshire help ASAP trying to get my missing work in by today grades are due at 2 pm Excerpt from Dombey and SonCharles Dickens"The House will once again, Mrs Dombey,' said Mr Dombey, 'be not only in name but in fact Dombey and Son, and he added, in atone of luxurious satisfaction, with his eyes half-closed as if he were reading the name in a device of flowers, and inhaling theirfragrance at the same time; 'Dom-bey and Son!"Why is Dombey so pleased with the birth of his child?A)He has always wanted a sonB)He never thought that he would be a father.C)He knows his own father would be proud of him.D)He is thrilled that the name of his business will continue. Provide an example of a contaminant of concern (COC) that has effectively been removed from the environment. What mechanisms or techniques have been used to remove the example COC? what is a good tie breaker score for march madness Marketing ManagementPlease answer all with with explanationTHANK YOU1) A major cell phone provider has become a market leader because it provides the most reliable network for its customers. This attribute best represents a point of ________.parityvaluedifferencereference2) A computer company claims to offer the most technologically advanced computers on the market. At the same time, potential customers are not likely to believe the company offers the most inexpensive computers on the market. This scenario best represents which of following points of parity?correlationalpsychologicalcompetitiveperceptual3) Greenthumb Lawn Company has developed a new fertilizer that provides completely organic weed prevention for up to five years after application. This new fertilizer can be best described as a ________ for Greenthumb.category point of paritycompetitive advantageframe of reference benchmarkproduct descriptor4) A company that manufactures disinfectant spray attempts to separate itself from its competition by highlighting a change in its formula that is designed to kill all traces of influenza on surfaces. Which competitive advantage strategy does this best represent?utilizing narrative brandingbuilding a strong brandrelying on the product descriptorintroducing a new attribute Given the following equation: 2 KClO3 2 KCI + 3 02. How many liters of oxygen are produced by reacting 12.0 moles of KCIO3 Use the discriminant to determine the number and type of solutions of the following quadratic equation. x^2+2x3=0 URGENT!!. Find the perimeter and area 9.85 m15 m11 m9m Rosie the Riveter became symbolic of how A. women could be as effective in the military as men. B. women could aid the US war effort C. racial equality was necessary to win the war. D. women were unqualified to work in US, factories, What trade routes influenced the Ottomans? Find the area of a circle with a circumference of 37.68 units. Is Trevor Lawrence hot FInd Deduction. Gross Pay: 1,837. 00Tax: 362. 81Deduction: ? Which action completes this cause-and-effect diagram? Given y = f(u) and u = g(x), find = f(g(x))g(x).y = 8u+ 3, U=(1/2)x^8Dy/dx=