architects must consider the availability and cost of when they plan their projects. question 1 options: bribes breathing apparatus building materials fresh water none of the other answers

Answers

Answer 1

Architects must consider the availability and cost of building materials when they plan their projects.

Who are architects?

Building planning and design are the expertise of an architect, who typically has a significant impact on how a building is built. The art and science of building design are fields in which architects have extensive training. Architects need to be licenced professionally because they are in charge of ensuring the security of the people who use their buildings.

The Greek term for "chief builder" is the origin of the word "architect." Between the craftsman who designed a building and the one who actually built it, there was no distinction for a large portion of history.

Buildings could then be planned much more thoroughly before being built thanks to the development of linear perspective drawing in the 1500s, which made it possible to accurately depict three-dimensional structures in two dimensions.

Learn more about architect

https://brainly.com/question/7472215

#SPJ4


Related Questions

An algorithm can fall into an infinite loop when ____. the input operations were missing the algorithm uses more than one loop the output operations were missing the continuation condition of the loop never becomes false

Answers

An algorithm can fall into an infinite loop when the continuation condition of the loop never becomes false.

What is loop?

Loop is a set of code or instruction in most programming language to iterate or repeatedly execute the code in loop body without written it multiply times.

There are different method to call the loop, but the basic rule of the loop is still same which is the loop will continuously execute the code as long as condition is true.

Thus, until the condition in loop becomes false, the loop still running into infinite loop.

Learn more about loop here:

brainly.com/question/26098908

#SPJ4

Cumulative algorithm can only be used with primitive data types O True O False

Answers

Cumulative algorithm can only be used with primitive data types is False.

What is Cumulative algorithm?

A cumulative algorithm is a type of algorithm that processes a sequence of items and produces a single result by performing some operation on each item in the sequence and carrying forward the result of that operation to the next item.

Therefore, This type of algorithm can be used with primitive data types, such as integers and floating point numbers, but it can also be used with more complex data types, such as arrays, structures, and objects.

Learn more about algorithm  from

https://brainly.com/question/21328677

#SPJ1

Determine (a) the principal stresses and (b) the maximum in-plane shear stress and average normal stress at the point. Specify the orientation of the element in each case.

Answers

To determine the principal stresses and the maximum in-plane shear stress and average normal stress at a point in a structural element, you will need to know the following information:

The element's material characteristics will affect how it responds to applied loads.

The geometry of the element will determine its size and shape, which will have an impact on how it distributes loads.

The loads put on: The stresses that arise in the element will be determined by this.

The point in question's location is: This will reveal the strains that are being placed on the spot.

With this knowledge, you may use the procedures that follow to identify the main stresses, the maximum in-plane shear stress, and the average normal stress at the point:

Find the strain-displacement relationship for the element: You will then be able to compare the applied loads to the resulting strains in the element.

Find the stress-strain relationship for the element: You will be able to connect the strains to the stresses that were created in the element as a result.

Find out what stresses are at work on the point: The stresses acting on the point can be calculated using the strain-displacement and stress-strain relationships of the element, the applied loads, and the geometry of the element.

To know more about Principal stresses kindly visit
https://brainly.com/question/14418799

#SPJ4

Given the following grammar and the right sentential form, draw a parse tree and show the phrases and simple phrases, as well as the handle.
S→AbB | bAc A→Ab | aBB B→Ac | cBb | c
a. aAcccbbc

Answers

The phrases and simple phrases, as well as the handle: The parse tree is given below:

    S

   / \

  A   B

 / \   \

a   B   c

   / \

  c   b

 / \

c   b

What is parse tree?

A partreese is a graphical representation of the structure of a sentence. It is used in natural language processing to show the syntactic structure of a sentence. A parse tree can be used to show the different components of a sentence, such as the subject, verb, object, and any modifiers. It is also used to determine the meaning of a sentence by break it down into its component parts. The tree is made up of nodes, which represent words, and branches, which represent the relation between the words. By analyzing the structure of the tree, linguists can determine the meaning of a sentence and understand how it is constructed.

To learn more about parse tree
https://brainly.com/question/14855906
#SPJ4

a motor compressor unit with a rating of 32 amps is protected from over loads by a separate overload relay selected to trip at not more than amps.

Answers

It sounds like you are asking about a motor compressor unit that is protected from overloading by a separate overload relay.

A particular amount of amps of current are chosen to trigger the overload relay.

