Questions
1. What dimension (s) are the same between the top and right-side view? -Width -Height -Depth...

1. What dimension (s) are the same between the top and right-side view?

-Width
-Height
-Depth
-Width and depth
-Height and depth

2.What of the following statements is true about the cutting-plane line?

-The cutting-plane line indicate the location of cut
-The cutting-plane line is a thick dashed line
The cutting-plane line need not always to be straight
-Arrows at the ends of the cutting-plane line indicate the sight direction
-All of the above

3. Which of the following is not a type of a section view?

-Removed section
-Auxiliary section
-Offset section
-Aligned section
-None of the

4. In a drawing that shows the top, front, and right-side view, which views show width?

-Front and top views
-Front and right-side views
-Top and right side views
-Right-side view only
-None of the above
5. Which of the following statements is not true about a section view?

-A sectioned area is always completely bounded by a visible outline, never by a hidden line
-Cut surfaces are cross-hatched with thin parallel section lines
-Visible line can never cross a sectioned area in a view of a single part
-In a full section, the back half (behind the cutting plane) is imagined removed
-None of the above

6. What dimension (s) are the same between the front and right side view?

-Width
-Height
-Depth
-Width and height
-Depth and height
7. Which of the following is true about a section view?

-A section view shows edges and contours which are now visible behind the cutting-plane
-A section view can replace any standard orthographic view
-A section view is placed opposite to the direction of sight
-Hidden lines are often omitted from section views
-All of the above
  
8. What dimension (s) are the same between the top and the front view?

-Width
-Height
-Depth
-Width and height
-Width and depth
  
9. Which of the following is a type of a section view?
Group of answer choices
-Full section
-Half section
-Broken section
-Revolved sections
-All of the above

10. Which of the following statements is true about an aligned section?

-The cutting-plane is bent to pass through features of interest
-The cutting-plane line is often revolved through the angled features
-The angle of revolution is always less than 90 degrees
-The section view is not a normal projection
-All of the above
  
11. Which of the following statements is not true about section-lines?

-They are not too close together
-They should not be parallel to outline
-They should not ne parallel to outline
-They are shown behind dimension and extension lines
-None of the above
12. Which of the following statements is not true about a section view?

-In a full section, the cutting-plane line is often omitted
-In a full section, the front half (between the observer and the cutting plane) is imagined removed
-Section line (cross hatching) symbols cannot be used to indicate specific materials
-Section lines in all hatched areas for a single object must be parallel
-None of the above
  
13. Which of the following statements is true about section-lines?

-They are uniformly spaced
-They are uniformly thin, not varying in thickness
-They are distinctly thinner than visible lines
-The do not run beyond or stop short of visible outlines
-All of the above

In: Mechanical Engineering

6. A 200-kg roller coaster reaches the top of the steepest hill with a speed of...

6. A 200-kg roller coaster reaches the top of the steepest hill with a speed of 5.80 km/h. It then descends the hill, which is at an angle of 35° and is 41.0 m long. What will its kinetic energy be when it reaches the bottom? Assume µk = 0.18.

In: Physics

In the United States, the degree of labor market protection has decreased significantly since 1970’s. Explain...

  1. In the United States, the degree of labor market protection has decreased significantly since 1970’s. Explain the effects of this trend on economic growth in the medium-run and long-run perspective. What are the implications for income inequality in the United States?

In: Economics

The MarsX Space Vehicles Company has been very successful. Due to an increase in demand for...

The MarsX Space Vehicles Company has been very successful. Due to an increase in demand for its STS’s, the company had to hire thousands of scientists, engineers and staff from all over the world. As we all know, not all countries use the same system of measurements. The U.S., Liberia and Burma use the English system; while the rest of the world uses the metric system. In addition scientists use specific scales for some of their applications. To avoid confusion among team members from different countries, the company has commissioned the development and deployment of conversion applications. Your job is to write a program that interchangeably converts between different temperature scales (Celsius, Fahrenheit and Kelvin).

Your job depends on the success of this application. Therefore, make sure you write clean code and test it thoroughly.

