Answer:
a = 40
b = 29
Explanation:
Give a place holder for the numbers that we don't know.
Lets call the two numbers a and b.
From the given info, we can write an expression and solve it:
"one number is 11 more than another number"
a = 11 + b
from this, we know that a > b.
''three times the larger number exceeds four times the smaller number by 4"
3a = 4b + 4
Now we have 2 equations, we can use them to solve using whatever method you want.
a = 11 + b
3a = 4b + 4
I will be using matrices RREF to solve for this.
a - b = 11
3a - 4b = 4


a = 40
b = 29
Answer:
The hardenability increases with increasing austenite grain size, because the grain boundary area is decreasing. This means that the sites for the nucleation of ferrite and pearlite are being reduced in number, with the result that these transformations are slowed down, and the hardenability is therefore increased.
Answer:
Under no circumstances
Explanation:
I'm not 100% sure why, but I remember hearing that you're not suposed to go over the speed limit no matter what
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Engineers are the reason healthcare has improved so dramatically throughout the years. The advancements in medical technology are down to the work conducted by engineers as well as the creation of devices that help to save lives and improve the quality of life for others. New developments are being created by engineers constantly, for example, the Crossrail project in London is creating a new transport system throughout the South East to create shorter journey times and easier connections. The existing transport system wouldn’t be where it is today without engineers.