Selecting an overload relay with a trip point that is appropriate for the motor rating will help to guarantee that the motor compressor unit is protected appropriately. Given that the motor in this instance has a 32 amp rating, the overload relay should be set to trigger at currents no greater than 32 amps. By doing this, you can make sure that the overload relay trips and turns the engine off before it sustains damage from too much current.

It's crucial to regularly check the overload relay to make sure it's working properly.

To know more about Motor Compressor kindly visit
https://brainly.com/question/14456994

#SPJ4

PROBLEM
Knowing that the tension in rope
AC is F(N), determine the
resultant of the three forces
exerted at point C of post BC.
1100 mm
L=1460 mm
960 mm
B
C
25
24
3
5
4
500 N
200 N

Answers

The resultant of the three forces exerted at point C of post-BC is 475.36 N.

What is the resultant force?

The difference between the forces that are acting on an object as part of a system is known as the resultant force. For instance, a resultant force of 7N to the right is produced by a 3N force to the left and a 10N force to the right.

Given, the tension in the rope in the figure.

L=1460 mm

BC = 25

Net force at C = 480i +140j +(160i -120j) +(-240i-275j) = 400i-255j = 475.36

N 32.51 degrees south of east.

Therefore, the resultant of the three forces is 475.36 N.

To learn more about resultant force, refer to the link:

https://brainly.com/question/16380983

#SPJ1

5.8.9 Broken Calculator For this exercise, we are going to take a look at an alternate Calculator class, but this one is broken. There are several scope issues in the calculator class that are preventing it from running. Your task is to fix the Calculator class so that it runs and prints out the correct results. The CalculatorTester is completed and should function correctly once you fix the Calculator class.

Answers

An  example of how you can fix the Calculator class:

public class Calculator {

 private static double result;

 

 public static void main(String[] args) {

   add(1, 2);

   subtract(4, 2);

   multiply(2, 3);

   divide(6, 2);

   System.out.println("Result: " + result);

 }

 

 public static void add(double num1, double num2) {

   result = num1 + num2;

 }

 

 public static void subtract(double num1, double num2) {

   result = num1 - num2;

 }

 

 public static void multiply(double num1, double num2) {

   result = num1 * num2;

 }

 

 public static void divide(double num1, double num2) {

   result = num1 / num2;

 }

}

What is the Calculator class?

In the above implementation, the result variable is marked as private static, which means that it can only be accessed within the Calculator class and it is shared among all instances of the class.

The main() method calls the various calculator methods, which perform the necessary calculations and store the result in the result variable. Finally, the main() method prints out the value of result.

Note that this example is just one way to fix the Calculator class. There are other ways to do it as well.

Learn more about Calculator class from

https://brainly.com/question/3198566

#SPJ1

if the maximum load capacity (or buckling load) of column 1 (fixed-fixed) is 100 kn, the load capacity (or buckling load) of column 2 (fixed-free) will be equal to:

Answers

if the maximum load capacity (or buckling load) of column 1 (fixed-fixed) is 100 kn, the load capacity (or buckling load) of column 2 (fixed-free) will be = 1.56kN.

What is buckling load?

Buckling is simply the out-of-plane bending of a vertical compression member. The slenderness of the vertical compression member is typically to blame. This phenomenon is clearly explained by Euler, who has provided elaborate formulas to determine the actual amount of buckling in the compression member.

The compression member may be a column (long, short, or medium), a built-up steel member with a slender web, a readily available steel member with a slender web, etc. For various support situations, different buckling conditions exist. The terms "buckling load" and "crushing load" are interchangeable. We must fortify the slender member to prevent buckling.

Learn more about Buckling

https://brainly.com/question/14338077

#SPJ4

A tank is constructed of a series of cylinders having diameters of 0.30, 0.25, and 0.15 m as shown in the figure. The tank contains ethanol, oil and water. Ethanol is exposed to air. A mercury manometer is attached to the bottom. Determine the manometer reading, h

Answers

The mercury manometer that attached to the bottom will reading 2.7 cm.

How to determine the manometer reading?

[tex]p_1[/tex] = ethanol density = 789 kg/m^3

[tex]p_2[/tex] = oil density = 918 kg/m^3

[tex]p_3[/tex] = water density = 1000 kg/m^3

[tex]p_4[/tex] = mercury density = 13600 kg/m^3

Since the ethanol is exposed to air and the manometer also exposed to air, we can determine the height of mercury is equal by extra pressure by liquid. So,

