Answer:
4.2 m119
Explanation:
it has the 4.2 m119 v8 engine with a top speed of 155 mph and 0 - 60 mph in 6.2 seconds
Answer:
hello your question lacks the required image attached to this answer is the image required
answer : NOR1(q_) wave is complementary to NOR2(q)
Explanation:
Note ; NOR 2 will be addressed as q in the course of this solution while NOR 1 will be addressed as q_
Initial state is unknown i.e q = 0 and q_= 1
from the diagram the waveform reset and set
= from 0ns to 20ns reset=1 and set=0.from the truth table considering this given condition q=0 and q_bar=1 while
from 30ns to 50ns reset=0 and set=1.from the truth table considering this condition q=1 and q_bar=1.so from 35ns also note there is a delay of 5 ns for the NOR gate hence the NOR 2 will be higher ( 1 )
From 50ns to 65ns both set and reset is 0.so NOR2(q)=0.
From 65 to 75 set=1 and reset=0,so our NOR 2(q)=1 checking from the truth table
also from 75 to 90 set=1 and reset=1 , NOR2(q) is undefined "?" and is mentioned up to 95ns.
since q_ is a complement of q, then NOR1(q_) wave is complementary to NOR2(q)
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Answer:
The governing ratio for thin walled cylinders is 10 if you use the radius. So if you divide the cylinder´s radius by its thickness and your result is more than 10, then you can use the thin walled cylinder stress formulas, in other words:
- if
then you have a thin walled cylinder
or using the diameter:
- if
then you have a thin walled cylinder