Answer:
program that use artifical intelligents
Explanation:
Expert system, a computer program that uses artificial-intelligence methods to solve problems within a specialized domain that ordinarily requires human expertise.
Answer:
A complex data type can be created by the use of class or structures.
#include <iostream>
using namespace std;
class complex{//creating a class complex to store a complex value.
public://defining all the values public.
int real;
int img;
complex(int real,int img)//parameterized constructor.
{
this->real=real;
this->img=img;
}
};
int main() {
complex n1(1,2);//n1 is a complex number with real part 1 and imaginary part 2.
cout<<n1.real<<" i"<<n1.img<<endl;
return 0;
}
Output
1 i2
Explanation:
I have created a class complex to store complex number with two integer parts real and imaginary.You can also declare them float if you wan to store decimal values and after that i have created a parameterized constructor with real and imaginary values.So we can assign the values at the time of declaration of the object of class complex.
Answer: D)add up the storage requirements for the operating system and all of the software applications currently installed.
Explanation:Hard disk drive (HDD) is the secondary hardware device for the storage of the data permanently. It can be used for storing data along with the videos, documents, pictures etc.
Hard drive can store data in a large amount as compared to any other drive and having varying capacity of data storage according to the data.The minimum space of the hard drive to be embedded in a system is calculated on the basis of the storage of files of operating system,software programs and other data.
So, option (D) is the correct option.
I believe it’s B, so that you do not accidentally spray out of the hose
Answer:
Compression is hard since we usually find it difficult to determine the best compression rate .
When using the text compression widget we make a key that represent every work we have repeated in order to decrease the stored data.
When you have extends you compression beyond what it should be it is easy to notice since there will be no algorithm and that makes it hard hence we end up making assumptions on what ratio we will use for compression by using a thorough key.