a structural steel bar with 4.0 in x 0.875 in. rectangular cross section is subjected to an axial load of 45 kips. determine the maximum normal and shear stresses in the bar.

Answers

Answer 1

The maximum normal stress in the bar is 29.93 ksi and the maximum shear stress in the bar is 7.48 ksi.

To determine the maximum normal stress in the bar, we can use the formula:

σ_x = P/A

Where P is the axial load, A is the cross-sectional area of the bar, and σ_x is the normal stress in the bar.

A = bh

A = 40.875 = 3.5 in^2

σ_x = P/A

σ_x = 45000/3.5 = 12,857.14 psi = 12.857 ksi

To determine the maximum shear stress in the bar, we can use the formula:

τ_max = V/(bh/2)

Where V is the maximum shear load, b is the width of the cross-section, h is the height of the cross-section and τ_max is the maximum shear stress in the bar.

V = P/2

V = 45000/2 = 22500

τ_max = V/(bh/2)

τ_max = 22500/(4*0.875/2) = 7.48 ksi

For more questions like Shear stress  click the link below:

https://brainly.com/question/14946878

#SPJ4


Related Questions

Next, you prepare for the question-and-answer session that will follow your presentation. To predict what questions they may ask, you do a colleague test of your presentation. You should choose a colleague who has deep expertise in the electric vehicle industry. True or False

Answers

The production and marketing of automobiles with electric motors are referred to as the "electric vehicle industry." This covers electric vehicles such as automobiles, lorries, buses, and motorbikes. Although they have been around for a while, electric cars have only just begun to gain popularity.

What is the electric vehicle industry?

The price of electric cars is decreasing as battery technology advances. By 2030, it is anticipated that the price of electric vehicles will be lower than the price of gasoline-powered automobiles. All-electric and plug-in hybrid cars are the two primary categories of electric vehicles. While plug-in hybrids may operate on both gasoline and electricity, all-electric vehicles are only powered by electricity.

Globally, governments are encouraging the development of electric automobiles. Offering incentives like tax rebates and subsidies falls under this category. A specific percentage of sales automobiles must be electric according to various rules in some nations.

To know more about  electric vehicles visit:

https://brainly.com/question/29869646

#SPJ4

my android cell phone is no longer ringing when i make a call or can not here the party that has called me unless speaker is on

Answers

If your Android device is silent, in Airplane Mode, or set to Do Not Disturb, you can determine if the ringing is not caused by a user-related issue.

Why am I unable to hear my phone calls unless the speaker is on?

Make sure that automatic call audio routing is selected under Accessibility > Touch > Settings > Call Audio Routing. Try resetting your device or installing the most recent software.

When you call an Android but it doesn't answer, what does that mean?

When someone calls, your Android phone won't ring for a variety of reasons, including: Your ringer volume has been decreased. Your phone is in airplane or Do Not Disturb mode. You made call forwarding available. Bluetooth is paired with your phone.

To know more about Airplane Mode visit :-

https://brainly.com/question/28274546

#SPJ4

If you double your speed how much will that increase your braking distance?

Answers

For instance, the thinking distance will increase from 9 m to 18 m and the braking distance will grow by a factor of four from 14 m to 56 m if a car's speed is doubled from 30 mph to 60 mph.

The distance that a car travels while braking completely is known as the braking distance. A number of factors affect the braking distance. First, the braking distance will be impacted by the grade (slope) of the road. Gravity helps you stop more easily and shortens the stopping distance when you are moving uphill. Similar to how it works against you as you drop, gravity will lengthen your braking distance. Next, your braking distance may be impacted by the frictional resistance between the road and your tires. On a wet road, it's likely that you'll need greater stopping distance than you would on a dry road if you have old tires. Your beginning velocity will be the final factor we take into account.

Learn more about braking distance here:

https://brainly.com/question/21996254

#SPJ4

The VECI label includes all of these EXCEPT
O California emission standard
O EPA emission standard
O engine identification
O horsepower and torque rating of the engine

Answers

The VECI label includes all of these EXCEPT Horsepower and torque rating of the engine.

What is vehicle emission control information (VECI)?The vehicle's emissions certification can be found on the vehicle emission controlinformation (VECI) label located in the vehicle's engine compartment. The VECI labelincludes emissions certification, engine family or test group, engine displacement, OBD,model year, fuel type, and catalyst information. Sample VECI labels are shown below. TheCARB certified and 50-state certified vehicles (Examples 1-3) are subject to CARB certifiedAMCC requirements.The VECI label includes emissions certification, engine family or test group, engine displacement, OBD, model year, fuel type, and catalyst information.Emission control systems limit the release of harmful gases from cars into the atmosphere. This includes hydrocarbons, carbon monoxide, and oxides of nitrogen. Engines, crankcases, fuel tanks, and carburetors are all sources of these harmful gases.

To learn more about emissions refer to:

https://brainly.com/question/15872418

#SPJ1