[tex]p_4[/tex]*g*h = [tex]p_1[/tex]*g*0.1+[tex]p_2[/tex]*g*0.1+[tex]p_3[/tex]*g*0.2

we can eliminate the g or gravity.

13600h = 789*0.1+918*0.1+1000*0.2

13600h = 78.9+91.8+200

13600h = 370.7

h = 0.027 m

h = 2.7 cm

Thus, the mercury manometer reading will be 2.7 cm.

You question is incomplete, but most probably your full question was

A tank is constructed of a series of cylinders having diameters of 0.30, 0.25, and 0.15 m as shown in the figure. The tank contains ethanol, oil and water. Ethanol is exposed to air. A mercury manometer is attached to the bottom. Determine the manometer reading, h

(image attached)

Learn more about mercury manometer here:

brainly.com/question/13898695

#SPJ4

Categorizing Departmental Business Processes Drag each item listed on the left to its correct category Processing Sales Accounting and Finance Marketing and Sales Creating Production Schedules Communicating Marketing Campaigns Attracting Customers Promoting of Discounts Collecting of Accounts Receivable Creating Financial Statements Human Resources Operations Management Enrolling Employees in Health Care Tracking Vacation and Sick Time Hiring Employees Manufacturing Goods Paying of Accounts Payable Reset Ordering Inventory

Answers

Accounting and Finance is for business processes related to finance, Marketing and Sales is for business process related to selling product, Operation Management is for business process related to production, Human Resource is for business process related to employees.

What is business process?

Business process is the set activities to achieve the business goal.

For Accounting and Finance the business process is related to finance. So, Paying of Accounts Payable, Creating Financial Statements, Collecting of Accounts Receivable is a part of Accounting and Finance.

For Marketing and Sales the business process is related to selling product. So, Processing Sales, Communicating Marketing Campaigns, Attracting Customers, Promoting Discounts, Ordering Inventory is a part of Marketing and Sales.

For Operations Management the business process is related to production. So, Manufacturing Goods and Creating Production Schedules is a part of Operations Management.

For Human Resources the business process is related to employees. So, Hiring Employees, Enrolling Employees in Health Care, Tracking Vacation and Sick Time is a part of Human Resources.

You question is incomplete, but most probably your full question was

(image attached)

Learn more about business process here:

brainly.com/question/14476382

#SPJ4

Please Answer Thank You!

Answers

A free body diagram is a straightforward drawing that depicts the forces operating on the elements of a physical system.