Your program must do the following:

  1. Display the menu below and get user input. Re-display the menu until the user enters 4.
  1. Convert from Celsius
  2. Convert from Fahrenheit
  3. Convert from Kelvin
  4. Quit Program

  1. If the user enters 1, prompt the user to enter 3 numbers that represent temperatures expressed in degree Celsius. The program must then convert the temperatures to degree Fahrenheit and Kelvin and output them in a table as follows:

Celsius

Fahrenheit

Kelvin

-10.00

14.00

263.15

0.00

32.00

273.15

100.00

212.00

373.15

  1. If the user enters 2, prompt the user to enter 3 numbers that represent temperatures expressed in degree Fahrenheit. The program should then convert the temperatures to degree Celsius and Kelvin and output them in a table as follows:

Fahrenheit

Celsius

Kelvin

-10.00

-23.33

249.82

0.00

-17.78

255.37

100.00

37.78

310.93

  1. If the user enters 3, prompt the user to enter 3 numbers that represent temperatures expressed in degree Kelvin (no negative numbers allowed, validate). The program should then convert the temperatures to degree Fahrenheit and Celsius and output them in a table as follows:

Kelvin

Fahrenheit

Celsius

0.00

-459.67

-273.15

100.00

-279.67

-173.15

1000.00

1340.33

726.85

  1. If the user enters 4, quit the program.

Needed conversion formulas:

From

To

       Formula

Celsius

Fahrenheit

F = C * (9.0/5.0) + 32

Celsius

Kelvin

K = C + 273.15

Fahrenheit

Celsius

C = (F – 32) * (5.0/9.0)

Fahrenheit

Kelvin

K = (F + 459.67) * (5.0 /9.0)

Kelvin

Fahrenheit

F = K * (9.0/5.0) – 459.67

Kelvin

Celsius

C = K – 273.15

Your program must comply with the following constraints:

  1. Must declare at least the following 4 function prototypes:

int getMenuSelection();                  /*Displays menu and gets user selection*/

void convertFromCelsius();             /*From Celsius to the other scales*/

void convertFromFahrenheit();        /*From Fahrenheit to the other scales*/

void convertFromKelvin();              /*From Kelvin to the other scales*/

  1. The main function must look exactly as shown below:

int main()

{

int menuSelection = 0;

do

       {

system(“cls”);

menuSelection = getMenuSelection();

             switch (menuSelection)

{

       case 1: convertFromCelsius();

             break;

       case 2: convertFromFahrenheit();

             break;

       case 3: convertFromKelvin ();

             break;

       case 4: break; /*Do nothing. Exit Condition*/

       default: printf(“Please enter a number between 1 and 4 \n”);

system(“pause”);

}

       } while (menuSelection != 4);

system(“pause”);

return 0;

}

In: Computer Science

Compare and contrast Ford’s strategy to one of its competitors.

Compare and contrast Ford’s strategy to one of its competitors.

In: Operations Management

At 25

At 25

In: Chemistry

Decision Alternatice S_1 S_2 S_3 S_4 D_1 14 9 10 5 D_2 11 10 8 7...

Decision Alternatice

S_1

S_2

S_3

S_4

D_1

14

9

10

5

D_2

11

10

8

7

D_3

9

10

10

11

D_4

8

10

11

13

  1. State and use the average payoff strategy to choose the best decision
  2. State and use the aggressive strategy to choose the best decision
  3. State and use the conservative strategy to choose the best decision
  4. State and use the opportunity loss strategy to make the best decision
  5. Suppose the decision maker obtains information that enables the following probabilities assessments: P(s_1) = 0.5; P(s_2) = 0.2; P(s_3) = 0.2; and P (s_4) = 0.1. use the expected value approach to determine the optimal strategy

In: Math

Scenario: Of The Month Club (OTMC) Consider a System Request that has been received for the...

Scenario: Of The Month Club (OTMC)

Consider a System Request that has been received for the following proposed System:  

• Of‐the‐Month Club (OTMC) is an innovative young firm that sells memberships to people who have an interest in certain products.  

• People pay membership fees for 1 year and each month receive a product by mail. For example, OTMC has a coffee‐of‐the‐month club that sends members one pound of special coffee each month.  