you are working with a database that contains invoice data about online music purchases. you are only interested in invoices sent to customers located in the city of chicago. you want to sort the invoices by order total in ascending order. the order totals are listed in the total column. you write the sql query below. add an order by clause that will sort the invoices by order total in ascending order.
SELECT
*
FROM
invoice
WHERE
billing_ cily = "Paris"'
What total appears in row 6 of your query result?
0.99
3.96
8.91
2.98

Answers

The correct answer is Oslo. Oslo is the search result in row 15. This is because the billing city column's duplicate values are removed by the DISTINCT clause, and the ORDER BY clause arranges the outcomes according to invoice ID.

The result set may be sorted in either ascending or descending order using the ORDER BY keyword. Records are typically sorted using the ORDER BY keyword in ascending order. Use the DESC keyword to sort the data in descending order. With the ORDER BY clause in the Select statement, we may arrange the results in either ascending or descending order. To discover all sequences available to the schema user, use the select sequence name from all sequences; query. Numbers can be arranged in ascending order, from least value to highest value. The arrangement is left to right.

To learn more about column's  click the link below:

brainly.com/question/14744689

#SPJ4

1. suppose we have a stack that can grow indefinitely. we want to create a new type of stack data structure. the contents are templated and will always contain only comparable items (e.g., integers or strings, although you may not assume anything about the contents of the stack other than that any two are comparable: this means, given two elements a and b, we can determine if a < b and can also determine if a and b are equal). this new structure will have the usual stack public operations and also a new function findmin, which will return the smallest element currently in the stack. we could implement this by searching the contents, but that takes time linear in the number of elements in the stack. explain how you would change the new stack data structure to allow for this function to run in o(1) time. if you are storing additional private member data, state what else you are storing. if you are changing existing functions push, pop, or top (or the constructor/size functions), explain briefly how you are changing them. their running times must still be o(1); for example, you cannot search the full stack for the newest minimum value at every push and pop. explain in a few sentences how each change works and how, after any valid sequence of push and pop operations, we can always find the minimum element in the stack in o(1) time. your explanation should be sufficient that if, six months from now, you had to write the necessary modifications to a stack data structure written in your favorite programming language, using only your written description, you could do so. you may assume that there will never be a duplicate item pushed to the stack.

Answers

In order to accomplish operations, the stack uses the LIFO (last in, first out) sequence or methodology. Two types of data structures, an array, and a linked list, can be used to build stacks in data structures.

Array: When a stack is used, an array is used to create it. Arrays are the working tool for every action. Pushing an item into the stack and popping an item out of the stack are the only two operations permitted in pushdown stacks. It is only possible to add and delete components from a stack from the top, making it a limited-access data structure. Adding anything to the stack's top with a push, taking something away with a pop, is known as pushing.

To know more about  operations,

https://brainly.com/question/27529825

#SPJ4

calculate the number of kilowatt-hours (kw-hrs) consumed by an 850-watt window air conditioner turned on for four (4) hours.

Answers

The  kilowatt-hours consumed by an 850-watt window air conditioner turned on for four hours is 3.4 kw-h

Power is defined as the rate of work over a time period. Mathematically,

P = W/t

Where:

P = power

W = work done

t = time period

The unit of power is Watt which is equivalent to Joule/second. Another widely used unit is kw=h or kilowatt-hours.

Information available in the problem:

P = 850 Watt = 0.85 kw

t = 4 hours

Plug these parameters into the formula:

P = W/t

W = P x t

W = 0.85 x 4 = 3.4 kilowatt-hours.

Learn more about electrical power here:

https://brainly.com/question/9821162

#SPJ4

Please solve the following in Python or Java only
Lucy loves to play the Hop, Skip and Jump
game. Given an N*M matrix and starting from
cell (1,1), her challenge is to hop in an anti-
clockwise direction and skip alternate cells. The
goal is to find out the last cell she would hop
onto.
Write an algorithm to find the last cell Lucy
would hop onto after moving anti-clockwise
and skipping alternate cells.
Input
The first line of input consists of two integers-
matrix_ row and matrix_ col, representing the
number of rows (N) and the number of
columns (M) in the matrix, respectively.
The next M lines consist of N space-separated
integers representing the elements in each cell
of the matrix,
Output
Print an integer representing the last cell Lucy
would hop onto after following the given
instructions.
Example
Input.
3 3
29 3 37
15 41 3
1 10 14
Output
41
Explanation:
Lucy starts with 29, skips 15, hops onto 1, skip
10, hops onto 14, skips 3, hops onto 37, skips 8
and finally hops onto 41
So, the output is 41
Code in python
"""
matrix, represents the elements in each cell of the matrix of size N*M.
"""
def funcHopSkipJump(matrix):
# Write your code here
return
def main():
# input for matrix
matrix = []
matrix_rows, matrix_cols = map(int, raw_input().split())
for idx in range(matrix_rows):
matrix.append(list(map(int, raw_input().split())))
result = funcHopSkipJump(matrix)
print result,
if __name__ == "__main__":
main()

Answers

A set of integers arranged in rows and columns is known as a matrix (plural: "matrices") in computer science and mathematics.

