SlideShare une entreprise Scribd logo
1  sur  28
Télécharger pour lire hors ligne
6/14/2017 P12.081 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 1/5
Attempts: Unlimited
Print by: Amer Almarzooqi
ENGR 213-001 Sp17 / HW CH 12
*P12.081 GO Multipart
*Part 1
Correct
Consider a point in a structural member that is subjected to plan
e stress. Normal and shear stress
magnitudes acting on horizontal and vertical planes at the point
are Sx = 330 MPa, Sy = 105 MPa,
and Sxy = 65 MPa. Assume .
Construct Mohr’s circle for this state of stress on paper and use
the results to answer the questions
in the subsequent parts of this GO exercise.
For this Mohr’s circle, point x, which represents the state of str
ess on the x face of the stress
element, should appear:
*Part 2
Correct
For the given state of stress at a point in a structural member, d
etermine the center C and the
radius R of Mohr’s circle.
Answers: C = MPa, R = MPa.
Below and to the right of the circle center.
Above and to the left of the circle center.
Above and to the right of the circle center.
Below and to the left of the circle center.
-217.5 129
6/14/2017 P12.081 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 2/5
Attempts: Unlimited
Attempts: Unlimited
Attempts: Unlimited
Answer *1: the tolerance is +/-2%
Answer *2: the tolerance is +/-2%
*Part 3
Correct
Determine the principal stresses ( ) for this state of stress.
Answers: MPa, MPa.
Answer *1: the tolerance is +/-2%
Answer *2: the tolerance is +/-2%
*Part 4
Incorrect
Use the coordinates of point x and the center C of the circle to d
etermine the acute central
angle. The other central angle is 180° minus the acute angle.
For this Mohr’s circle, determine the magnitude of the central a
ngle between:
(a) point x and the point representing the principal stress .
(b) point x and the point representing the principal stress .
Answers:
(a) Angle = °,
(b) Angle = °.
Answer *1: the tolerance is +/-2%
Answer *2: the tolerance is +/-2%
Part 5
Correct
Angles measured in Mohr’s circle are double angles
. The orientation of the principal planes in
the x–y coordinate system is defined by an angle
. If the acute angle determined in Part 4 is
used for
, which sketch correctly defines the orientation of the principal
planes?
-88.5 -346.5
-4.09 *1
175.91 *2
6/14/2017 P12.081 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 3/5
6/14/2017 P12.081 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 4/5
Attempts: Unlimited
Attempts: Unlimited
Attempts: Unlimited
*Part 6
(a) Determine the magnitude of the maximum in-plane shear str
ess.
(b) Determine the normal stress that acts on planes of maximum
in-plane shear stress. Give the
stress value including sign if any.
Answers:
(a) MPa.
(b) MPa.
Answer *1: the tolerance is +/-2%
Answer *2: the tolerance is +/-2%
*Part 7
To determine the normal and shear stresses on the indicated pla
ne, we must first determine the
orientation of the inclined plane relative to the x face of the stre
ss element. Determine the
magnitude of the counterclockwise angle
between the x face and the inclined plane. Assume Sx
= 330 MPa, Sy = 105 MPa, Sxy = 65 MPa, and .
Answer: °.
the tolerance is +/-2%
*1
*2
*1
6/14/2017 P12.081 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 5/5
Attempts: Unlimited
Attempts: Unlimited
Attempts: Unlimited
*Part 8
For Mohr’s circle, all angular measures are doubled; therefore,
point n (which represents the state
of stress on the n plane) on Mohr’s circle is rotated
counterclockwise from point x. From the
Mohr’s circle that you constructed on a piece of paper, determin
e the central angle between
point n and the principal stress .
Answer: °.
the tolerance is +/-2%
*Part 9
Use the center of the circle C, the circle radius R, and the angle
determined in Part 8 to
compute:
(a) the normal stress
. Give the stress value including sign if any.
(b) the shear stress . Give the stress value including sign if any.
Answers:
(a) MPa,
(b) MPa.
Answer *1: the tolerance is +/-2%
Answer *2: the tolerance is +/-2%
*Part 10
Calculate the absolute maximum shear stress magnitude.
Answer: MPa.
the tolerance is +/-2%
Copyright © 2000-2017 by John Wiley & Sons, Inc. or related c
ompanies. All rights reserved.
*1
*1
*2
*1
1
BIT 3444
Homework 3: A DataReader Application
Homework 3 Submission: This is an individual homework
assignment. Compress your
complete VB project folder into a .zip file. Upload the .zip file
to our homework
submission site.
In this assignment, you will implement an electronic stock
trading system. Your system
will accept trading orders and based on those orders, it will
keep track of pending orders,
and execute trades when possible.
1. Database design (20 points)
Use Microsoft Access to design a database for the stock trading
system. You should
determine the tables to be created, the attributes in each table,
and the primary key in
each table. DO NOT define foreign keys in this assignment even
they do exist. It will be
easier for you to debug your VB program when foreign keys are
absent.
The system maintains common stocks records. Each stock is
described by a ticker symbol
(e.g., BAC), a company name, exchange venue (e.g., NYSE),
listing date, sector, and
industry.
The system also keeps track of stocks’ daily closing records.
Each closing record consists
of a ticker symbol, a date, opening price, highest price of the
day, lowest price of the day,
the closing price, trading volume on that day, and 1 day price
change %.
Users can use the system to place market order requests for
stock trading. A market order
is a request to purchase or sell a stock at the current market
price. Each order request
should include a ticker symbol, date and time of the request,
type of order (buy or sell),
quantity of stock to be traded, and order status (pending,
completed, or cancelled).
2. Database population (10 points)
Use Microsoft Access to populate at least 10 records into each
of the database tables created
above. You must pick at least 10 stocks from this web site:
http://www.1stock1.com/1stock1_112.htm , where you can find
last year’s return rate % for each
stock. For other stock information, please use the Yahoo!
Finance
(http://finance.yahoo.com/stock-center/) and search by the stock
ticker symbol. The sector and
industry information can be found from the company profile
page on Yahoo! Finance. Please
make sure that you have at least 2 sectors and 2 industries per
sector, and that each industry has at
least 2 stocks.
After you populate the stocks table, you should populate daily
records and trading requests based
on either true market data or your imagination. Please make
sure that you have a mixture of
different order types and statuses for different stocks. A
minimum of 10 records is required for
each table.
3. SimpleBroker v1.0: A DataReader Application (70 points).
http://www.1stock1.com/1stock1_112.htm
http://finance.yahoo.com/stock-center/
2
MB v1.0 is a DataReader application for placing stocking
trading request. You must use a
DataReader object to retrieve records from the database and a
Command object to update the
database. The following describes the components needed for
the development.
(1) User interface: You should design your user interface to
support the following functions.
Label objects should be used appropriately to make your
interface user-friendly. (10 points)
(2) Populate the stock ticker ComboBox control: The user
should start with a ComboBox
control (StocksComboBox) that displays the complete list of
stock tickers retrieved from
the database. (15 points)
(3) Populate the stock closing price ListBox control: After the
user selects a stock ticker from
StocksComboBox, a ListBox control (ClosingPricesListBox)
should display a list of past
closing prices of the selected stock. Each past closing price
should indicate both a date and
a closing price (e.g., “03/20/2013-$90.23”). The list should be
ordered by descending dates.
(15 points)
(4) Populate a ListBox control: After the user selects a stock
ticker from StocksComboBox,
another ListBox control (TradingRequestsListBox) will display
a list of currently pending
stock trading requests for the selected stock. Each request
should indicate the order type
and stock quantity (e.g., “BUY-2000”). The list is ordered by
the order type first and then
by quantity. (15 points)
(5) Placing a new order request (15 points):
ComboxBox control
(TradeTypeComboBox), and enters a stock quantity to be traded
in a TextBox
control (QuantityTextBox).
request record to
the database.
4. Bonus questions (20 points):
(6) Sector selection: Another ComboBox control
(SectorsComboBox) should be used to
display all sectors in the database. The user starts with selecting
a specific sector from
SectorsComboBox. StocksComboBox will then only display
those stock stickers in the
selected sector. (10 points)
(7) Error handling: Use data validation or exception handling to
prevent the following
runtime errors from interrupting the program execution:
a. Non-numeric values in QuantityTextBox (5 points)
b. OleDbException when populating the ListBox and ComboBox
controls.
You can get such an exception if your database table is open
from Access in
the Design View when you try to execute your VB program. (5
points)
6/14/2017 P10.058 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 1/2
Attempts: Unlimited
Attempts: Unlimited
Print by: Amer Almarzooqi
ENGR 213-001 Sp17 / HW CH 10
*P10.058 GO Multipart
*Part 1
The cantilever beam shown consists of a rectangular structural s
teel tube shape [E = 200 GPa; I
= 350 × 106 mm4]. Assume P = 55 kN, w = 15 kN/m, LAB = 1.5
0 m, and LBC = 2.50 m. For the
loading shown, determine:
(a) the beam deflection at point A.
(b) the beam deflection at point B.
Determine the component of the beam deflection at point A due
to only the uniformly distributed
load of w = 15 kN/m.
Answer: vA,w = mm.
the tolerance is +/-2%
*Part 2
Determine the component of the beam deflection at point B due
to only the concentrated load of P
= 55 kN.
Answer: vB,P = mm.
the tolerance is +/-2%
*Part 3
Determine the component of the rotation angle of the beam at p
oint B due to only the concentrated
load of P = 55 kN.
Answer: rad.
the tolerance is +/-2%
*1
*1
*1
6/14/2017 P10.058 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 2/2
Attempts: Unlimited
Attempts: Unlimited
Attempts: Unlimited
Attempts: Unlimited
Attempts: Unlimited
*Part 4
Determine the component of the beam deflection at point A due
to only the concentrated load of P
= 55 kN.
Answer: vA,P = mm.
the tolerance is +/-2%
*Part 5
Determine the total beam deflection at point A due to the combi
ned effects of the concentrated load
P and the uniformly distributed load w.
Answer: vA = mm.
the tolerance is +/-2%
*Part 6
Determine the component of the beam deflection at point B due
to only the uniformly distributed
load of w = 15 kN/m.
Answer: vB,w = mm.
the tolerance is +/-2%
*Part 7
Determine the total beam deflection at point B due to the combi
ned effects of the concentrated load
P and the uniformly distributed load w.
Answer: vB = mm.
the tolerance is +/-2%
Copyright © 2000-2017 by John Wiley & Sons, Inc. or related c
ompanies. All rights reserved.
*1
*1
*1
*1
6/14/2017 P10.050 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 1/4
Attempts: Unlimited
Attempts: Unlimited
Print by: Amer Almarzooqi
ENGR 213-001 Sp17 / HW CH 10
*P10.050 GO Multipart
*Part 1
Correct
You will analyze four different beams. For each beam and loadi
ng, determine the beam deflection at
point H. Assume that EI = 1.5 × 10
7
kip-in.
2
is constant for each beam. Remember that a positive
deflection is up and a positive rotation is counterclockwise.
Here is Beam 1.
Assume LAB=7 ft, LBH=9 ft, MB=45 kip-ft.
For Beam 1, determine the deflection and rotation angle at point
B.
Answers: vB1 = in., rad.
Answer *1: the tolerance is +/-2%
Answer *2: the tolerance is +/-2%
*Part 2
Correct
For Beam 1, determine the deflection at point H.
Answer: vH1 = in.
the tolerance is +/-2%
*Part 3
-0.127 -0.00302
-0.45
6/14/2017 P10.050 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 2/4
Attempts: Unlimited
Attempts: Unlimited
Incorrect
In Appendix C, see the simply supported beam with a concentrat
ed force P which does not act
at beam midspan. Here, for the purpose of calculating the rotati
on angle at point C due to P,
the portion of the beam from C to H can be ignored, and the bea
m can be treated as a simply
supported beam of length AC. Be careful with units and the sign
convention.
Here is Beam 2
Assume LAB=13 ft, LBC=8 ft, LCH=5 ft, P=15 kips.
For Beam 2, determine the rotation angle at point C.
Answer: rad.
the tolerance is +/-2%
*Part 4
For Beam 2, determine the deflection at point H.
Answer: vH2 = in.
the tolerance is +/-2%
*Part 5
Correct
Here is Beam 3.
Assume LAH=5 ft, LHB=10 ft, w=2.0 kips/ft.
0.084 *1
*1
6/14/2017 P10.050 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 3/4
Attempts: Unlimited
Attempts: Unlimited
For Beam 3, determine the deflection at point H.
Answer: vH3 = in.
the tolerance is +/-2%
*Part 6
Incorrect
In Appendix C, see the cantilever beam with a uniformly distrib
uted load. For this calculation,
the portion of the beam from A to B can be ignored. The beam i
s treated as a cantilever beam
of length AB that is fixed at A. Be careful with units and the sig
n convention.
Here is Beam 4.
Assume LHA=9 ft, LAB=23 ft, w=4.0 kips/ft.
For Beam 4, determine the cantilever deflection of the beam at
point H due to the uniformly
distributed load 4.0 kips/ft between point A and point H. This is
the deflection that would be
calculated at point H assuming a fixed support at A.
Answer: vH4a = in.
the tolerance is +/-2%
*Part 7
-0.816
0.472 *1
6/14/2017 P10.050 GO Multipart
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 4/4
Attempts: Unlimited
Attempts: Unlimited
Attempts: Unlimited
Attempts: Unlimited
For Beam 4, determine the magnitude (report a positive number)
of the bending moment at point A
due to the uniformly distributed load 4.0 kips/ft between point
H and point A.
Answer: MA = kip-ft.
the tolerance is +/-2%
*Part 8
For Beam 4, determine the rotation angle at point A due to the
moment produced at A by the
uniformly distributed load 4.0 kips/ft between point H and point
A.
Answer: rad.
the tolerance is +/-2%
*Part 9
For Beam 4, determine the component of the deflection at point
H due to the rotation angle at A.
Answer: vH4b = in.
the tolerance is +/-2%
*Part 10
For Beam 4, determine the total deflection at point H.
Answer: vH4 = in.
the tolerance is +/-2%
Copyright © 2000-2017 by John Wiley & Sons, Inc. or related c
ompanies. All rights reserved.
*1
*1
*1
*1
6/14/2017 P9.001
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 1/2
Print by: Amer Almarzooqi
ENGR 213-001 Sp17 / HW CH 9
*P9.001
Incorrect
For the following problem, a beam segment subjected to internal
bending moments at sections A
and B is shown along with a sketch of the cross-sectional dimen
sions. Consider area (1) of the
20-in.-long beam segment, which is subjected to internal bendin
g moments of MA = 25kip-
ft and MB = 34kip-ft. Assume b=3.1 in., t=0.85 in. and d=16.25
in.
(a) Sketch a side view of the beam segment and plot the distribu
tion of bending stresses acting at
sections A and B. Indicate the magnitude of key bending stresse
s on the sketch.
(b) Determine the resultant forces acting in the x direction on A
rea (1) at sections A and B and
show these resultant forces on the sketch.
(c) Is the Area (1) in equilibrium with respect to forces acting i
n the x direction? If not, determine
the horizontal force required to satisfy equilibrium for the speci
fied area and show the location and
direction of this force on the sketch.
Answer Section
(a) On paper, sketch a side view of the beam segment and plot t
he distribution of bending stresses
acting at sections A and B. Indicate the magnitude of key bendi
ng stresses on the sketch. Below,
enter the normal stresses at the specified locations. For your ent
ries below, follow the sign
convention for normal stresses.
Answers:
At the top of the upper flange, section A:
psi
At the bottom of the upper flange, section A:
psi
At the top of the lower flange, section A:
psi
At the bottom of the lower flange, section A:
2346 *1
-1173 *2
1173 *3
6/14/2017 P9.001
https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
int.uni 2/2
Question Attempts: Unlimited
psi
At the top of the upper flange, section B:
psi
At the bottom of the upper flange, section B:
psi
At the top of the lower flange, section B:
psi
At the bottom of the lower flange, section B:
psi
(b) Below, enter the magnitudes of the resultant forces acting in
the x direction on Area (1) at
sections A and B. Since you are entering force magnitudes belo
w, enter positive values.
FA =
lb
FB =
lb
(c) If you believe area (1) is in equilibrium with respect to force
s acting in the x direction, enter
zero for fh below. If not, determine the horizontal force require
d to satisfy equilibrium for area (1).
Enter the value as positive if a force directed from A to B is req
uired for equilibrium, or negative if a
force directed from B to A is required.
fh = lb
Answer *1: the tolerance is +/-2%
Answer *2: the tolerance is +/-2%
Answer *3: the tolerance is +/-2%
Answer *4: the tolerance is +/-2%
Answer *5: the tolerance is +/-2%
Answer *6: the tolerance is +/-2%
Answer *7: the tolerance is +/-2%
Answer *8: the tolerance is +/-2%
Answer *9: the tolerance is +/-2%
Answer *10: the tolerance is +/-2%
Answer *11: the tolerance is +/-2%
Copyright © 2000-2017 by John Wiley & Sons, Inc. or related c
ompanies. All rights reserved.
-1676 *4
5457 *5
-1676 *6
-1676 *7
-1676 *8
-16911 *9
-22999 *10
-6088 *11

Contenu connexe

Similaire à 6142017 P12.081 GO Multiparthttpsedugen.wileyplus.com.docx

M166Calculus” ProjectDue Wednesday, December 9, 2015PROJ.docx
M166Calculus” ProjectDue Wednesday, December 9, 2015PROJ.docxM166Calculus” ProjectDue Wednesday, December 9, 2015PROJ.docx
M166Calculus” ProjectDue Wednesday, December 9, 2015PROJ.docxinfantsuk
 
data analysis helps excel worksheet.pdf
data analysis helps excel worksheet.pdfdata analysis helps excel worksheet.pdf
data analysis helps excel worksheet.pdfstirlingvwriters
 
Hw8Excel - Exercise 8 Mail Merge-2.docINFS 3250In Class Pro.docx
Hw8Excel - Exercise 8 Mail Merge-2.docINFS 3250In Class Pro.docxHw8Excel - Exercise 8 Mail Merge-2.docINFS 3250In Class Pro.docx
Hw8Excel - Exercise 8 Mail Merge-2.docINFS 3250In Class Pro.docxadampcarr67227
 
Homework Value of InformationPlease respond to the following.docx
Homework Value of InformationPlease respond to the following.docxHomework Value of InformationPlease respond to the following.docx
Homework Value of InformationPlease respond to the following.docxadampcarr67227
 
Monte Carlo Simulation for project estimates v1.0
Monte Carlo Simulation for project estimates v1.0Monte Carlo Simulation for project estimates v1.0
Monte Carlo Simulation for project estimates v1.0PMILebanonChapter
 
CCE 102 – Homework 4Due Friday March 2 at 5 pm in Mailboxes on f.docx
CCE 102 – Homework 4Due Friday March 2 at 5 pm in Mailboxes on f.docxCCE 102 – Homework 4Due Friday March 2 at 5 pm in Mailboxes on f.docx
CCE 102 – Homework 4Due Friday March 2 at 5 pm in Mailboxes on f.docxcravennichole326
 
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docxWeek 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docxmelbruce90096
 
Cover PageComplete and copy the following to Word for your cover p.docx
Cover PageComplete and copy the following to Word for your cover p.docxCover PageComplete and copy the following to Word for your cover p.docx
Cover PageComplete and copy the following to Word for your cover p.docxfaithxdunce63732
 
Statement of Operations and Financial StatementsSubmit written r.docx
Statement of Operations and Financial StatementsSubmit written r.docxStatement of Operations and Financial StatementsSubmit written r.docx
Statement of Operations and Financial StatementsSubmit written r.docxwhitneyleman54422
 
Assignment3
Assignment3Assignment3
Assignment3Mahmoud
 
© 2022 UniCourse Ltd. All Rights Reserved Issue 3 - 20222023
© 2022 UniCourse Ltd. All Rights Reserved  Issue 3 - 20222023© 2022 UniCourse Ltd. All Rights Reserved  Issue 3 - 20222023
© 2022 UniCourse Ltd. All Rights Reserved Issue 3 - 20222023dessiechisomjj4
 
GSP 215 Enhance teaching/tutorialrank.com
 GSP 215 Enhance teaching/tutorialrank.com GSP 215 Enhance teaching/tutorialrank.com
GSP 215 Enhance teaching/tutorialrank.comjonhson300
 
GSP 215 Inspiring Innovation/tutorialrank.com
GSP 215 Inspiring Innovation/tutorialrank.comGSP 215 Inspiring Innovation/tutorialrank.com
GSP 215 Inspiring Innovation/tutorialrank.comjonhson129
 
Fall 2018 Statics Mid-Term Exam 3 Take-Home Name Please .docx
Fall 2018  Statics Mid-Term Exam 3 Take-Home Name Please .docxFall 2018  Statics Mid-Term Exam 3 Take-Home Name Please .docx
Fall 2018 Statics Mid-Term Exam 3 Take-Home Name Please .docxmecklenburgstrelitzh
 
Gsp 215 Believe Possibilities / snaptutorial.com
Gsp 215  Believe Possibilities / snaptutorial.comGsp 215  Believe Possibilities / snaptutorial.com
Gsp 215 Believe Possibilities / snaptutorial.comStokesCope20
 
Sheet1Design CharacteristicsImportance ScoreImportance weightCusto.docx
Sheet1Design CharacteristicsImportance ScoreImportance weightCusto.docxSheet1Design CharacteristicsImportance ScoreImportance weightCusto.docx
Sheet1Design CharacteristicsImportance ScoreImportance weightCusto.docxmaoanderton
 
Gsp 215 Effective Communication / snaptutorial.com
Gsp 215  Effective Communication / snaptutorial.comGsp 215  Effective Communication / snaptutorial.com
Gsp 215 Effective Communication / snaptutorial.comHarrisGeorg21
 
1.) You are scheduled to receive $15,500 in three years. When you .docx
1.) You are scheduled to receive $15,500 in three years. When you .docx1.) You are scheduled to receive $15,500 in three years. When you .docx
1.) You are scheduled to receive $15,500 in three years. When you .docxjackiewalcutt
 
