So I’m thinking C because they both have a lot to do with design here is my evidence. Structural engineering is a component of civil engineering which focuses on the design and development of infrastructures such as bridges, skyscrapers, dams. Civil engineering is a professional engineering discipline that deals with the design, construction, and maintenance of the physical and naturally built environment. I may be wrong but hope this helped!
Answer:
Artefacts can influence our actions in several ways. They can be instruments, enabling and facilitating actions, where their presence affects the number and quality of the options for action available to us. They can also influence our actions in a morally more salient way, where their presence changes the likelihood that we will actually perform certain actions. Both kinds of influences are closely related, yet accounts of how they work have been developed largely independently, within different conceptual frameworks and for different purposes. In this paper I account for both kinds of influences within a single framework. Specifically, I develop a descriptive account of how the presence of artefacts affects what we actually do, which is based on a framework commonly used for normative investigations into how the presence of artefacts affects what we can do. This account describes the influence of artefacts on what we actually do in terms of the way facts about those artefacts alter our reasons for action. In developing this account, I will build on Dancy’s (2000a) account of practical reasoning. I will compare my account with two alternatives, those of Latour and Verbeek, and show how my account suggests a specification of their respective key concepts of prescription and invitation. Furthermore, I argue that my account helps us in analysing why the presence of artefacts sometimes fails to influence our actions, contrary to designer expectations or intentions.
When it comes to affecting human actions, it seems artefacts can play two roles. In their first role they can enable or facilitate human actions. Here, the presence of artefacts changes the number and quality of the options for action available to us.Footnote1 For example, their presence makes it possible for us to do things that we would not otherwise be able to do, and thereby adopt new goals, or helps us to do things we would otherwise be able to do, but in more time, with greater effort, etc
Explanation:
Technological artifacts are in general characterized narrowly as material objects made by (human) agents as means to achieve practical ends. ... Unintended by-products of making (e.g. sawdust) or of experiments (e.g. false positives in medical diagnostic tests) are not artifacts for Hilpinen.
Explanation:
a converging nozzle has an exit area of 0.001 m2. Air enters the nozzle with negligible velocity at a pressure of 1 MPa and a temperature of 360 K. For isentropic flow of an ideal gas with k = 1.4 and the gas constant R = Ru/MW = 287 J/kg-K, determine the mass flow rate in kg/s and the exit Mach number for back pressures
100% (3 ratings)
A_2 = 0.001 m^2 P_1 = 1 MPa, T_1 = 360 k P_2 = 500 kpa p^gamma - 1/gamma proportional T (1000/500)^1.4 - 1/1.4 = (360/T_2) 2^4/14 = 360/T_2 T_2
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number
In regards to high-wind installations, if an old composition asphalt shingle roof is going to be replaced, the roofing contractor should remove the existing shingles and underlayment.
<h3>What are High Wind
installations?</h3>
High Wind is known to be a newly created installation techniques that is often used in the installation of offshore wind turbines and this is often done at higher wind speeds.
Note that, In regards to high-wind installations, if an old composition asphalt shingle roof is going to be replaced, the roofing contractor should remove the existing shingles and underlayment.
Learn more about installations from
brainly.com/question/13093522
#SPJ1