Answer:
Option A and Option D are the correct options.
Explanation:
While any information is provided by the manager to its customers which is based on the knowledge of the search conducted.
So, the following knowledge is about the article of the lowest rating and about the search query that has no output.
- Option B is not correct for the following scenario because the manager is informing about the searches conducted by customers, not for the data category.
- Option C is not correct for the following scenario because the articles are not created by them.
guess its d drivers , since u said wen it gets outdated
Answer: b
The computer virus is simply a ___
b. Set of computer instructions or code
<u> C++ Program to Print Pascal's Triangle</u>
#include<iostream>
//header file
using namespace std;
//driver function
int main()
{
int r;/*declaring r for Number of rows*/
cout << "Enter the number of rows : ";
cin >> r;
cout << endl;
for (int a = 0; a < r; a++)
{
int value = 1;
for (int b = 1; b < (r - a); b++)
/*Printing the indentation space*/
{
cout << " ";
}
for (int c = 0; c <= a; c++)
/*Finding value of binomial coefficient*/
{
cout << " " << value;
value = value * (a - c) / (c + 1);
}
cout << endl << endl;
}
cout << endl;
return 0;
}
<u>Output</u>
<u>Enter the number of rows : 5</u>
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
Answer:
Lossy image formats will remove data during compression as a trade off for lower storage occupation. Lossless data formats will not remove data during compression, resulting in higher quality but also higher storage occupation.
Graphic Artists will almost always use lossless due to it delivering the highest quality image possible.