What does a programming matrix mean?A set of integers arranged in rows and columns is known as a matrix (plural: "matrices") in computer science and mathematics. A matrix's numbers might be either data or mathematical formulae. They are utilised as a fast technique to approximate more difficult calculations.An algorithm is a step-by-step process that specifies a list of instructions to be carried out in a certain order in order to get the intended result. An algorithm can be implemented in more than one programming language since algorithms are often constructed irrespective of the underlying languages.Examples of everyday examples include the strategy used to solve a long division issue, how to make a cake, how to do laundry, and how a search engine works.

To learn more about algorithm refer to:

https://brainly.com/question/24953880

#SPJ4

Answer:

"""

matrix, represents the elements in each cell of the matrix of size N*M.

"""

def funcHopSkipJump(matrix):

# Write your code here

return

def main():

#input for matrix

matrix = []

matrix_rows,matrix_cols  = map(int, input().split())

for idx in range(matrix_rows):

 matrix.append(list(map(int, input().split())))

result = funcHopSkipJump(matrix)

print(result)

if __name__ == "__main__":

main()

Explanation:

"""

matrix, represents the elements in each cell of the matrix of size N*M.

"""

def funcHopSkipJump(matrix):

# Write your code here

return

def main():

#input for matrix

matrix = []

matrix_rows,matrix_cols  = map(int, input().split())

for idx in range(matrix_rows):

 matrix.append(list(map(int, input().split())))

result = funcHopSkipJump(matrix)

print(result)

if __name__ == "__main__":

main()

Installing an additional filter provides an extra level of protection for the compressor
and expansion valve or orifice tube.
true
false

Answers

It is accurate what is said. The compressor, expansion valve, and orifice tube are further protected when an additional filter is installed.

What is meant by orifice tube?The orifice tube expands the refrigerant but, unlike the expansion valve, is unable to control flow rate and superheating. It has a specific length and cross-section. At the evaporator output, an accumulator is always connected to the orifice tube.The A/C system's high and low pressure parts are separated by orifice tubes. Orifice tubes are a fairly straightforward item with no moving parts that also function as a refrigerant filter. Because orifice tubes can accumulate debris, they must always be replaced. Systems without expansion valves employ orifice tubes. The orifice tube regulates how much refrigerant enters the evaporator, similar to an expansion valve.

To learn more about orifice tube, refer to:

https://brainly.com/question/10011547

#SPJ1

TRUE/FALSE. rapid development programming languages have features like built-in libraries and tools, which make writing code faster.

Answers

Rapid development programming languages include tools and libraries built in that speed up writing code. True.

Which language has the most libraries?

Python is approachable and adaptable for a variety of programming tasks because it is based on English grammar. The well-known programming language Python has a sizable user base, robust libraries, and a wide range of frameworks.

Programming libraries are useful tools that can expedite a web developer's work. They provide prewritten, reusable code fragments so that developers may quickly and simply create programs.

What dialect is employed for quick prototyping?

The robust interactive environment that LISP offers enables the quick prototyping of intricate software. This has always been a key aspect of the language and has helped to increase its popularity for novel applications.

To know more about programming languages visit:-

https://brainly.com/question/9303346

#SPJ4

Prototypes do all of the following except

A)allow for experimentation with new ideas.

B) provide a way to test improvements and fix flaws.

C) create a physical model in the early design stages

D) remain unchanged throughout the design process

Answers

Prototypes don't do: (Option D) remain unchanged throughout the design process.

Prototypes are used to experiment with ideas, test improvements and fix flaws, and create physical models during the design process, but they can change throughout the design process.

Prototypes are used to experiment with ideas, test improvements and fix flaws, and create physical models during the design process. They are an important part of the design process, as they allow designers to identify problems, discover solutions to those problems, and make necessary changes during the development process. Prototypes are not static, and can change throughout the design process in order to more accurately reflect the final product. This allows designers to ensure that the final product meets their needs and the needs of their users.

Learn more about Prototypes: https://brainly.com/question/29450558

#SPJ4

HELP please thx it would help

Answers

Two or more resistors are said to be connected in series when the same amount of current flows through all the resistors.

Define resistors?

A resistor is an electrical component that limits or regulates the flow of electrical current in an electronic circuit. Resistors can also be used to provide a specific voltage for an active device such as a transistor.The resistor is a passive electrical component that creates resistance in the flow of electric current. In almost all electrical networks and electronic circuits they can be found. The resistance is measured in ohms (Ω).Examples of variable resistors are rheostat and digital potentiometer. Rheostats are electrical components made of a resistive wire wound around a ceramic core. In the past, they were used to control the amount of power in motors, heaters, and ovens.

To learn more about series refers to:

https://brainly.com/question/9494049

#SPJ1

write a complete java program that calculates the local annual tax for residents in where they live. input: annual income of a resident in dollar amount age of the resident. if the age is 60 or older, this resident is regarded as a senior person. processing: the tax rate for any individual with an annual income $50,000 or less is zero. the tax rate for any individual with an annual income $100,000 or less but more than $50,000 is 7%. other people will have a tax rate of 9%. second, determine the senior discount. if a resident has a non-zero tax rate after step 2.1 and is also a senior, his/her tax rate shall be reduced by 3%. at the end, with the tax rate finalized through steps 2.1 - 2.2, calculate the tax. output: display the following items with proper prompt. tax amount tax rate senior discount percentage rate if applied.