How do you calculate tension in Hooke's Law?By applying the formula Fs=-Kx (where k is the spring constant and x is extension), tension can be calculated using Hooke's equation. The spring system uses this.Any physical object that is in contact with another one can apply forces to that object. Depending on the types of objects in touch, we label these contact forces differently. If a rope, string, chain, or cable is one of the objects exerting the force, the force is referred to as tension.The tension is determined using the formula T = (Tx2 + Ty2)1/2. The component TX generates the centripetal force, hence TX = mv2 (m is the object's mass; v is its velocity).  TY = mg (m = mass of the object; g = acceleration due to gravity), where mg is the object's weight.

To learn more about  tension refer,

https://brainly.com/question/16688357

#SPJ1

Which of the following is most closely associated with
hairlike receptors in the semicircular canals?
a. Body position
E b. Smell
non
c. Hearing
d. Pain

Answers

The gelatinous membrane that stretches across the tube to form a fluid-tight seal akin to the skin of an ear drum covers the semicircular canal receptor cells, also known as hair cells, only in the center of the circular tubes in a special epithelium.

You can sense your body's position and keep your balance thanks to the stimulation of hair-like receptors that send signals to the cerebellum at the back of the brain.

What functions do semicircular canals perform?

Your inner ear contains three tiny, liquid-filled tubes called semicircular canals that aid in balance. The fluid in the semicircular canals sloshes around as your head moves, moving the fine hairs that line each canal.

To know more about semicircular canals visit:-

brainly.com/question/15873430

#SPJ4

Consider the curb shown in (Figure 1). Suppose that 1 = 2 m, a = 180 mm, b = 100 mm. Part A Determine the volume of concrete needed to construct the curb. Express your answer to three significant figures and include the appropriate units. Figure < 1 of 1 > V= 3 mm Submit Previous Answers Request Answer X Incorrect; Try Again; 2 attempts remaining 4301 Provide Feedback

Answers

Volume of the concrete needed to construct the curb is 4.341 m2 (meter square)

A=∑(θ¯rl)

=π6 ((la) + a(l+a2) + (l+3a2)(√a2+b2) + 2a(l+2a) + 2a(l+a))

=6al + 132a2 + (l+3a2)(√a2+b2)

=(6×0.18×2) + 6.5(0.18)2 + (9.3)(0.2119)

=4.341 m2

Three-dimensional space is quantified by volume. Numerous imperial or US customary measures, including the gallon, quart, and cubic inch, as well as SI-derived units like the cubic metre and litre, are frequently used to quantify it quantitatively. Volume and length cubed have a symbiotic relationship. The volume of a container is typically thought of as the container's capacity, or the quantity of fluid gas or liquid that it could hold, rather than the amount of space the container occupies. Utilizing naturally occurring containers of a comparable shape and subsequently, standardized containers, it is measured. Arithmetic formulas make it simple to determine the volume of some basic three-dimensional shapes.

To learn more about Volume click here

brainly.com/question/1578538

#SPJ4

bsquare(k) takes k as a parameter and returns a list containing all perfect squares less than k. (not including k). bsquare(5) will return the list [1, 4] print that list

Answers

A program where bsquare(k) takes k as a parameter and returns a list containing all perfect squares less than k (not including k) is given below in the code.

What is parameter?

A parameter, in general, is any feature that helps define or categorize a particular system (meaning an event, project, object, situation, etc.). To put it another way, a parameter is a system component that is essential or helpful for identifying the system or evaluating its functionality, status, or other properties.

The term "parameter" has more specific meanings in some disciplines, including mathematics, computer programming, engineering, statistics, logic, linguistics, and electronic music composition.

It has broader meanings in addition to its technical applications, especially when used in non-scientific contexts. Examples of defining characteristics or boundaries are "test parameters" and "game play parameters."

//CODE//

def ASquare(k):

    lst = []

    for i in range(k):

        lst.append((i + 1) ** 2)

    return lst   print(ASquare(5))

  def BSquare(k):

    lst = []

    i = 1

    while i * i < k:

        lst.append(i * i)

        i += 1

    return lst

  print(BSquare(5))

Learn more about parameter

https://brainly.com/question/13794992

#SPJ4

which of the following functions calculate the amount used to repay the principal of a loan? select all options that apply
a. PPMT
b. CUMIPMT
c. IPMT
d. CUMPRINC

Answers

CUMPRINC function calculates the amount used to repay the principal of a loan.

What is a loan?

A loan is a kind of credit arrangement in which a certain amount of money is given to another party in return for the value or principal amount being repaid in the future. The lender will frequently increase the principal amount by adding interest or finance charges, which the borrower must pay in addition to the principal balance.

In addition to being available as an open-ended line of credit up to a predetermined limit, loans can be for a specific, one-time sum. Secured, unsecured, commercial, and personal loans are just a few of the many different types of loans available.

One type of debt that a person or other entity may incur is a loan. A sum of money is advanced to the borrower by the lender, which is typically a business, financial institution, or government.

Learn more about loans

https://brainly.com/question/26011426

#SPJ4

Consider the relation R, which has attributes that hold schedules of course and sections at a university: R = {Course_no, Sec_no, Offering_dept, Credit_hours, Course_level, Instructor_ssn, Semester, Year, Days_hours, Room_no, No_of_students}. Suppose that the following functional dependencies hold on R. {Course_no} rightarrow {Offering_dept, Credit_hours, Course_level} {Course_no, Sec_no, Semester, Year} rightarrow {Days_house, Room_no, No_of_students, Instructor_ssn} {Room_no, Days_hours, Semester, Year} rightarrow {Instructor_ssn, Course_no, Sec_no} Try to determine which sets of attributes from keys of R, How would you normalized this relation?

Answers

The sets of attributes {Course_no, Sec_no, Semester, Year} and {Room_no, Days_hours, Semester, Year} are both keys of R. This relation can be normalized by dividing it into two separate relations, R1 and R2.

What is attributes?
The traits or features that characterise someone or something are known as their attributes. They are employed to specify the features and traits of a person, location, thing, or idea. Bodily, physical, emotional, or religious attributes are all possible. Physical characteristics include things like height, weight, eye colour, gender, and skin tone. Intelligence, creativity, and issue abilities are examples of mental qualities. Empathy, self-control, and compassion are examples of emotional qualities. Faith, patience, & humility are spiritual qualities. In order to comprehend and recognise the distinctive characteristics of a person, area, item, or idea, attributes are crucial.

R1 equals the following: "Course no, Offering dept, Credit hours, Course level"

R2 is equal to "Course no, Sec no, Semester no, Year, Days hours, Room no, Number of Students, Instructor ssn"
R1 would have details on the courses the university provided, and R2 would contain details about the parts of those courses. By doing so, any data duplication would be removed, and data maintenance would be simpler.


To learn more about attibutes
https://brainly.com/question/1997724
#SPJ4

Write an algorithm using pseudocode for peeling an apple. What does that look like?

Answers

An  algorithm using pseudocode for peeling an apple is given below

1. Rinse the apple under running water to remove any dirt or debris.

2. Cut off the top and bottom of the apple using a sharp knife.

3. Starting at the top of the apple, use the knife to carefully slice off the skin in a circular motion, following the contour of the apple.

4. Continue peeling the skin off the apple until the entire apple is peeled.

5. Discard the skin and slice or chop the peeled apple as desired.

What are the ways to write a pseudocode?

Another way or example used of the algorithm via the use a more structured pseudocode format:

procedure peelApple(apple: Apple)

  input: an apple

  output: a peeled apple

 

  1. Rinse the apple under running water to remove any dirt or debris.

  2. Cut off the top and bottom of the apple using a sharp knife.

  3. Initialize a variable "peeled" to be an empty list.

  4. While the apple is not fully peeled, do the following:

     a. Starting at the top of the apple, use the knife to carefully slice off a strip of skin.

     b. Add the strip of skin to the "peeled" list.

  5. Return the peeled apple.

end procedure

Learn more about pseudocode from

https://brainly.com/question/24953880

#SPJ1

Question 18.Which data type stores only one of two values?a.OLE objectc.Yes/Nob.Hyperlinkd.Null Background image

Answers

The Boolean type describes a logical object that has two values that are; true or false.

What is Boolean data?

A Boolean data type contains two possible values (often labeled true and false), which are supposed to represent the two truth values of logic and Boolean algebra. It is called from George Boole, who established an algebraic logic system in the mid-nineteenth century.

The Python boolean class is one of Python's built-in data types that represents one of two values which are; True or False.

This is commonly used to indicate the truth values of expressions.

For an instance, 1==1 is True whereas 2<1 is False.

Learn more about boolean type here;

brainly.com/question/13853177

#SPJ4

Coal can contain up to about 2000 ppm (by mass) of natural uranium. Compare the chemical energy content of the coal with the available fission energy from the 235U content of the uranium (as used in a thermal reactor) and the total available fission energy from the uranium including 238U (as might be used in a breeder reactor).

Answers

About 1 MW is released each day when 1 g of uranium or plutonium fissions. This is roughly equivalent to 3 tons of coal or 600 gallons of fuel oil burned each day, which releases about 1/4 tonne of carbon dioxide when burned. (One metric ton, or tonne, is equal to 1000 kg.)

How much energy is released during a fission of uranium-235?

The total binding energy released during the fission of an atomic nucleus varies depending on the exact breakdown but typically ranges between 200 MeV* and 3.2 x 10-11 joules for U-235. About 82 TJ/kg is this.

How much more energy is contained in one gram of 235U than one gram of coal?

In actuality, burning 3 tons of coal produces the same amount of energy as fissioning 1 gram of uranium 235 (1)! It is possible to use the energy generated by the fission of uranium or plutonium to generate electricity, launch spacecraft, and power weapons like the atomic bomb.

To know more about binding energy visit:-

brainly.com/question/10095561

#SPJ4

Determine the minimum initial velocity and the corresponding angle at which the ball must be kicked in order for it to just cross over the 3 m high fence. Picture shows distance from kicker to the fence (x) is 6m and fence is 3m high (y).

Answers

Minimum initial velocity is 9.76 m/s and the corresponding angle is 58.3° is at which ball must be kicked in order for it to cross over the 3m high fence.

Velocity is the rate at which an object's location is changing as perceived from a particular point of view and as measured by a certain unit of time. It is the direction speed of an object in motion. Velocity is a fundamental concept in kinematics, the branch of classical mechanics that analyzes how bodies move. Being a physical vector quantity, velocity must have both a magnitude and a direction in order to be defined. The scalar absolute value magnitude of velocity is referred to as speed, and it is measured in the SI metric system as metres per second (m/s), which is a coherently derived unit. An object must move at a constant speed in the same direction to have a constant velocity.

To learn more about Velocity click here

brainly.com/question/18084516

#SPJ4

According to Erikson, the major personality attainment of adolescence is __________. A) trust B) identity C) autonomy D) intimacy

