Answer:
im 13 and im a girl wassup
Explanation:
Answer:
The correct answer is D: comma.
Explanation:
The comma is located on the bottom row of the keyboard to the right of the 'M' key.
Answer:
Well, I guess you could use a special representation of the function through a sum of terms, also known as Taylor Series.
It is, basically, what happens in your pocket calculator when you evaluate, for example,
sin
(
30
°
)
.
Your calculator does this:
sin
(
θ
)
=
θ
−
θ
3
3
!
+
θ
5
5
!
−
...
where
θ
must be in RADIANS.
In theory you should add infinite terms but, depending upon the accuracy required, you can normally stop at three terms.
In our case we have:
θ
=
π
6
=
3.14
6
=
0.523
and:
sin
(
π
6
)
=
sin
(
0.523
)
=
0.523
−
0.024
+
3.26
⋅
10
−
4
−
...
=
0.499
≈
0.5
Explanation:
Answer:
The program in C++ is as follows:
#include<bits/stdc++.h>
using namespace std;
class Complex {
public:
int rl, im;
Complex(){ }
Complex(int Real, int Imaginary){
rl = Real; im = Imaginary;
}
};
int main(){
int real, imag;
cout<<"Real: "; cin>>real;
cout<<"Imaginary: "; cin>>imag;
Complex ComplexNum(real, imag);
cout<<"Result : "<< ComplexNum.rl<<" + "<<ComplexNum.im<<"i"<<endl;
}
Explanation:
See attachment for explanation
Answer:
The main difference between the two file formats is that in DOC, your document is saved in a binary file that includes all the related formatting and other relevant data while a DOCX file is actually a zip file with all the XML files associated with the document.