Answers

Amount= Percentage×GrossSalary/100 and then the below formula is used. This is a simple arithmetic calculation that will give you your desired result i.e., the net salary or salary-in-hand.

Define annual tax?

Annual Tax refers to the amount of real property tax owed on a property for a fiscal year, as calculated after deducting any amounts from which the property is exempt or whose payment has been suspended in accordance with the applicable laws.

A tax is a mandatory payment or charge that is gathered by local, state, and federal governments from citizens or companies to pay for essential public goods, services, and activities.

Progressive taxes are those in which a higher percentage of the income of high-income groups is taken than that of low-income groups. An equal percentage of income from each income group is taken as a tax under a proportional system. Regressive taxes—Taxes that take a larger percentage of low-income groups' income than high-income groups—are those that are imposed.

To learn more about tax refers to:

brainly.com/question/26316390

#SPJ4

An action plan is a written strategy used to achieve outlined goals. For the purposes of this assignment, the action plan will be created using PowerPoint. An action plan includes the components listed below, and you may refer to page 237 in the textbook for additional guidance. State the goal, which should identify what training content will be used and how it will be used. The goal for this action plan is to assist managers with identifying how performance appraisals are used to demonstrate the success of training efforts. Include the strategies for reaching the goal including what the trainee must do, what resources will be needed, and the type of support from managers and peers that will be necessary. Include the strategies for receiving the feedback, which will be used to demonstrate the success of the training efforts. Define the expected assessment results and how the results can be used to improve training. After the title slide, begin your action plan by stating the goal. Next, identify at least three strategies for reaching the goal. Briefly explain your chosen strategies with supporting data in the speaker notes section of the PowerPoint presentation. For the third part of the action plan, develop a 10-question survey that could be used to demonstrate the success of the plan. Conclude your action plan with a summary of the expected results and how the manager could use them to improve training. Here are some general guidelines to follow when preparing your PowerPoint presentation. Design your presentation with the back of the room in mind. It is important that everyone can easily see and read the content. Select a professional-looking slide design appropriate for the presentation and audience. White text on a dark background is the easiest for the audience to see. Use a large font size. Use color and graphics when appropriate. Illustrations should relate to the content being discussed. Be creative. Follow the 6 x 6 rule (i.e., use no more than six lines per slide and no more than six words per line). Utilize the speaker notes function to add your talking points. Bullet points work best on the slides. Add slide transitions to enhance the audience's experience.

Answers

Goals are main pillers of achivement and are the effective performance management process.

Training program should offer a variety of innovative programs. Programs should enhance knowledge, develop necessary skills, and enrich both the individual and the organization. Organizations must create a culture of learning.

Making departmental goals accessible to all managers ensures there is no overlap, reduces conflict, and allows members of different departments to see where they support each other and ensure they are not working at cross purposes.

          S – Specific

          M – Measurable

        A – Achievable/Attainable

        R – Results-Oriented/Realistic/Relevant

        T – Time-Bound

Use Peer Reviews.

Offer Frequent Performance Feedback.

Utilize Performance Management Software.

Define and Communicate Company Goals and Performance      Objectives.

Set Regular Meetings to Discuss Outcomes and Results.

Performance appraisal has three basic functions

(1) to provide adequate feedback to each individual on his or her performance.

(2) to serve as a basis for modifying or changing behavior toward more effective working habits.

(3) to provide data to managers with which they may judge future job assignments and compensation. The performance appraisal concept is central to effective management. Much hard and imaginative work has gone into developing and refining it. In fact, there is a great deal of evidence to indicate how useful and effective performance appraisal is. Yet present systems of performance appraisal do not serve any of these functions well.

4 steps to add an action plan

   Department: Choose the department you wish to create an Action Plan for from the list provided. This list includes all the departments you have been assigned access. You will want to create a separate action plan for each department.

   Category: Type the name of the category needing improvement. This category can be found on your standard survey report and is listed as an “Attitude Area.” For example, “Immediate Supervision” is an attitude area.

   Opportunity for Improvement: Select the description of the survey item you will be working to improve. Each survey item you are working on should have a separate action plan. For example, “My Supervisor Has Effective Communications” is a survey statement.

To know more about  performance management visit:

https://brainly.com/question/29833837

#SPJ4

Effective performance management relies on goals, which are the primary predictors of success.

Innovative programs should be offered by training programs. Knowledge should be expanded, skills should be developed, and both the individual and the organization should benefit from the programs. A learning culture must be established by organizations.

By making departmental goals accessible to all managers, overlap is avoided, conflicts are reduced, and members of different departments can see where they complement one another and ensure that they are not working against each other.

S stands for specific, M for measurable, A for attainable, Achievable, and Relevant, R for results-oriented, realistic, and relevant, and T for time-bound use and peer reviews.

