Answer:
D
Explanation:
took test failed question D is the right answer
Answer:
LAOD = 6669.86 N
Explanation:
Given data:
width
thickness 
crack length 2c = 0.5 mm at centre of specimen

stress intensity factor = k will be


we know that

[c =0.5/2 = 2.5*10^{-4}]
K = 0.1724 Mpa m^{1/2} for 1000 load
if
then load will be




LAOD = 6669.86 N
Radio waves are radiated by charged particles when they are accelerated. They are produced artificially by time-varying electric currents, consisting of electrons flowing back and forth in a specially-shaped metal conductor called an antenna. ... Radio waves are received by another antenna attached to a radio receiver.
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 <<