Fractional Factorial Designs
Fractional Factorial DesignsFractional Factorial Designs
Fractional Factorial DesignsThomas Abraham
 
Cmis 102 Effective Communication / snaptutorial.com
Cmis 102  Effective Communication / snaptutorial.comCmis 102  Effective Communication / snaptutorial.com
Cmis 102 Effective Communication / snaptutorial.comHarrisGeorg12
 

Similaire à 6142017 P12.081 GO Multiparthttpsedugen.wileyplus.com.docx (20)

M166Calculus” ProjectDue Wednesday, December 9, 2015PROJ.docx
M166Calculus” ProjectDue Wednesday, December 9, 2015PROJ.docxM166Calculus” ProjectDue Wednesday, December 9, 2015PROJ.docx
M166Calculus” ProjectDue Wednesday, December 9, 2015PROJ.docx
 
data analysis helps excel worksheet.pdf
data analysis helps excel worksheet.pdfdata analysis helps excel worksheet.pdf
data analysis helps excel worksheet.pdf
 
Hw8Excel - Exercise 8 Mail Merge-2.docINFS 3250In Class Pro.docx
Hw8Excel - Exercise 8 Mail Merge-2.docINFS 3250In Class Pro.docxHw8Excel - Exercise 8 Mail Merge-2.docINFS 3250In Class Pro.docx
Hw8Excel - Exercise 8 Mail Merge-2.docINFS 3250In Class Pro.docx
 