Answers

According to Erikson, the major personality attainment of adolescence is identity. The correct option is B).

What is personality attainment?

Erik Erikson was the first to identify identity as a major personality achievement of adolescence and a critical step toward being a productive, content adult.

Creating an identity entails establishing who you are, what you value, and the life paths you pick. There are eight stages of Erickson's theory. Mistrust is the first stage. During this stage, the infant is unsure of their surroundings and looks to their primary caregiver for stability and consistency of care.

Therefore, the correct option is B) identity.

To learn more about personality attainment, refer to the link:

https://brainly.com/question/28096868

#SPJ1

How is symmetry related to rigid transformations?

Answers

Answer: (read explanation)

Explanation:

Symmetry and rigid transformations are related in that symmetry is a type of rigid transformation. A rigid transformation is a type of transformation in geometry in which the shape of an object is preserved after the transformation is applied. This means that the distances between all points on the object remain the same, and the angles between those points are also unchanged.

Symmetry is a specific type of rigid transformation that involves a reflection, rotation, or translation of an object such that the resulting image is congruent to the original. In other words, symmetry is a type of transformation in which an object is mapped onto itself in a way that preserves its shape and size.

For example, if an object has rotational symmetry, it means that it can be rotated by a certain angle and the resulting image will be congruent to the original. If an object has reflectional symmetry, it means that it can be reflected across a certain line and the resulting image will be congruent to the original.

