[Solved] Determine the design moment, M. of the T-beam shown below with the following dimensions and quantities defined

Determine the design moment, M. of the T-beam shown below with the following dimensions and quantities defined, as provided below: The beams are spaced at 36 in. on center and the span length is 20-ft. Assume t’ = 3,000 psi and fy – 60,000 psi. (25 pts.) h = 32 in. h=2.0 in. bw = 10 in. d=29 in. A = 3.81 in. (3 No. 10 bars) Ini n d A bw

2.
Determine the design moment, M. of the T-beam shown below with the following
dimensions and quantities defined, as provide

Expert Answer


Answer to Determine the design moment, M. of the T-beam shown below with the following dimensions and quantities defined….

[Solved] Completely and thoroughly explain how Six Sigma concepts were used by any company that uses some type of assembly line

Completely and thoroughly explain how Six Sigma concepts were used by any company that uses some type of assembly line to make one or more of their products in order to identify potential areas for improvement in a Six-Sigma Process Improvement Study. Include at least one example of how a Six Sigma study improved a product made on some type of assembly line.

Expert Answer


Answer to Completely and thoroughly explain how Six Sigma concepts were used by any company that uses some type of assembly line ….

[Solved] Bob has just finished climbing a sheer cliff above a beach, and wants to figure out how high he climbed

Bob has just finished climbing a sheer cliff above a beach, and wants to figure out how high he climbed. All he has to use, however, is a baseball, a stopwatch, and a friend on the ground below with a long measuring tape. Bob is a pitcher, and knows that the fastest he can throw the ball is about 34.1 m/s. Bob starts the stopwatch as he throws the ball (with no way to measure the ball\’s initial trajectory), and watches carefully. The ball rises then and then falls, and after 0.710 seconds the ball is once again level with Bob. Bob can\’t see well enough to time when the ball hits the ground. Bob\’s friend then measures that the ball landed 126 m from the base of the cliff. How high up is Bob, if the ball started from exactly 2 m above the edge of the cliff?

Expert Answer


Answer to Bob has just finished climbing a sheer cliff above a beach, and wants to figure out how high he climbed…

[Solved] Write a memorandum in which you address the first four steps described in the U.S. Army Cost Benefit Analysis Guide

You are the city manager of a municipality of 250,000 citizens located in a county with 250,000 more residents living in unincorporated areas surrounding the city. Recently, a large automaker announced its plans to locate an assembly plant in the unincorporated area of the county. The new facility is expected to bring new growth to the city and county. Through a joint service agreement with the county, the city furnishes water to all county residents and is expecting to provide service to the new auto plant. Historically, the user rates charged to county residents residing outside the city have been substantially higher than those charged to city residents. As a result of the higher user fees, providing water to unincorporated
areas has been a source of revenue for the city. The city’s main water treatment plant is more than 40 years old and is operating near capacity. Also, the maintenance costs of the plant are starting to increase at an alarming rate. With the anticipated new demand of more water, the city needs to make a decision about expanding its water treatment capacity.
The mayor and council are looking for guidance on how to determine the best way to increase the city’s water treatment capacity. The mayor is a former military officer and is familiar with the U.S. Army’s approach to cost benefit analysis. The mayor is trying to convince her fellow councilmembers that the city needs to develop a cost benefit analysis to determine the best course of action. You agree with the mayor’s approach to decision-making; however, some older members of the council have some doubts about the use of cost benefit analysis as a decision-making tool. The cost benefit doubters claim that they are elected to make decisions for the city, and they do not want to relinquish their decision-making responsibilities to some opaque operations research technique that the average citizen could not possibly understand. In order to convince the council of the value of cost benefit analysis, the mayor has asked you to write a memorandum addressing the first four steps in the U.S. Army Cost Benefit Analysis Guide.

Assignment Requirements