Provide regular feedback on performance.

Make use of software for performance management.

Establish and Communicate Performance Objectives and Company Goals.

Establish regular meetings to discuss results and outcomes.

The first and most fundamental function of performance evaluation is to provide each employee with sufficient feedback on their performance.

(2) to provide a foundation for altering one's behavior in the direction of more efficient work practices.

(3) to provide managers with data they can use to evaluate future job assignments and pay. The idea of performance reviews is essential to efficient management. It has been developed and refined through a great deal of creative and laborious effort. In fact, there is a lot of evidence that performance evaluation is useful and effective. However, the current performance evaluation systems do not adequately fulfill any of these requirements.

Add an action plan in four steps Department: From the provided list, select the department for which you would like to develop an Action Plan. All of the departments to which you have been granted access are on this list. A distinct action plan should be developed for each department.

  Category: Enter the name of the category that needs to be improved. This category is referred to as an "Attitude Area" in the standard survey report. One example of an attitude area is "Immediate Supervision."

Possibility of Enhancement: Choose the description of the survey item that you intend to improve. A separate action plan should be created for each survey item that you are working on. A survey statement, for instance, is "My Supervisor Has Effective Communications."

To know more about performance management :

brainly.com/question/29833837

#SPJ4

gasoline is mixed with 8 ft3 of kerosene so that the volume of the mixture in the tank becomes 12 ft3 . determine the specific weight and the specific gravity of the mixture at standard temperature and pressure. 4 ft 2 ft 1 ft 3 ft\

Answers

The specific weight and the specific gravity of the mixture at standard temperature and pressure is 0.7868

  

Density of gasoline=48.693 l b/ f t^ 3

Density of kerosene=49.942 l b /f t^ 3


8 ft^3 of gasoline+4 ft^3 of kerosene.


resulting density= (8x48.693)+(4x49.942)/12=49.1 l b /f t^ 3

SG=P/PW=49.1/62.4=0.7868                                        

Blending gasoline with kerosene results in increased density, decreased volatility, and a lower octane rating.


You can make JP-4 jet fuel by combining it 50-50. Kerosene is heavier than gasoline and has a much higher flash point, making it more difficult to burn and start. For safety, the flash point of jet fuel (kerosene) is 100F, and the flash point of gasoline is -50F.  

To learn more about gasoline
https://brainly.com/question/29991915
#SPJ4

Which instruments are very reliable for static and stable conditions?

Answers

Answer:Instruments such as a mercury thermometer, a barometer, and a hygrometer are considered to be highly reliable for measuring static and stable conditions. These instruments are designed to measure temperature, pressure, and humidity respectively, and are equipped with precision sensors that can provide accurate and consistent readings over extended periods of time. Additionally, these instruments are often calibrated to ensure that they are functioning correctly and are able to provide accurate measurements even under stable conditions. Overall, these instruments are considered to be the best choice for measuring static and stable conditions in a variety of different settings.

assess reasonableness the designers of a new amusement park want to locate the restrooms the same distance from the park's entrance, the fountain, and the food court.

Answers

Yes, this is reasonable. It would be convenient for park visitors to have access to restrooms no matter which area of the park they are visiting.

What must be included in restrooms?

Restrooms must include a sink, toilet, and trash receptacle. It is also important to provide soap and paper towels or hand dryers for hand washing.

Mirrors, shelves, and a coat hook are also important to help keep the restroom tidy. Additionally, it is important to make sure the restroom is well-ventilated and has adequate lighting. It is also important to make sure the floor is slip-resistant and easy to clean.

For ADA compliance, the restroom should also include grab bars and appropriate signage. Finally, it is important to make sure the restroom is maintained regularly and kept clean and stocked with paper towels, soap, and toilet paper.

To learn more about Restrooms refer :

https://brainly.com/question/28996087

#SPJ4

The two member frame is pin connected at E. The cable is attached to D, passes over the smooth peg at C, and supports the 500-N load. Dtetermine the horizontal and vertical components at each pin.

Answers

The horizontal and vertical components at each pin is Ay =500N, Ax =2.50KN calculated with the help of equilibrium.

Create the member BD's free body diagram.

Think about that for a moment. B. MB = 0 Ex (0.5m) - Ey (0.5m) + 500 (2m) = 0 Ex (0.5m) - Ey (0.5m) = 1000 Ex (0.5m) - Ey (0.5m) = 2000

Create the member AC's free body diagram.

Think about that for a moment. A.\s∑MA=0

Ey (0.5m) + Ex (0.5m) = 2000 Ex + Ey = 4000 Ey (0.5m) + Ex (0.5m) = 500 (2m) - 500 (2m) = 0

Solve the equations in (2)

Ey =1000N= 1KN

Ex =3000N =3 kN

For member BD, jot down the equilibrium force equations.

Equilibrate the x-axis forces at Fx=0

Bx + (500 N) - (Ex) = O Bx + (500 N) - (3 K N) = 0

Bx =2.50kN

Fy = 0 to equate the forces acting along the y-axis

By-(Ey)=0

