Answer:
1) For preparation of plan :
It is to gather the team and creating the timeline. Gathering the inputs for the plan and confirming the mission and vision then launching the strategy.
2) A mission would describe about the company and the specification of the company
A vision is the long term or future state of the organization to achieve in a time frame.
Both would include the OAS statements and strategic shifts.
3) The OAS and strategic shift would help to create a balanced score card that would help for data gathering and analysis
This would include the financial, customers goal, Process goals, people's goals etc.
4) To create and develop the plan's framework:
To set the objective for high level organizational goals
To measure the and accomplish the objectives
To take initiatives to achieve the objectives
Explanation:
Answer:
d. 90%
Explanation:
As we know that internal combustion engine produce lot's of toxic gases to reduce these toxic gases in the environment a device is used and this device is know as current modeling converter.
Generally the efficiency of current model catalytic converter is more than 90%.But the minimum efficiency this converter is 90%.
So option d is correct.
d. 90%
Answer:
Q=67.95 W
T=119.83°C
Explanation:
Given that
For air
Cp = 1.005 kJ/kg·°C
T= 20°C
V=0.6 m³/s
P= 95 KPa
We know that for air
P V = m' R T
95 x 0.6 = m x 0.287 x 293
m=0.677 kg/s
For gas
Cp = 1.10 kJ/kg·°C
m'=0.95 kg/s
Ti=160°C ,To= 95°C
Heat loose by gas = Heat gain by air
[m Cp ΔT] for air =[m Cp ΔT] for gas
by putting the values
0.677 x 1.005 ( T - 20)= 0.95 x 1.1 x ( 160 -95 )
T=119.83°C
T is the exit temperature of the air.
Heat transfer
Q=[m Cp ΔT] for gas
Q=0.95 x 1.1 x ( 160 -95 )
Q=67.95 W
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)