• OTMC currently has six memberships (coffee, wine, beer, cigars, flowers, and computer games), each of which costs a different amount.  

• Customers usually belong to just one, but some belong to two or more. • When people join OTMC, the telephone operator records the name, mailing address, phone number, e‐mail address, credit card information, start date, and membership plan(s) (e.g., coffee). A new system would allow members to self-enroll via the web. • Some customers request a double or triple membership (e.g., 2 pounds of coffee, three cases of beer).  

• The computer game membership operates a bit differently from the others. In this case, the member must also select the type of game (action, arcade, fantasy/science fiction, educational, etc.) and age level.  

• OTMC is planning to greatly expand the number of memberships it offers (e.g., video games, movies, toys, cheese, fruit, vegetables), so the system needs to accommodate this future expansion.  

• OTMC is also planning to offer 3‐month and 6‐month memberships.

Part 1:  

Based on the scenario and the high-level requirements described above, create a set of use cases for an information system that would support OTMC operations as described above. Use the fully developed template available in Canvas

Recommendation: In building the major use cases, follow the four‐step process: identify the use cases, identify the steps within them, identify the elements within the steps, and confirm the use cases.

Part 2:

Draw a context diagram and a Level 0 DFD (Data Flow Diagram) for the use cases you developed in part 1.

In: Computer Science

Q: Why does a prism separate light into different colors ?

Q: Why does a prism separate light into different colors ?

In: Chemistry

1 - Why are adjustments need at the end of an accounting period? Identify four different...

1 - Why are adjustments need at the end of an accounting period? Identify four different caregories of adjustments at the end of an accounting period. why are adjustments necessary?

In: Accounting

                                           &n

                                                                      State and Local Government Expenditures

The city of San Alameda provides free health care services for the medically indigent (poor and uninsured). Suppose the city has $2 million to spend on these services and private goods. One unit of health care services (e.g. a physician office visit) costs $110. Thus, the budget equation for San Alameda for these two types of goods is:

$2 Million = $P + $110H,

where H is the units of indigent health care services provided, and P is total expenditure on private goods (P is measured in dollars because we assume each unit of P costs $1).

1. If the San Alameda spends equal amounts on indigent health care services and the private good, how many units of health care services are purchased by the city?

2. Suppose the city of San Alameda receives a 40-percent matching grant from the state for spending on indigent health services. Specifically, the state spends $0.40 on indigent health care services for every $1 spent by the city on these services.

2a) If, after receiving the grant, San Alameda spends $1 million on the private good, how many units of indigent health care services are purchased? (Round to nearest whole number)

2b) Under matching grant, how much of total indigent health care expenditures is paid by the state?

2c) What is the effective price of health care services for the city of San Alameda under the matching grant? (Enter a formula to calculate the effective price.. show work)

3. Suppose, instead of a matching grant, the state provided the city of San Alameda a block grant equal to what the state would have spent with the matching grant (2b. above). Suppose, also, San Alameda uses its budget plus the block grant to spend equal amounts on indigent health care services and the private good.

3a) How many units of indigent health care services are purchased by San Alameda?

4. Using relevant economic concepts, explain why a matching grant generally leads to more consumption of a public good than an unrestricted block grant.

In: Economics

Consider the audit risk model and its effect on the amount of evidence examined by the...

  1. Consider the audit risk model and its effect on the amount of evidence examined by the auditor.
    1. Describe each of the four risks in the model and indicate how it is related to the amount of evidence (directly or inversely)
    2. Describe how that business risk maybe factored into acceptable audit risk.
    3. How is risk of material misstatement calculated? Would the auditor rather see a higher or lower value?
    4. Can the risks be calculated precisely? Why or why not?

In: Accounting

Analyze why Ford Motor Company has chosen to pursue a foreign subsidiary strategy

Analyze why Ford Motor Company has chosen to pursue a foreign subsidiary strategy

In: Operations Management

Write a program called distance_square.c that reads an integer n from standard input, and prints an...