Overall, symmetry is a type of rigid transformation in which an object is mapped onto itself in a way that preserves its shape and size. This type of transformation is related to other types of rigid transformations, such as rotations and translations, which also preserve the shape and size of an object.

rder the steps in secondary enrichment. tems (4 items) Drag and drop into the appropriate area) Items in order First activity ceases after ore-bearing 1 flows through deposit and leaches out New ore minerals are tated in a new location. 2 ore-bearing deposit cools 3 4 Last

Answers

Secondary enrichment is an important ore forming procedure. This process is known to be secondary because of the fact that in this case the valuable ore minerals do not directly precipitate from a cooling magma.

In this process ore deposits which are exposed to the ground surface, are weathered just as other rocks. When the ore minerals come in contact to the atmospheric oxygen, it gets oxidized and this oxidized forms are readily soluble in the water.

This solution with high concentration of many valuable materials start its journey downwards. As it gets down, it loses some of its dissolved materials in the surrounding areas and forms the Colorful oxidized zone below the surface.

As the solution leaks further downward and reaches the groundwater table the conditions suddenly changes from oxidizing to reducing. In this circumstances the dissolved materials in the leaking water precipitates and forms secondary sulfide deposits.

From the above discussion the points given in the question can be arranged in the following manner:

1) Igneous activity ceases after producing ore bearing deposits.

2) The bearing deposit cools entirely.

3) Groundwater flows through an ore deposit and leaches out material.

4) New ore minerals are precipitated in new locations.

To learn more about enrichment items
https://brainly.com/question/29440642
#SPJ4

A ________ is a program module whose purpose is to test other modules by calling them.
A) stub
B) driver
C) main function
D) dummy program
E) pseudocode routine

Answers

Answer:

A) Stub.

Explanation:

A stub is a program module whose purpose is to test other modules by calling them.

How do you reboot your router?

Answers

Answer:

there is a restart button in the top of the router press it

Explanation:

describe (a) the similarities and (b) the differences between the bulk-deformation processes described in chapter 6 and the sheet metal forming processes described in this chapter.

Answers

Similarity: Both procedures entail shaping metal into the desired shape. Dissimilarity: Compared to bulk-deformation methods, the sheet metal forming process uses much thinner materials.

Describe deformity.

Deformation in physics is the change of a body from the a star shape to a present condition using continuum mechanics. A config is a collection of all the positions of a body's constituent particles. External loads, intrinsic activity (such as muscle contraction), bodily forces (such gravity or electromagnetic forces), variations in temperature, moisture content, chemical reactions, etc. can all induce deformations. When rigid-body motions are not included, strain and deformation are related in terms of the relative movement of anatomical structures.

To know more about deformity
https://brainly.com/question/13491306
#SPJ4