Homework Value of InformationPlease respond to the following.docx
Homework Value of InformationPlease respond to the following.docxHomework Value of InformationPlease respond to the following.docx
Homework Value of InformationPlease respond to the following.docx
 
Monte Carlo Simulation for project estimates v1.0
Monte Carlo Simulation for project estimates v1.0Monte Carlo Simulation for project estimates v1.0
Monte Carlo Simulation for project estimates v1.0
 
CCE 102 – Homework 4Due Friday March 2 at 5 pm in Mailboxes on f.docx
CCE 102 – Homework 4Due Friday March 2 at 5 pm in Mailboxes on f.docxCCE 102 – Homework 4Due Friday March 2 at 5 pm in Mailboxes on f.docx
CCE 102 – Homework 4Due Friday March 2 at 5 pm in Mailboxes on f.docx
 
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docxWeek 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
 
Cover PageComplete and copy the following to Word for your cover p.docx
Cover PageComplete and copy the following to Word for your cover p.docxCover PageComplete and copy the following to Word for your cover p.docx
Cover PageComplete and copy the following to Word for your cover p.docx
 
Statement of Operations and Financial StatementsSubmit written r.docx
Statement of Operations and Financial StatementsSubmit written r.docxStatement of Operations and Financial StatementsSubmit written r.docx
Statement of Operations and Financial StatementsSubmit written r.docx
 