By -(1KN)=O

By = 1kN

For member AC, jot down the equilibrium force equations.

Equilibrate the x-axis forces.

∑Fx =0

For example, (500N) -(Ax)=0 (3kN) -(500N) -(Ax)=0 Ax=2.50KN

Forces on the y-axis should be equalised.

∑Fy =0

By - (500N) - (Ay) =0

(1KN) - (500 N) - (Ay) =0

Ay =500N

Learn more about Equilibrium here:

https://brainly.com/question/13258910

#SPJ4

translate the pseudocode in section 4.4 for computing the number of tiles and the gap width into java. number of pairs

Answers

int numTiles, gapWidth;

numTiles = (floor((length - gapWidth)/(tileSize + gapWidth)));

gapWidth = ((length - (numTiles * tileSize))/ (numTiles + 1));

System.out.println("Number of tiles: " + numTiles);

System.out.println("Gap width: " + gapWidth);

How convert numbers into java programming?

In Java, you can convert numbers into various types such as int, float, double, etc. using the built-in type conversion functions. For example, to convert an int to a float, you can use the Float.parseFloat(String s) function.

This function takes in a string representation of the number, and returns a float. Similarly, you can use Integer.parseInt(String s) to convert a string to an int.

There are also other type conversion functions available such as Long.parseLong(String s) and Double.parseDouble(String s). Additionally, you can use the wrapper classes such as Integer,

Float, and Double to convert numbers from one type to another. For example, if you have an int variable and you want to convert it to a double, you could use the Double wrapper class to do so. Finally, you can also use the toString() method on any type to convert it to a string.

To learn more about java programming refer :

https://brainly.com/question/30089227

#SPJ4

What is the basic requirement of measurements?

Answers

The basic requirement of measurements is to have a standard or reference point against which to compare the quantity being measured. This standard or reference point should be well-defined and stable, and the measurement process should be repeatable and consistent. Additionally, it is important to ensure that the measurement equipment is calibrated and in good working condition.

Answer:

The most basic requirement for measurements is the presence of a standard or reference point against which the quantity being measured can be compared. The measurement process should be repeatable and consistent, and the standard or reference point should be well-defined and stable. Furthermore, ensure that the measurement equipment is calibrated and in good working order.

Explanation:

For the pseudo-code program below, assume that the array name my_array has 10 cells that have been populated with numbers that are in the range of 1 to 1000. n = 0 X = 1 while (n < 10)if (my_array[n] < x) then x = my_array[n] n = n + 1 print x The output of this program will be: 1 12 11 1000 10

Answers

Well, the nice thing about pseudocode is that it doesn’t need to match anything that a compiler or interpreter would recognize as valid syntax. Thus, you can basically write it any way you want, as long as the intention is clear.

The idea of pseudocode is that you describe the program flow, without getting bogged down into the specifics of a particular language.That being said, some programming languages use the len function or method, which some might write as length … so you might write something like:

len(my_array) # using a function

length(my_array)

my_array.length # using a property or attribute

my_array.length() # using a method

Of course, you can substitute any word you find convenient, for example, size of my_array, or size_of(my_array).

Learn more languages  here:

https://brainly.com/question/25619594

#SPJ4

which of these statements is true of university of texas arlington's technology support policies described in the chapter?

Answers

There are PC and Macintosh computer platforms available at the college.

Should support for existing products be discontinued whenever an organization adopts new support standards?

Terms in this set (65) An organization should end support for existing products when adopting new support standards to cut costs on both old and new products.

Which of these kinds of documentation frequently includes links to other topics that are related?

A system for linking related text documents that allows multiple users to participate is known as hypertext. Any word or phrase can be "hyperlinked" in a hypertext document to information related to that word or phrase in the same document or another document.

To know more about Macintosh computer visit :-

https://brainly.com/question/7201978

#SPJ4

given 5 rocks of different weight and lever scales, in 7 tests sort the rocks by weight. show that for all outcomes of comparisons you will find the correct order by the 7th comparison.

Answers

A balance puzzle, sometimes known as a weighing puzzle, involves using balance scales to weigh objects.

Problem with level of weight and rocks?

We begin by comparing A>B and C>D. The two heavier ones are measured next, and we find that A>C. This handily reduces our options for the stones A, B, C, and D to just three. Specifically, ABCD, ACBD, and ACDB Notably, stone C is positioned perfectly in the centre, either as number 2 or number 3. As a result, we compare stone E to stone C. If E turns out to be heavier than A, we compare it against A. We compare it to stone D to see if E is lighter.

What is the absolute minimum to find the heavier rock?

Label the nine rocks as A, B, C, D, E, F, G, H and I

Put them in groups of ABC, (1)DEF, (2), and GHI.

(3) Place the rocks from group (1) in one pan and those from group (2) in the other pan. If they are of same weight, then neither group (1) nor group (2) of rocks contain the slightly heavier rock.

Rock G should now go in one pan and Rock H should go in the other. If they both weigh the same, the heavier rock is I.

If rock G is heavier than rock H when they are placed in separate pans, then G will be the heavier.