import java.util.Scanner; public class PickupWindow { public static void main(String[] args) { // create scanner object Scanner input = new Scanner(System.in); // Display menu String menu = "1. Hamburger\n2. Cheeseburger\n3. Veggie Burger\n4. Nachos\n5. Hot Dog\n"; System.out.println(menu); // Get customer order System.out.println("Enter label: "); String customerOrder = input.nextLine(); // Use substring to get the first character (the number) String combo = // Create Integer object by using the static // method Integer.valueOf(someString) // to turn the string into an Integer Integer.valueOf(comboNumber); Integer comboNumber = 5; // Print out what the customer ordered System.out.println("Customer ordered number "+ comboNumber); } }

Answers

The code using Java for menu.

What is Java?

Java is a class-based, object-oriented, general-purpose programming language made to have fewer implementation dependencies. It is a computing platform for developing applications. As a result, Java is fast, safe, and dependable. In laptops, data centers, game consoles, scientific supercomputers, mobile phones, and other devices, it is frequently utilized for the development of Java applications.

The Java Platform is a set of programs that make it easier for programmers to create and run Java applications effectively. It has a compiler, an execution engine, and a collection of libraries. It consists of software and specifications for computers.

Given to import java, Scanner; public class

The code is

step by step explanation,

import java.util.Scanner;

public class PickupWindow

{

 public static void main(String[] args)

 {

   // create scanner object

  Scanner input = new Scanner(System.in)

   // Display menu

   String menu = "1. Hamburgern2. Cheeseburgern3. Veggie Burgern4. Nachosn5. Hot Dog\n";

   System.out.println(menu);

   // Get customer order

   System.out.println("Enter label: ");

   String customerOrder = input.nextLine();

  // Use substring to get the first character (the number)

 String combo =

 // Create  Integer object by using the static

   // method Integer.valueOf(someString)

  // to turn the string into an Integer

   Integer.valueOf(comboNumber);

   Integer comboNumber = 5;

   // Print out what the customer ordered

   System.out.println("Customer ordered number "+ comboNumber);

 }

}

Here // sentences are not part of coding, they are just to explain the next step or to give information about what the code shows.

Hence, the code is described.

Learn more about Java;

https://brainly.com/question/29897053

#SPJ4

QUESTION 1In which object can you rename a field?a. tableb. formc. macrod. report3 pointsQUESTION 2Tables, queries, and forms are examples of Access ____.a. objectsb. valuesc. fieldsd. controls3 pointsQUESTION 3When can you rename a table?a. when you open the table in Design viewb. when you open the table in Datasheet viewc. immediately after you open the tabled. after you close the table3 pointsQUESTION 4Which of the following templates lets you create a database from scratch?a. Application databaseb. Blank desktop databasec. Personal databased. Custom desktop database3 pointsQUESTION 5A category of data such as a customer's name, city, state, or phone number is called a _____.a. fieldb. tablec. data typed. record3 pointsQUESTION 6_____ view provides the most options for defining fields.a. Field Createb. Field Definec. Table Created. Table Design3 pointsQUESTION 7Which of the following is the fastest way to open an Access database?a. Start Access from the Start menu.b. Double-click the database icon.c. Right-click the database icon.d. Start Access, and then create a new database.3 pointsQUESTION 8What are you saving when you click the Save button to save a table object?a. the table designb. the entire databasec. the field values in the tabled. the records in the table3 pointsQUESTION 9To back up a database, you use the _____ command.a. Back Up Databaseb. Compact & Repairc. Make a Backupd. Package and Sign3 pointsQUESTION 10Which data type stores only one of two values?a. Date/Timeb. Yes/Noc. Hyperlinkd. AutoNumber

Answers

The object that you can you rename a field is A. table

Tables, queries, and forms are examples of Access .a. objects

The templates lets you create a database from scratch is D. Custom desktop database

What is a database?

A database is a collection of data that has been organized to make it simple to manage and update. Data records or files containing information, such as sales transactions, customer information, financial data, and product information, are typically aggregated and stored in computer databases.

A database is a planned gathering of data. They enable the manipulation and storage of data electronically. Data management is made simple by databases. Let's use a database as an example. Foe example, it is used by an online phone book to store information about people, their phone numbers, and other contact information.

To rename a table:

Click on the table.

Go to Table Tools > Design > Properties > Table Name.

Learn more about database on:

https://brainly.com/question/518894

#SPJ1

A legacy system is all of the following EXCEPT:Usually found on a mainframe.A system that is already in place, from the past.A system that often holds the middle tier of a multiple-tier system.Old systems that often require hard-to-use command languages.Systems that most often have detailed information that can be accessed by a system at a higher tier.All of the following relate to securing assets EXCEPT:Access to networksAccess to end-user devicesHow third-party vendors ensure securityThe ease with which the system runs after a failure is correctedAccess to servers

Answers

A legacy system is all of the following except a system that often holds the middle tier of a multiple-tier system. The correct option is c.

What is a legacy system?

Any outdated computing system, hardware, or software that is still in use is considered a legacy system. Computer hardware, software programs, file formats, and programming languages are all examples of legacy systems.

It refers to software or IT systems that have been around for a long time but should be replaced by a more recent one due to technical advances.

Therefore, the correct option is c, A system that often holds the middle tier of a multiple-tier system.

To learn more about the legacy system, refer to the link:

https://brainly.com/question/29468465

#SPJ1

write the code to declare and initialize a one-dimensional array of 10 items. each element is assigned a random integer within a range based on its index. example: For index 0, assign a random integer from 0 to 99, inclusive For index 1, assign a random integer from 100 to 199, inclusive For index 2, assign a random integer from 200 to 299, inclusive (and so on...)

Answers

To write the code to declare and initialize a one-dimensional array of 10 items. each element is assigned a random integer within a range based on its index, check the code given below.

What is one-dimensional array?

A type of data structure called an array is used in computer science to store identical data type elements in continuous memory locations. In a single variable, an array enables us to store multiple values of the same type.

The values can be kept in a variety of structures thanks to different types of arrays. The one-dimensional array structure is one of the types of arrays where values are stored that are used the most frequently. 

One of Array's most straightforward forms is this one. Both their definition and application in programmes are very simple. It is simple to initialise and modify the values kept in a one-dimensional array.

//CODE//

import java.util.Random;

 public class RandomArray {

     public static void main(String[] args) {

        int[] arr = new int[10];

        Random random = new Random();

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

            arr[i] = i*100 + random.nextInt(100);

        }

        // print array

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

            System.out.println(arr[i]);

        }

    }

 }