Assignment3
Assignment3Assignment3
Assignment3
 
© 2022 UniCourse Ltd. All Rights Reserved Issue 3 - 20222023
© 2022 UniCourse Ltd. All Rights Reserved  Issue 3 - 20222023© 2022 UniCourse Ltd. All Rights Reserved  Issue 3 - 20222023
© 2022 UniCourse Ltd. All Rights Reserved Issue 3 - 20222023
 
GSP 215 Enhance teaching/tutorialrank.com
 GSP 215 Enhance teaching/tutorialrank.com GSP 215 Enhance teaching/tutorialrank.com
GSP 215 Enhance teaching/tutorialrank.com
 
GSP 215 Inspiring Innovation/tutorialrank.com
GSP 215 Inspiring Innovation/tutorialrank.comGSP 215 Inspiring Innovation/tutorialrank.com
GSP 215 Inspiring Innovation/tutorialrank.com
 
Fall 2018 Statics Mid-Term Exam 3 Take-Home Name Please .docx
Fall 2018  Statics Mid-Term Exam 3 Take-Home Name Please .docxFall 2018  Statics Mid-Term Exam 3 Take-Home Name Please .docx
Fall 2018 Statics Mid-Term Exam 3 Take-Home Name Please .docx
 
Gsp 215 Believe Possibilities / snaptutorial.com
Gsp 215  Believe Possibilities / snaptutorial.comGsp 215  Believe Possibilities / snaptutorial.com
Gsp 215 Believe Possibilities / snaptutorial.com
 
Sheet1Design CharacteristicsImportance ScoreImportance weightCusto.docx
Sheet1Design CharacteristicsImportance ScoreImportance weightCusto.docxSheet1Design CharacteristicsImportance ScoreImportance weightCusto.docx
Sheet1Design CharacteristicsImportance ScoreImportance weightCusto.docx
 
Gsp 215 Effective Communication / snaptutorial.com
Gsp 215  Effective Communication / snaptutorial.comGsp 215  Effective Communication / snaptutorial.com
Gsp 215 Effective Communication / snaptutorial.com
 
1.) You are scheduled to receive $15,500 in three years. When you .docx
1.) You are scheduled to receive $15,500 in three years. When you .docx1.) You are scheduled to receive $15,500 in three years. When you .docx
1.) You are scheduled to receive $15,500 in three years. When you .docx
 
Fractional Factorial Designs
Fractional Factorial DesignsFractional Factorial Designs
Fractional Factorial Designs
 
Cmis 102 Effective Communication / snaptutorial.com
Cmis 102  Effective Communication / snaptutorial.comCmis 102  Effective Communication / snaptutorial.com
Cmis 102 Effective Communication / snaptutorial.com
 

Plus de alinainglis

· Prompt for the paper on Twelve Years A SlaveSolomon Northup .docx
· Prompt for the paper on Twelve Years A SlaveSolomon Northup .docx· Prompt for the paper on Twelve Years A SlaveSolomon Northup .docx
· Prompt for the paper on Twelve Years A SlaveSolomon Northup .docxalinainglis
 
· Present a discussion of what team is. What type(s) of team do .docx
· Present a discussion of what team is. What type(s) of team do .docx· Present a discussion of what team is. What type(s) of team do .docx
· Present a discussion of what team is. What type(s) of team do .docxalinainglis
 
· Presentation of your project. Prepare a PowerPoint with 8 slid.docx
· Presentation of your project. Prepare a PowerPoint with 8 slid.docx· Presentation of your project. Prepare a PowerPoint with 8 slid.docx
· Presentation of your project. Prepare a PowerPoint with 8 slid.docxalinainglis
 
· Prepare a research proposal, mentioning a specific researchabl.docx
· Prepare a research proposal, mentioning a specific researchabl.docx· Prepare a research proposal, mentioning a specific researchabl.docx
· Prepare a research proposal, mentioning a specific researchabl.docxalinainglis
 
· Previous professional experiences that have had a profound.docx
· Previous professional experiences that have had a profound.docx· Previous professional experiences that have had a profound.docx
· Previous professional experiences that have had a profound.docxalinainglis
 
· Prepare two brief paragraphs (one for each subject) outlining .docx
· Prepare two brief paragraphs (one for each subject) outlining .docx· Prepare two brief paragraphs (one for each subject) outlining .docx
· Prepare two brief paragraphs (one for each subject) outlining .docxalinainglis
 
· Prepare a financial analysis on Amazon using public inform.docx
· Prepare a financial analysis on Amazon using public inform.docx· Prepare a financial analysis on Amazon using public inform.docx
· Prepare a financial analysis on Amazon using public inform.docxalinainglis
 
· Please select ONE of the following questions and write a 200-wor.docx
· Please select ONE of the following questions and write a 200-wor.docx· Please select ONE of the following questions and write a 200-wor.docx
· Please select ONE of the following questions and write a 200-wor.docxalinainglis
 
· Please use Firefox for access to cronometer.com16 ye.docx
· Please use Firefox for access to cronometer.com16 ye.docx· Please use Firefox for access to cronometer.com16 ye.docx
· Please use Firefox for access to cronometer.com16 ye.docxalinainglis
 
· Post an explanation of your choice of a nursing specialty .docx
· Post an explanation of your choice of a nursing specialty .docx· Post an explanation of your choice of a nursing specialty .docx
· Post an explanation of your choice of a nursing specialty .docxalinainglis
 
· Please review the article attached below. · Please discuss.docx
· Please review the article attached below. · Please discuss.docx· Please review the article attached below. · Please discuss.docx
· Please review the article attached below. · Please discuss.docxalinainglis
 