Write a program called distance_square.c that reads an integer n from standard input, and prints an nxn pattern of integers. Each integer is the minimum number of steps required to reach the centre of the square. Steps can only be up, down, left or right (no diagonal movement). the question should be allowed to use only while loop

 4  3  2  3  4 
 3  2  1  2  3 
 2  1  0  1  2 
 3  2  1  2  3 
 4  3  2  3  4 

Observing the example above, each integer represents the minimum number of steps required to reach the centre of the square. For example, the top left corner contains the integer 4. The centre of the square can be reached in 4 steps (right, right, down, down).

You can assume n is odd and >= 3.

Make your program match the examples below exactly.

This exercise is designed to give you practice with while loops, if statements and some mathematical operators. Do not use arrays for this exercise!

Note: you are not permitted to use an array in this exercise. and you are suppose to use while loop only!!

./distance_square
Enter square size: 3
 2  1  2 
 1  0  1 
 2  1  2 

./distance_square
Enter square size: 9
 8  7  6  5  4  5  6  7  8 
 7  6  5  4  3  4  5  6  7 
 6  5  4  3  2  3  4  5  6 
 5  4  3  2  1  2  3  4  5 
 4  3  2  1  0  1  2  3  4 
 5  4  3  2  1  2  3  4  5 
 6  5  4  3  2  3  4  5  6 
 7  6  5  4  3  4  5  6  7 
 8  7  6  5  4  5  6  7  8 

./distance_square
Enter square size: 15
14 13 12 11 10  9  8  7  8  9 10 11 12 13 14 
13 12 11 10  9  8  7  6  7  8  9 10 11 12 13 
12 11 10  9  8  7  6  5  6  7  8  9 10 11 12 
11 10  9  8  7  6  5  4  5  6  7  8  9 10 11 
10  9  8  7  6  5  4  3  4  5  6  7  8  9 10 
 9  8  7  6  5  4  3  2  3  4  5  6  7  8  9 
 8  7  6  5  4  3  2  1  2  3  4  5  6  7  8 
 7  6  5  4  3  2  1  0  1  2  3  4  5  6  7 
 8  7  6  5  4  3  2  1  2  3  4  5  6  7  8 
 9  8  7  6  5  4  3  2  3  4  5  6  7  8  9 
10  9  8  7  6  5  4  3  4  5  6  7  8  9 10 
11 10  9  8  7  6  5  4  5  6  7  8  9 10 11 
12 11 10  9  8  7  6  5  6  7  8  9 10 11 12 
13 12 11 10  9  8  7  6  7  8  9 10 11 12 13 
14 13 12 11 10  9  8  7  8  9 10 11 12 13 14 

In: Computer Science

Java Language: Using program created in this lesson as a starting point, create a circular list...

Java Language:

Using program created in this lesson as a starting point, create a circular list with at least four nodes. A circular list is one where the last node is made to point to the first. Show that your list has a circular structure by printing its content using an iterative structure such as a while. This should cause your program to go into an infinite loop so you should include a conditional that limits the number of nodes to be printed to a specific value, for example 20.

Code:

class Node {

int value;

Node nextNode;

Node(int v, Node n)

{

value = v;

nextNode = n;

}

Node (int v)

{

this(v,null);

}

}


class Stack {

protected Node top;

Stack()

{

top = null;

}

boolean isEmpty()

{

return( top == null);

}

void push(int v)

{

Node tempPointer;

tempPointer = new Node(v);

tempPointer.nextNode = top;

top = tempPointer;

}

int pop()

{

int tempValue;

tempValue = top.value;

top = top.nextNode;

return tempValue;

}

void printStack()

{

Node aPointer = top;

String tempString = "";

while (aPointer != null)

{

tempString = tempString + aPointer.value + "\n";

aPointer = aPointer.nextNode;



System.out.println(tempString);

}

}

public class StackWithLinkedList{

public static void main(String[] args){

int popValue;

Stack myStack = new Stack();

myStack.push(5);

myStack.push(7);

myStack.push(9);

myStack.printStack();

popValue = myStack.pop();

popValue = myStack.pop();

myStack.printStack();

}

}

In: Computer Science