Learn more about one-dimensional array

https://brainly.com/question/28505614

#SPJ4

Other Questions
FILL IN THE BLANK. the _____ theory says people are ""pulled"" by external stimuli to act in a certain way. may result from flexibility of the price system. what is the standard form, degree and leading term of 21y - 3y^2 + 4 +y^3 A 42.4 N block is sliding down an inclined plane with a constant speed. The kinetic friction acting on the block is N. At a local sandwich shop, 45% of customers preferred white bread over whole wheat bread. Of those who chose whole wheat bread, 52% preferred ham for the protein, and 43% of those who chose white bread preferred turkey.What percentage of customers chose whole wheat bread with turkey? Round your answer to the nearest whole percentage. 52% 37% 29% 26% Which of the following represent the solubility of sugar in water at 20 degree Celsius 21 g 204 g 37 g 164 g? What are the 7 main components of fitness? What does the FCC do for consumers? Which components are examples of infrastructure as a service IaaS services servers storage all the options networking? what is section of organisms in biology What is meant by the projectile height? Why was John Adams not elected as President? Find the coordinates of point P along the directed line segment AB so thatAP to PB is in the ratio 3 to 7] Round your answer to the nearest tenth.B(4, 5)A(-2, 1)-4-2Ay61-4-Coordinates: PN.24 x(1+x)2-3x) = 8 bris E= SVIV/22 Accenture has partnered with a global construction company that specializes inbuilding skyscrapers. The company wants better machine-uptime management ontheir build sites. They would also like to improve worksite safety. Accenture isdesigning an Artificial Intelligence (Al) solution to address this scenario.What type of data should be used in the solution? What are the 2 most important accounting principles? the addition of hbr to some alkenes gives a mixture of the expected alkyl bromide and an isomer formed by rearrangement outline the mechanism of formation and strcutres of products form the reaction of hbr with Xiao,a 7-year-old Chinese child,and Jess,a 7-year-old American child,are each listening to an audio tape in their individual rooms.At one point,the audio on both tapes gets covered by static. Which sample of argon gas has the same number of atoms as a 100 ml gas at 1. 0 atm and 300k. The following contingency table summarizes the drug test results for 429 test-takers:For a randomly selected test administration, find the following probabilities. (Round the answers to 4 decimal places.) What is logos mean in the context of the material as it relates to public speaking and why is it important?