· Please share theoretical explanations based on social, cultural an.docx
· Please share theoretical explanations based on social, cultural an.docx· Please share theoretical explanations based on social, cultural an.docx
· Please share theoretical explanations based on social, cultural an.docxalinainglis
 
· If we accept the fact that we may need to focus more on teaching.docx
· If we accept the fact that we may need to focus more on teaching.docx· If we accept the fact that we may need to focus more on teaching.docx
· If we accept the fact that we may need to focus more on teaching.docxalinainglis
 
· how the Question with numerical preceding the question i.e.docx
· how the Question with numerical preceding the question i.e.docx· how the Question with numerical preceding the question i.e.docx
· how the Question with numerical preceding the question i.e.docxalinainglis
 
· How many employees are working for youtotal of 5 employees .docx
· How many employees are working for youtotal of 5 employees  .docx· How many employees are working for youtotal of 5 employees  .docx
· How many employees are working for youtotal of 5 employees .docxalinainglis
 
· Identify two to three scholarly resources, in addition to this Mod.docx
· Identify two to three scholarly resources, in addition to this Mod.docx· Identify two to three scholarly resources, in addition to this Mod.docx
· Identify two to three scholarly resources, in addition to this Mod.docxalinainglis
 
· How should the risks be prioritized· Who should do the priori.docx
· How should the risks be prioritized· Who should do the priori.docx· How should the risks be prioritized· Who should do the priori.docx
· How should the risks be prioritized· Who should do the priori.docxalinainglis
 
· How does the distribution mechanism control the issues address.docx
· How does the distribution mechanism control the issues address.docx· How does the distribution mechanism control the issues address.docx
· How does the distribution mechanism control the issues address.docxalinainglis
 
· How and When I Will Communicate My Classroom Management Approa.docx
· How and When I Will Communicate My Classroom Management Approa.docx· How and When I Will Communicate My Classroom Management Approa.docx
· How and When I Will Communicate My Classroom Management Approa.docxalinainglis
 
· Helen Petrakis Identifying Data Helen Petrakis is a 5.docx
· Helen Petrakis Identifying Data Helen Petrakis is a 5.docx· Helen Petrakis Identifying Data Helen Petrakis is a 5.docx
· Helen Petrakis Identifying Data Helen Petrakis is a 5.docxalinainglis
 

Plus de alinainglis (20)

· Prompt for the paper on Twelve Years A SlaveSolomon Northup .docx
· Prompt for the paper on Twelve Years A SlaveSolomon Northup .docx· Prompt for the paper on Twelve Years A SlaveSolomon Northup .docx
· Prompt for the paper on Twelve Years A SlaveSolomon Northup .docx
 
· Present a discussion of what team is. What type(s) of team do .docx
· Present a discussion of what team is. What type(s) of team do .docx· Present a discussion of what team is. What type(s) of team do .docx
· Present a discussion of what team is. What type(s) of team do .docx
 
· Presentation of your project. Prepare a PowerPoint with 8 slid.docx
· Presentation of your project. Prepare a PowerPoint with 8 slid.docx· Presentation of your project. Prepare a PowerPoint with 8 slid.docx
· Presentation of your project. Prepare a PowerPoint with 8 slid.docx
 
· Prepare a research proposal, mentioning a specific researchabl.docx
· Prepare a research proposal, mentioning a specific researchabl.docx· Prepare a research proposal, mentioning a specific researchabl.docx
· Prepare a research proposal, mentioning a specific researchabl.docx
 
· Previous professional experiences that have had a profound.docx
· Previous professional experiences that have had a profound.docx· Previous professional experiences that have had a profound.docx
· Previous professional experiences that have had a profound.docx
 
· Prepare two brief paragraphs (one for each subject) outlining .docx
· Prepare two brief paragraphs (one for each subject) outlining .docx· Prepare two brief paragraphs (one for each subject) outlining .docx
· Prepare two brief paragraphs (one for each subject) outlining .docx
 
· Prepare a financial analysis on Amazon using public inform.docx
· Prepare a financial analysis on Amazon using public inform.docx· Prepare a financial analysis on Amazon using public inform.docx
· Prepare a financial analysis on Amazon using public inform.docx
 
· Please select ONE of the following questions and write a 200-wor.docx
· Please select ONE of the following questions and write a 200-wor.docx· Please select ONE of the following questions and write a 200-wor.docx
· Please select ONE of the following questions and write a 200-wor.docx
 
· Please use Firefox for access to cronometer.com16 ye.docx
· Please use Firefox for access to cronometer.com16 ye.docx· Please use Firefox for access to cronometer.com16 ye.docx
· Please use Firefox for access to cronometer.com16 ye.docx
 
· Post an explanation of your choice of a nursing specialty .docx
· Post an explanation of your choice of a nursing specialty .docx· Post an explanation of your choice of a nursing specialty .docx
· Post an explanation of your choice of a nursing specialty .docx
 
· Please review the article attached below. · Please discuss.docx
· Please review the article attached below. · Please discuss.docx· Please review the article attached below. · Please discuss.docx
· Please review the article attached below. · Please discuss.docx
 
· Please share theoretical explanations based on social, cultural an.docx
· Please share theoretical explanations based on social, cultural an.docx· Please share theoretical explanations based on social, cultural an.docx
· Please share theoretical explanations based on social, cultural an.docx
 
· If we accept the fact that we may need to focus more on teaching.docx
· If we accept the fact that we may need to focus more on teaching.docx· If we accept the fact that we may need to focus more on teaching.docx
· If we accept the fact that we may need to focus more on teaching.docx
 
· how the Question with numerical preceding the question i.e.docx
· how the Question with numerical preceding the question i.e.docx· how the Question with numerical preceding the question i.e.docx
· how the Question with numerical preceding the question i.e.docx
 
· How many employees are working for youtotal of 5 employees .docx
· How many employees are working for youtotal of 5 employees  .docx· How many employees are working for youtotal of 5 employees  .docx
· How many employees are working for youtotal of 5 employees .docx
 
· Identify two to three scholarly resources, in addition to this Mod.docx
· Identify two to three scholarly resources, in addition to this Mod.docx· Identify two to three scholarly resources, in addition to this Mod.docx
· Identify two to three scholarly resources, in addition to this Mod.docx
 
· How should the risks be prioritized· Who should do the priori.docx
· How should the risks be prioritized· Who should do the priori.docx· How should the risks be prioritized· Who should do the priori.docx
· How should the risks be prioritized· Who should do the priori.docx
 
· How does the distribution mechanism control the issues address.docx
· How does the distribution mechanism control the issues address.docx· How does the distribution mechanism control the issues address.docx
· How does the distribution mechanism control the issues address.docx
 
· How and When I Will Communicate My Classroom Management Approa.docx
· How and When I Will Communicate My Classroom Management Approa.docx· How and When I Will Communicate My Classroom Management Approa.docx
· How and When I Will Communicate My Classroom Management Approa.docx
 
· Helen Petrakis Identifying Data Helen Petrakis is a 5.docx
· Helen Petrakis Identifying Data Helen Petrakis is a 5.docx· Helen Petrakis Identifying Data Helen Petrakis is a 5.docx
· Helen Petrakis Identifying Data Helen Petrakis is a 5.docx
 

Dernier

M-2- General Reactions of amino acids.pptx
M-2- General Reactions of amino acids.pptxM-2- General Reactions of amino acids.pptx
M-2- General Reactions of amino acids.pptxDr. Santhosh Kumar. N
 
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptx
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptxPractical Research 1: Lesson 8 Writing the Thesis Statement.pptx
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptxKatherine Villaluna
 
Prescribed medication order and communication skills.pptx
Prescribed medication order and communication skills.pptxPrescribed medication order and communication skills.pptx
Prescribed medication order and communication skills.pptxraviapr7
 