To know more about lever scales visit:

https://brainly.com/question/15686566

#SPJ4

14. The air compressor isn't operating properly in Yves' yoga studio. This means the_____ can't operate properly.
O A. heat exchanger
B. pneumatic control
C. cooling plant
D. ventilation

Answers

C. cooling plant

compressed air is mainly used to chill the air

Looking at the diagram, which vehicles are required to stop for the school bus (red) on a two lane road?
A, B & C
A only
B & C

Answers

No matter how many traffic lanes or if a turn lane is present, drivers in both directions of a two- or multi-lane highway are required to stop and remain stopped until the flashing red bus lights are turned off.

Only lanes of traffic moving in the same direction as the school bus must come to a complete stop. To get to their home, students shouldn't have to cross four or more lanes of traffic. The school bus had to stop. To get to their home, students shouldn't have to cross four or more lanes of traffic. On a two-lane road, when a school bus stops and flashes its red lights, traffic coming from either direction must stop before passing the bus. on multilane roads. on roadways with dividers.

To learn more about traffic, please check:

https://brainly.com/question/30312997

#SPJ4

to see what is mounted on your system, and at which points, we need to run the mount program. what distributed file systems are mounted?

Answers

To determine which distributed file systems are mounted, you can run the command `mount -t <file_system_type>` and check to see if any distributed file systems are listed.

What is file systems?
A file system is a method of organizing and storing data on a computer or other digital device. It defines how files are named, stored, and organized on the storage device. File systems typically consist of files, directories, and other data structures to store, retrieve, and manipulate data. Commonly used file systems include the NTFS, HFS+, FAT, and EXT. These file systems organize data into logical clusters, which makes it easier to access and manage. File systems can also apply security settings to files, such as read and write permissions, to protect data and ensure only authorized users can access sensitive information. File systems are a critical component of an operating system, as they are responsible for managing the data on a storage device.

To learn more about file systems
https://brainly.com/question/13013721

#SPJ4

all of the following are examples of projects except which? multiple choice question. designing a new product merging two companies manufacturing the daily quota reengineering a process

Answers

In general, a project is for a client. The project is a transient one. Normally, it has a clearly defined beginning and end. There will be a special set of requirements for the project that must be met within its confines. Gantt charts' principal difficulties.

Gantt charts' intricacy in larger projects is one of the main difficulties when using them. The complexity of specific activities and the amount of time required by your team to perform them may not be adequately represented by the charts. Budget and cost, time and schedule, and scope make up the factors. Any time one of these components is altered, a second one is compelled to follow. This article covers the project management triangle's theory and how to apply it to successfully manage projects, especially when there are several stakeholders involved.

To learn more about  Budget it, please check:

https://brainly.com/question/8647699

#SPJ4

How many objects can an ArrayList store?

Answers

Given that ArrayList in Java is supported by a built-in array, the size restriction is equal to that of an array, or 2147483647.

Java creates an ArrayList object with a default capacity of 10 when you create it without specifying a capacity. ArrayList automatically resizes when the size (number of elements in the array list) increases over a certain threshold since it is a growable array. The fact that ArrayLists may only contain objects and not simple types like ints is a fundamental restriction of array lists. Use the get() function to fetch elements from an ArrayList. Use the size() function to get an ArrayList's size.

To learn more about ArrayList click the link below:

brainly.com/question/17265929

#SPJ4

true/false: most of the materials we use in engineering applications today were developed before the year 1900. true/false: most of the materials we use in engineering applications today were developed before the year 1900. true false

Answers

The given statement that "most of the materials that are being used today in engineering applications were developed before the year 1900" is true because the concept of engineering has existed since ancient times as humans devised fundamental inventions such as the lever, pulley, and wheel.

Civil engineering has been an aspect of human life since the beginning of human existence. The earliest practices of civil engineering may have commenced between 4000 and 2000 BC in Mesopotamia (Ancient Iraq) and Ancient Egypt when humans started to abandon a nomadic existence, therefore causing a need for the construction of shelter.

These all civil practices or inventions are consistent with the modern definition of engineering, exploiting primary mechanical principles to develop useful objects and tools.

To learn more about Civil engineering at

https://brainly.com/question/25840283

#SPJ4

A 10.0 kg/s waste stream of ethene vapor is burned at steady state in a furnace. Assume the combustion is complete, such that the effluent (product stream) contains only vapor phase carbon dioxide, liquid water, and any leftover reactants and inerts. Determine the molar flow rate of ethene (in mol/s) entering the furnace. Determine the molar flow rate for an inlet feed of a stoichiometric mixture of dry air (i. e. .r the flow of air containing just enough O2 to be in stoichiometric proportion with the ethene). Determine the volumetric flow rate (in m3/s) for the feed of air from part b: assuming it behaves as an ideal gas and enters the furnace at 1.00 bar and 400. K. Determine an average molar mass for air: assuming that air is 78.20% N2, 20.90% O2, and 0.90% Ar on a mole basis. Determine the molar flow rate for each species in the effluent.

Answers