Write a memorandum in which you address the first four steps described in the U.S. Army Cost Benefit Analysis Guide as they relate to the city’s need to increase its water treatment capacity.
Notes

  • The assignment should be 6 pages, not including reference and title pages
  • For Step 4, you do not need to actually develop cost estimates. Instead, please provide guidance on how you might go about deriving estimates.

Expert Answer


Answer to Write a memorandum in which you address the first four steps described in the U.S. Army Cost Benefit Analysis Guide….

[Solved] A company has two major business systems-Eastern and Western. In November, the Eastern business segment

A company has two major business systems-Eastern and Western. In November, the Eastern business segment had sales revenues of $750,000 and variable expenses of $420,000. During the same month the Western business segment had sales revenues of $380,000 and variable expenses of $240,000. Traceable fixed expenses totaled $216,000 and were allocated as 70% to Eastern and 30% to Western. Common fixed expenses totaled $295,000. Required: Prepare a segmented income statement in the contribution format for the company.

Expert Answer


Answer to A company has two major business systems-Eastern and Western. In November, the Eastern business segment….

[Solved] You are tasked with creating a program that will give statistics regarding the top_100 data

use python language write Code ,show screenshots will be great !

Task 2: Descriptive Statistics Menu (35 marks)
You are tasked with creating a program that will give statistics regarding the top_100 data. The program is to present a console menu that will allow users to give a column and statistic (e.g, “Duration” and “Average”) and receive the appropriate information in return.
Top 100 Information Centre
##########################
1. Minimum
2. Maximum
3. Average
4. Sum
H. Help
Q. quit
>>>
Your code should have the following functionality:
 The menu function is to repeatedly ask the user for input until the user enters the value to quit.
 The menu is the handle both uppercase and lowercase input.
 If a user enters an column that is out of range, then the menu will ask for a valid column.
 Only columns with numeric data can be given to Average and Sum, otherwise the menu will ask
for a valid column.
Note: You are NOT allowed to use any built‐in Python functions other than range(), len(),
input(), print(), upper(), int() and isinstance().

Function header: menu(top_100)
Input: top_100: the top_100 table read from the target file and processed in Assignment 1.
Output: Console output. Based on user commands
Below is example output for selecting the minimum of column 3, using the following sample data in
place of the processed top_100 list. The user first inputs an invalid column and is taken back to the main
menu so they may try again. The user then selects minimum again and gives a valid column index and is
then presented with the column minimum. The user then selects quit from the menu.
sample_data = [[4,3,2,9],
[9,8,7,6],
[2,4,6,1],
[1,3,5,7]]
menu(sample_data)