Maximizing Impact_ Nonprofit Website Planning, Budgeting, and Design.pdf
Maximizing Impact_ Nonprofit Website Planning, Budgeting, and Design.pdfMaximizing Impact_ Nonprofit Website Planning, Budgeting, and Design.pdf
Maximizing Impact_ Nonprofit Website Planning, Budgeting, and Design.pdfTechSoup
 
AUDIENCE THEORY -- FANDOM -- JENKINS.pptx
AUDIENCE THEORY -- FANDOM -- JENKINS.pptxAUDIENCE THEORY -- FANDOM -- JENKINS.pptx
AUDIENCE THEORY -- FANDOM -- JENKINS.pptxiammrhaywood
 
How to Add a many2many Relational Field in Odoo 17
How to Add a many2many Relational Field in Odoo 17How to Add a many2many Relational Field in Odoo 17
How to Add a many2many Relational Field in Odoo 17Celine George
 
5 charts on South Africa as a source country for international student recrui...
5 charts on South Africa as a source country for international student recrui...5 charts on South Africa as a source country for international student recrui...
5 charts on South Africa as a source country for international student recrui...CaraSkikne1
 
How to Solve Singleton Error in the Odoo 17
How to Solve Singleton Error in the  Odoo 17How to Solve Singleton Error in the  Odoo 17
How to Solve Singleton Error in the Odoo 17Celine George
 
How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17Celine George
 
What is the Future of QuickBooks DeskTop?
What is the Future of QuickBooks DeskTop?What is the Future of QuickBooks DeskTop?
What is the Future of QuickBooks DeskTop?TechSoup
 
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRADUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRATanmoy Mishra
 
Patterns of Written Texts Across Disciplines.pptx
Patterns of Written Texts Across Disciplines.pptxPatterns of Written Texts Across Disciplines.pptx
Patterns of Written Texts Across Disciplines.pptxMYDA ANGELICA SUAN
 
Human-AI Co-Creation of Worked Examples for Programming Classes
Human-AI Co-Creation of Worked Examples for Programming ClassesHuman-AI Co-Creation of Worked Examples for Programming Classes
Human-AI Co-Creation of Worked Examples for Programming ClassesMohammad Hassany
 
Ultra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptxUltra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptxDr. Asif Anas
 
CAULIFLOWER BREEDING 1 Parmar pptx
CAULIFLOWER BREEDING 1 Parmar pptxCAULIFLOWER BREEDING 1 Parmar pptx
CAULIFLOWER BREEDING 1 Parmar pptxSaurabhParmar42
 
How to Add Existing Field in One2Many Tree View in Odoo 17
How to Add Existing Field in One2Many Tree View in Odoo 17How to Add Existing Field in One2Many Tree View in Odoo 17
How to Add Existing Field in One2Many Tree View in Odoo 17Celine George
 
General views of Histopathology and step
General views of Histopathology and stepGeneral views of Histopathology and step
General views of Histopathology and stepobaje godwin sunday
 
Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.EnglishCEIPdeSigeiro
 
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxheathfieldcps1
 
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptxSandy Millin
 

Dernier (20)

M-2- General Reactions of amino acids.pptx
M-2- General Reactions of amino acids.pptxM-2- General Reactions of amino acids.pptx
M-2- General Reactions of amino acids.pptx
 
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptx
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptxPractical Research 1: Lesson 8 Writing the Thesis Statement.pptx
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptx
 
Prescribed medication order and communication skills.pptx
Prescribed medication order and communication skills.pptxPrescribed medication order and communication skills.pptx
Prescribed medication order and communication skills.pptx
 
Maximizing Impact_ Nonprofit Website Planning, Budgeting, and Design.pdf
Maximizing Impact_ Nonprofit Website Planning, Budgeting, and Design.pdfMaximizing Impact_ Nonprofit Website Planning, Budgeting, and Design.pdf
Maximizing Impact_ Nonprofit Website Planning, Budgeting, and Design.pdf
 
AUDIENCE THEORY -- FANDOM -- JENKINS.pptx
AUDIENCE THEORY -- FANDOM -- JENKINS.pptxAUDIENCE THEORY -- FANDOM -- JENKINS.pptx
AUDIENCE THEORY -- FANDOM -- JENKINS.pptx
 
How to Add a many2many Relational Field in Odoo 17
How to Add a many2many Relational Field in Odoo 17How to Add a many2many Relational Field in Odoo 17
How to Add a many2many Relational Field in Odoo 17
 
5 charts on South Africa as a source country for international student recrui...
5 charts on South Africa as a source country for international student recrui...5 charts on South Africa as a source country for international student recrui...
5 charts on South Africa as a source country for international student recrui...
 
How to Solve Singleton Error in the Odoo 17
How to Solve Singleton Error in the  Odoo 17How to Solve Singleton Error in the  Odoo 17
How to Solve Singleton Error in the Odoo 17
 
How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17
 
What is the Future of QuickBooks DeskTop?
What is the Future of QuickBooks DeskTop?What is the Future of QuickBooks DeskTop?
What is the Future of QuickBooks DeskTop?
 
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRADUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
 
Patterns of Written Texts Across Disciplines.pptx
Patterns of Written Texts Across Disciplines.pptxPatterns of Written Texts Across Disciplines.pptx
Patterns of Written Texts Across Disciplines.pptx
 
Human-AI Co-Creation of Worked Examples for Programming Classes
Human-AI Co-Creation of Worked Examples for Programming ClassesHuman-AI Co-Creation of Worked Examples for Programming Classes
Human-AI Co-Creation of Worked Examples for Programming Classes
 
Ultra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptxUltra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptx
 
CAULIFLOWER BREEDING 1 Parmar pptx
CAULIFLOWER BREEDING 1 Parmar pptxCAULIFLOWER BREEDING 1 Parmar pptx
CAULIFLOWER BREEDING 1 Parmar pptx
 
How to Add Existing Field in One2Many Tree View in Odoo 17
How to Add Existing Field in One2Many Tree View in Odoo 17How to Add Existing Field in One2Many Tree View in Odoo 17
How to Add Existing Field in One2Many Tree View in Odoo 17
 
General views of Histopathology and step
General views of Histopathology and stepGeneral views of Histopathology and step
General views of Histopathology and step
 
Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.
 
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptx
 
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
 