Molar Flow Rate of Ethene,  Dry Air and Carbon Dioxide = 0.3577 mol/s

Molar Flow Rate of Water = 0.3577 mol/s * (2 mol H₂O/1 mol C₂H₄) = 0

What is Molar Flow Rate ?

Molar flow rate is the volumetric flow rate of a fluid divided by the molar mass of the fluid. It is typically expressed in moles per second (mol/s). It is a measure of the amount of a substance passing through a given surface area per unit time.

H₄ Molar Flow Rate of Ethene = 10.0 kg/s * (1 mol/28.05 g) = 0.3577 mol/s

Molar Flow Rate of Dry Air = 0.3577 mol/s * (1 mol C₂H₄/1 mol O₂) = 0.3577 mol/s

Volumetric Flow Rate of Air = 0.3577 mol/s * (22.4 L/mol) * (1 m3/1000 L) = 0.00801 m3/s

Average Molar Mass of Air = (0.7820 mol N₂ * 28.01 g/mol) + (0.2090 mol O2 * 32.00 g/mol) + (0.0090 mol Ar * 39.94 g/mol) = 28.99 g/mol

Molar Flow Rate of Carbon Dioxide = 0.3577 mol/s * (1 mol CO₂/1 mol C₂H₄) = 0.3577 mol/s

Molar Flow Rate of Water = 0.3577 mol/s * (2 mol H₂O/1 mol C₂) = 0

To learn more about Molar Flow Rate refer :

https://brainly.com/question/19425106

#SPJ4

Other Questions
Brick San Antonio playing a game of counters Rick has some counters Selma has twice as many counters as Rick Tony has six counters Leston Selma in total they have 54 counters the number of count as Rick has: the number of count as Tony has = 1: P work out the value of paid What are the main points of the Epic of Gilgamesh?. write a method that takes as argument an integer size and returns an integer array of that size. the method should allocate a new array of int and return it. examples: makearray(5) -> {0, 0, 0, 0, 0} T/F If good listening skills are used, listening to a complex lecture should require no more mental effort than listening to a comedian tell jokes. Write a 300 - word literary text about the first thing you see in yourright. What is the Cartesian product of A =( 1 2 and b =( ab Mcq?. ATP is produced in some of the steps of the glycolytic pathway. For the reactions shown, which produce ATP?a. Phosphoenolpyruvate pyruvateb. 1,3-biphosphoglycerate 3-phosphoglyceratec. glyceraldehyde 3-phosphate 1,3-bisphosphoglycerated. Phosphoenolpyruvate glyceraldehyde 3-phosphate What are the 3 important components of an artwork?. during world war i, poster of the central power countries differed from those of the allied power countries. american posters, for example, tended to be more ...... than those from germany. Can You Remain Anonymous If You Win the Texas Lottery? How are women portrayed in The Great Gatsby essay?. Make Violet's Present value span all three columns. Make Schroeder's Excused value span the Tuesday and Wednesday columns.AttendanceStudentMondayTuesdayWednesdayVioletPresentPresentN/ASchroederPresentExcusedN/AExpected webpage Read this message from People Over Politics by Steve Beshear, Dan Hassert.Pg. 206 How does that relate to job creation? When you think about it, it is pretty simple. If you are successful in creating a new market for the goods of a Kentucky company, that company will eventually need more people to make more of those goods to sell.Do you agree or disagree with the authors message and why? fill in the blank. the article, the harlem renaissance, mainly explains the impact of the harlem renaissance by... How did Roosevelt affect World War 2?. A mass attached to a vertical spring causes the spring to stretch and the mass to move downwards. What can you say about the springs potential energy (EPE) and the gravitational potential energy (GPE) of the mass?A) both EPE and GPE decreaseB) EPE increases and GPE decreases C) both EPE and GPE increase D) EPE decreases and GPE increases Which sentence from the excerpt most strongly supports the inference you can make about the author's point of view in "The Immortal Life of Henrietta Lacks?"Question 6 options:A) "All of the stories mentioned that scientists had begun doing research on Henrietta's children, but the Lackeses didn't seem to know what that research was for."B) One scientist estimates that if you could pile all HeLa cells ever grown onto a scale, theyd weigh more than 50 million metric tonsan inconceivable number, given that an individual cell weighs almost nothing.C) She's simply called HeLa.D) Ive spent years staring at that photo, wondering what kind of life she led, what happened to her children, and what shed think about cells from her cervix living on foreverbought, sold, packaged, and shipped by the trillions to laboratories around the world. while comparing two sheets using the view side by side feature, there is an option which lets you scroll the two sheets in sync. what is that option called ? Do you think justice was or was not done in Hoffmann's case overall? What types of considerations do you believe are necessary in a case like Hoffmann's where the defendant was potentially mentally ill at the time of the crime? What kind of balance can be found between moral obligations to those with mental illness and legal obligations to victims in the criminal justice system? List the sample space for rolling a fair eight-sided die. A. S = {1} B. S = {8} C. S = {1, 2, 3, 4, 5, 6} D. S = {1, 2, 3, 4, 5, 6, 7, 8}