Examples:
Top 100 Information Centre
##########################
1. Minimum
2. Maximum
3. Average
4. Sum
H. Help
Q. quit
>>> 1
Minimum
Enter a column index:
>>> 10
Please enter a valid index.
Top 100 Information Centre
##########################
1. Minimum
2. Maximum
3. Average
4. Sum
H. Help
Q. quit
>>> 1
Minimum
Enter a column index:
>>> 3
1
Top 100 Information Centre
##########################
1. Minimum
2. Maximum
3. Average
4. Sum
H. Help
Q. quit
>>> H
To select an option, press enter the key corresponding to the menu option.
e.g 1 for Minimum.
Then enter a valid column index. Note, it is invalid to get the average and
sum of string data
File
Home
Insert
Page Layout
Formules
Data
Review
View
Developer
Heli
A1
X
THE SCOTTSTHE SCOTTS
G
H
A
B
С
D
E
F
27 Hot Girl BData
Formulas
view
Review
Develope
File
Home
Insert
Page Layout
X
f
A1
THE SCOTTSTHE SCOTTS
B
D
E
F
G
54 SlideH.E.R. FeaturinFile
Home
Insert
Page Layout
Formulas
Data
Review
VIEW
Developer
A1
THE SCOTTSTHE SCOTTS
B
D
F
G
H
74 TurksNAV Gunna & Travis刚建视图
關規
換
高级
EO PDF Word PDF
目单页 双页
GO
4 /6
SAR
-
向幻灯片全屏背曼富查找 [截图和对比
SCE
回首页
question
x +
Task 2: Descriptive Statistics Menu第第
转换
页面
高级
PDFsWord PDF
后单页
BE
ср
4
| /671
适合
幻灯片全解「引围查找的对比
question
X +
Your code should have the following functionality:视图
第辑
4916
页面
高级
PDF#Word PDF
单页|双页
COⓇOT 4 7671
RE
幻灯片全屏背景 區首批截图和对比图全文却注
OTT
question
x +
Below is example output for selectPDF Word PDF
會单项双页
GO 15/611
-适合宽容
回 幻灯片全展趋
question
X +
Examples:
Top 100 Information Centre
###
# # # # # #
1. Minimum
2. M在三天下
视图
注释
打印
PDF Word Z PDF
目单页|双页
CD005 /6页 适合宽度
向幻灯片全屏背
岛国就可
回首页
question
x +
Top 100 Information Centre
################注释
教炉
页面
高级
PDF Word
EPDF
目单
页面双页
CO
5/65
G适合安度
幻灯片全屏背虽我此
首页
question
X +
Top 100 Information Centre
#####
###
1. Minimum
2.页面
O PDF Word EPDF
目单軍政页
CO
16
/60
-适合宽度
OXH A E
首页
question
x +
Top 100 Information Centre
# ###
###
1. Minimum
2. Maximum
3
Top 100 Information Centre
##########################
1. Minimum
2. Maximum
3. Average
4. Sum
H. Help
Q. quit
>>> Q
Process finished with exit code 0

Expert Answer


Python code: # defining menu function def menu(data): # this while loop will run until the break statement executes because condition for while is passed as True while(True): # printing menu print(“\nTop 100 Information Centre”) print(

[Solved] For client and server communication By using Diffe and Helman algorithm(DH) generate a secret session key(k)

For client and server communication By using Diffe and Helman algorithm(DH) generate a secret session key(k) from both sides (from client and server separately) by using Java .and also by accepting some message from client by using the generated secret session key (K) encrypt the message from client-side and send to server and server uses the generated secret session key(k) of his own and decrypt the received encrypted message in java. thanks in advance.

Expert Answer


//serverside.java

import java.net.*;

import java.io.*;

 

public class serverside {

public static void main(String[] args) throws IOException

{

try {

int portnumber = 8088;

 

// set Key

[Solved] solve in MatLab application. I need solutions/code that I can run in MatLab and get the output

solve in MatLab application. I need solutions/code that I can run in MatLab and get the output

Problem set #17
(7x, +x; -8, -2x, + 2x, = 2
{ x - 3x + x - x - x₂ = 1
1. Solve the linear system using Gaussmethod:
ir syste

Expert Answer


Answer to solve in MatLab application. I need solutions/code that I can run in MatLab and get the output ….

[Solved] For this homework, you will select a published study (2017-2022) on public health prevalence or incidence that uses secondary data

For this homework, you will select a published study (2017-2022) on public health prevalence or incidence that uses secondary data and review its study design and methods.

Homework:

An 800 words max evaluation of the published study you selected. Include the following:

  • A brief description of the study you selected including research question
  • An explanation of the study design
  • An explanation of the dataset used in study
  • Identify dependent and independent variables used
  • An evaluation of whether the selected study design, methods, and secondary data sources were the most appropriate (provide your rationale).
  • Use the bullet points above as subheading in the homework, and due Wednesday Night

Support your homework based on the reading materials and current literature and use APA formatting for your homework and to cite your resources.

Expert Answer


Answer to For this homework, you will select a published study (2017-2022) on public health prevalence or incidence that uses secondary data….

Think about an important situation occurring in a public management organization that would require thoughtful decision-making

Think about an important situation occurring in a public management organization that would require thoughtful decision-making