6142017 P12.081 GO Multiparthttpsedugen.wileyplus.com.docx

  • 1. 6/14/2017 P12.081 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 1/5 Attempts: Unlimited Print by: Amer Almarzooqi ENGR 213-001 Sp17 / HW CH 12 *P12.081 GO Multipart *Part 1 Correct Consider a point in a structural member that is subjected to plan e stress. Normal and shear stress magnitudes acting on horizontal and vertical planes at the point are Sx = 330 MPa, Sy = 105 MPa, and Sxy = 65 MPa. Assume . Construct Mohr’s circle for this state of stress on paper and use the results to answer the questions in the subsequent parts of this GO exercise. For this Mohr’s circle, point x, which represents the state of str ess on the x face of the stress
  • 2. element, should appear: *Part 2 Correct For the given state of stress at a point in a structural member, d etermine the center C and the radius R of Mohr’s circle. Answers: C = MPa, R = MPa. Below and to the right of the circle center. Above and to the left of the circle center. Above and to the right of the circle center. Below and to the left of the circle center. -217.5 129 6/14/2017 P12.081 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 2/5 Attempts: Unlimited Attempts: Unlimited Attempts: Unlimited Answer *1: the tolerance is +/-2%
  • 3. Answer *2: the tolerance is +/-2% *Part 3 Correct Determine the principal stresses ( ) for this state of stress. Answers: MPa, MPa. Answer *1: the tolerance is +/-2% Answer *2: the tolerance is +/-2% *Part 4 Incorrect Use the coordinates of point x and the center C of the circle to d etermine the acute central angle. The other central angle is 180° minus the acute angle. For this Mohr’s circle, determine the magnitude of the central a ngle between: (a) point x and the point representing the principal stress . (b) point x and the point representing the principal stress . Answers: (a) Angle = °, (b) Angle = °. Answer *1: the tolerance is +/-2% Answer *2: the tolerance is +/-2%
  • 4. Part 5 Correct Angles measured in Mohr’s circle are double angles . The orientation of the principal planes in the x–y coordinate system is defined by an angle . If the acute angle determined in Part 4 is used for , which sketch correctly defines the orientation of the principal planes? -88.5 -346.5 -4.09 *1 175.91 *2 6/14/2017 P12.081 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 3/5 6/14/2017 P12.081 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 4/5 Attempts: Unlimited
  • 5. Attempts: Unlimited Attempts: Unlimited *Part 6 (a) Determine the magnitude of the maximum in-plane shear str ess. (b) Determine the normal stress that acts on planes of maximum in-plane shear stress. Give the stress value including sign if any. Answers: (a) MPa. (b) MPa. Answer *1: the tolerance is +/-2% Answer *2: the tolerance is +/-2% *Part 7 To determine the normal and shear stresses on the indicated pla ne, we must first determine the orientation of the inclined plane relative to the x face of the stre ss element. Determine the magnitude of the counterclockwise angle between the x face and the inclined plane. Assume Sx = 330 MPa, Sy = 105 MPa, Sxy = 65 MPa, and . Answer: °.
  • 6. the tolerance is +/-2% *1 *2 *1 6/14/2017 P12.081 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 5/5 Attempts: Unlimited Attempts: Unlimited Attempts: Unlimited *Part 8 For Mohr’s circle, all angular measures are doubled; therefore, point n (which represents the state of stress on the n plane) on Mohr’s circle is rotated counterclockwise from point x. From the Mohr’s circle that you constructed on a piece of paper, determin e the central angle between point n and the principal stress . Answer: °.
  • 7. the tolerance is +/-2% *Part 9 Use the center of the circle C, the circle radius R, and the angle determined in Part 8 to compute: (a) the normal stress . Give the stress value including sign if any. (b) the shear stress . Give the stress value including sign if any. Answers: (a) MPa, (b) MPa. Answer *1: the tolerance is +/-2% Answer *2: the tolerance is +/-2% *Part 10 Calculate the absolute maximum shear stress magnitude. Answer: MPa. the tolerance is +/-2% Copyright © 2000-2017 by John Wiley & Sons, Inc. or related c ompanies. All rights reserved. *1 *1
  • 8. *2 *1 1 BIT 3444 Homework 3: A DataReader Application Homework 3 Submission: This is an individual homework assignment. Compress your complete VB project folder into a .zip file. Upload the .zip file to our homework submission site. In this assignment, you will implement an electronic stock trading system. Your system will accept trading orders and based on those orders, it will keep track of pending orders, and execute trades when possible. 1. Database design (20 points)
  • 9. Use Microsoft Access to design a database for the stock trading system. You should determine the tables to be created, the attributes in each table, and the primary key in each table. DO NOT define foreign keys in this assignment even they do exist. It will be easier for you to debug your VB program when foreign keys are absent. The system maintains common stocks records. Each stock is described by a ticker symbol (e.g., BAC), a company name, exchange venue (e.g., NYSE), listing date, sector, and industry. The system also keeps track of stocks’ daily closing records. Each closing record consists of a ticker symbol, a date, opening price, highest price of the day, lowest price of the day, the closing price, trading volume on that day, and 1 day price change %. Users can use the system to place market order requests for stock trading. A market order is a request to purchase or sell a stock at the current market
  • 10. price. Each order request should include a ticker symbol, date and time of the request, type of order (buy or sell), quantity of stock to be traded, and order status (pending, completed, or cancelled). 2. Database population (10 points) Use Microsoft Access to populate at least 10 records into each of the database tables created above. You must pick at least 10 stocks from this web site: http://www.1stock1.com/1stock1_112.htm , where you can find last year’s return rate % for each stock. For other stock information, please use the Yahoo! Finance (http://finance.yahoo.com/stock-center/) and search by the stock ticker symbol. The sector and industry information can be found from the company profile page on Yahoo! Finance. Please make sure that you have at least 2 sectors and 2 industries per sector, and that each industry has at least 2 stocks. After you populate the stocks table, you should populate daily
  • 11. records and trading requests based on either true market data or your imagination. Please make sure that you have a mixture of different order types and statuses for different stocks. A minimum of 10 records is required for each table. 3. SimpleBroker v1.0: A DataReader Application (70 points). http://www.1stock1.com/1stock1_112.htm http://finance.yahoo.com/stock-center/ 2 MB v1.0 is a DataReader application for placing stocking trading request. You must use a DataReader object to retrieve records from the database and a Command object to update the database. The following describes the components needed for the development. (1) User interface: You should design your user interface to support the following functions. Label objects should be used appropriately to make your interface user-friendly. (10 points) (2) Populate the stock ticker ComboBox control: The user
  • 12. should start with a ComboBox control (StocksComboBox) that displays the complete list of stock tickers retrieved from the database. (15 points) (3) Populate the stock closing price ListBox control: After the user selects a stock ticker from StocksComboBox, a ListBox control (ClosingPricesListBox) should display a list of past closing prices of the selected stock. Each past closing price should indicate both a date and a closing price (e.g., “03/20/2013-$90.23”). The list should be ordered by descending dates. (15 points) (4) Populate a ListBox control: After the user selects a stock ticker from StocksComboBox, another ListBox control (TradingRequestsListBox) will display a list of currently pending stock trading requests for the selected stock. Each request should indicate the order type and stock quantity (e.g., “BUY-2000”). The list is ordered by the order type first and then by quantity. (15 points) (5) Placing a new order request (15 points):
  • 13. ComboxBox control (TradeTypeComboBox), and enters a stock quantity to be traded in a TextBox control (QuantityTextBox). request record to the database. 4. Bonus questions (20 points): (6) Sector selection: Another ComboBox control (SectorsComboBox) should be used to display all sectors in the database. The user starts with selecting a specific sector from SectorsComboBox. StocksComboBox will then only display those stock stickers in the selected sector. (10 points) (7) Error handling: Use data validation or exception handling to prevent the following runtime errors from interrupting the program execution: a. Non-numeric values in QuantityTextBox (5 points) b. OleDbException when populating the ListBox and ComboBox controls. You can get such an exception if your database table is open
  • 14. from Access in the Design View when you try to execute your VB program. (5 points) 6/14/2017 P10.058 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 1/2 Attempts: Unlimited Attempts: Unlimited Print by: Amer Almarzooqi ENGR 213-001 Sp17 / HW CH 10 *P10.058 GO Multipart *Part 1 The cantilever beam shown consists of a rectangular structural s teel tube shape [E = 200 GPa; I = 350 × 106 mm4]. Assume P = 55 kN, w = 15 kN/m, LAB = 1.5 0 m, and LBC = 2.50 m. For the loading shown, determine: (a) the beam deflection at point A. (b) the beam deflection at point B. Determine the component of the beam deflection at point A due to only the uniformly distributed
  • 15. load of w = 15 kN/m. Answer: vA,w = mm. the tolerance is +/-2% *Part 2 Determine the component of the beam deflection at point B due to only the concentrated load of P = 55 kN. Answer: vB,P = mm. the tolerance is +/-2% *Part 3 Determine the component of the rotation angle of the beam at p oint B due to only the concentrated load of P = 55 kN. Answer: rad. the tolerance is +/-2% *1 *1 *1 6/14/2017 P10.058 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 2/2
  • 16. Attempts: Unlimited Attempts: Unlimited Attempts: Unlimited Attempts: Unlimited Attempts: Unlimited *Part 4 Determine the component of the beam deflection at point A due to only the concentrated load of P = 55 kN. Answer: vA,P = mm. the tolerance is +/-2% *Part 5 Determine the total beam deflection at point A due to the combi ned effects of the concentrated load P and the uniformly distributed load w. Answer: vA = mm. the tolerance is +/-2% *Part 6 Determine the component of the beam deflection at point B due to only the uniformly distributed load of w = 15 kN/m. Answer: vB,w = mm.
  • 17. the tolerance is +/-2% *Part 7 Determine the total beam deflection at point B due to the combi ned effects of the concentrated load P and the uniformly distributed load w. Answer: vB = mm. the tolerance is +/-2% Copyright © 2000-2017 by John Wiley & Sons, Inc. or related c ompanies. All rights reserved. *1 *1 *1 *1 6/14/2017 P10.050 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 1/4 Attempts: Unlimited Attempts: Unlimited Print by: Amer Almarzooqi
  • 18. ENGR 213-001 Sp17 / HW CH 10 *P10.050 GO Multipart *Part 1 Correct You will analyze four different beams. For each beam and loadi ng, determine the beam deflection at point H. Assume that EI = 1.5 × 10 7 kip-in. 2 is constant for each beam. Remember that a positive deflection is up and a positive rotation is counterclockwise. Here is Beam 1. Assume LAB=7 ft, LBH=9 ft, MB=45 kip-ft. For Beam 1, determine the deflection and rotation angle at point B. Answers: vB1 = in., rad. Answer *1: the tolerance is +/-2% Answer *2: the tolerance is +/-2% *Part 2 Correct
  • 19. For Beam 1, determine the deflection at point H. Answer: vH1 = in. the tolerance is +/-2% *Part 3 -0.127 -0.00302 -0.45 6/14/2017 P10.050 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 2/4 Attempts: Unlimited Attempts: Unlimited Incorrect In Appendix C, see the simply supported beam with a concentrat ed force P which does not act at beam midspan. Here, for the purpose of calculating the rotati on angle at point C due to P, the portion of the beam from C to H can be ignored, and the bea m can be treated as a simply supported beam of length AC. Be careful with units and the sign
  • 20. convention. Here is Beam 2 Assume LAB=13 ft, LBC=8 ft, LCH=5 ft, P=15 kips. For Beam 2, determine the rotation angle at point C. Answer: rad. the tolerance is +/-2% *Part 4 For Beam 2, determine the deflection at point H. Answer: vH2 = in. the tolerance is +/-2% *Part 5 Correct Here is Beam 3. Assume LAH=5 ft, LHB=10 ft, w=2.0 kips/ft. 0.084 *1 *1 6/14/2017 P10.050 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr
  • 21. int.uni 3/4 Attempts: Unlimited Attempts: Unlimited For Beam 3, determine the deflection at point H. Answer: vH3 = in. the tolerance is +/-2% *Part 6 Incorrect In Appendix C, see the cantilever beam with a uniformly distrib uted load. For this calculation, the portion of the beam from A to B can be ignored. The beam i s treated as a cantilever beam of length AB that is fixed at A. Be careful with units and the sig n convention. Here is Beam 4. Assume LHA=9 ft, LAB=23 ft, w=4.0 kips/ft. For Beam 4, determine the cantilever deflection of the beam at point H due to the uniformly distributed load 4.0 kips/ft between point A and point H. This is the deflection that would be calculated at point H assuming a fixed support at A.
  • 22. Answer: vH4a = in. the tolerance is +/-2% *Part 7 -0.816 0.472 *1 6/14/2017 P10.050 GO Multipart https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 4/4 Attempts: Unlimited Attempts: Unlimited Attempts: Unlimited Attempts: Unlimited For Beam 4, determine the magnitude (report a positive number) of the bending moment at point A due to the uniformly distributed load 4.0 kips/ft between point H and point A. Answer: MA = kip-ft. the tolerance is +/-2%
  • 23. *Part 8 For Beam 4, determine the rotation angle at point A due to the moment produced at A by the uniformly distributed load 4.0 kips/ft between point H and point A. Answer: rad. the tolerance is +/-2% *Part 9 For Beam 4, determine the component of the deflection at point H due to the rotation angle at A. Answer: vH4b = in. the tolerance is +/-2% *Part 10 For Beam 4, determine the total deflection at point H. Answer: vH4 = in. the tolerance is +/-2% Copyright © 2000-2017 by John Wiley & Sons, Inc. or related c ompanies. All rights reserved. *1 *1 *1 *1
  • 24. 6/14/2017 P9.001 https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 1/2 Print by: Amer Almarzooqi ENGR 213-001 Sp17 / HW CH 9 *P9.001 Incorrect For the following problem, a beam segment subjected to internal bending moments at sections A and B is shown along with a sketch of the cross-sectional dimen sions. Consider area (1) of the 20-in.-long beam segment, which is subjected to internal bendin g moments of MA = 25kip- ft and MB = 34kip-ft. Assume b=3.1 in., t=0.85 in. and d=16.25 in. (a) Sketch a side view of the beam segment and plot the distribu tion of bending stresses acting at sections A and B. Indicate the magnitude of key bending stresse s on the sketch. (b) Determine the resultant forces acting in the x direction on A rea (1) at sections A and B and show these resultant forces on the sketch.
  • 25. (c) Is the Area (1) in equilibrium with respect to forces acting i n the x direction? If not, determine the horizontal force required to satisfy equilibrium for the speci fied area and show the location and direction of this force on the sketch. Answer Section (a) On paper, sketch a side view of the beam segment and plot t he distribution of bending stresses acting at sections A and B. Indicate the magnitude of key bendi ng stresses on the sketch. Below, enter the normal stresses at the specified locations. For your ent ries below, follow the sign convention for normal stresses. Answers: At the top of the upper flange, section A: psi At the bottom of the upper flange, section A: psi At the top of the lower flange, section A: psi At the bottom of the lower flange, section A: 2346 *1 -1173 *2
  • 26. 1173 *3 6/14/2017 P9.001 https://edugen.wileyplus.com/edugen/shared/assignment/test/qpr int.uni 2/2 Question Attempts: Unlimited psi At the top of the upper flange, section B: psi At the bottom of the upper flange, section B: psi At the top of the lower flange, section B: psi At the bottom of the lower flange, section B: psi (b) Below, enter the magnitudes of the resultant forces acting in the x direction on Area (1) at sections A and B. Since you are entering force magnitudes belo w, enter positive values. FA = lb FB = lb
  • 27. (c) If you believe area (1) is in equilibrium with respect to force s acting in the x direction, enter zero for fh below. If not, determine the horizontal force require d to satisfy equilibrium for area (1). Enter the value as positive if a force directed from A to B is req uired for equilibrium, or negative if a force directed from B to A is required. fh = lb Answer *1: the tolerance is +/-2% Answer *2: the tolerance is +/-2% Answer *3: the tolerance is +/-2% Answer *4: the tolerance is +/-2% Answer *5: the tolerance is +/-2% Answer *6: the tolerance is +/-2% Answer *7: the tolerance is +/-2% Answer *8: the tolerance is +/-2% Answer *9: the tolerance is +/-2% Answer *10: the tolerance is +/-2% Answer *11: the tolerance is +/-2% Copyright © 2000-2017 by John Wiley & Sons, Inc. or related c ompanies. All rights reserved. -1676 *4 5457 *5 -1676 *6 -1676 *7 -1676 *8 -16911 *9