Answer:
Explanation: search engine uses system algorithm to search out items or information as required by the user. Example is google, chrome.
Data base are archives where information could be retrieve. Its contain information such as publications, abstract,journals.
Search engine provides wide range of information depending on you request while database are mostly for academics related materials.
Data base- A good place to generate this information is library, archivals while journal, publiications are kept while search engine can be used anywhere you have an internet facilities.
In a data base, information is searched in an organized way. The collections are already well arranged in different cubicle search engine provides wide range of information not organized.
Data base may contain more complex information not easily understood, search engine provides more elaborate answers.
Similarity of the two is that they both provide information.
They are both reliable.
School library is an example of where journals and publication are kept and can be retrived.
Answer:
you can identify an ip address in the bar where u type links
Explanation:
<span>CMYK means cyan, magenta, yellow, and key (black). They are the four color model used in color printing or printing color images. It lets you subtract the colors on the image. CMYK partially or fully masks colors on a lighter view. </span>
The program is an illustration of loops.
Loops are used to perform repetitive and iterative operations.
The program in C++ where comments are used to explain each line is as follows:
#include <iostream>
using namespace std;
int main(){
//This declares and initializes all variables
string star = "*", blank = " ", temp;
//The following iteration is repeated 8 times
for (int i = 1; i <= 8; i++) {
//The following iteration is repeated 8 times
for (int j = 1; j <= 8; j++) {
//This prints stars
if (j % 2 != 0) {
cout << star;
}
//This prints blanks
else if (j % 2 == 0) {
cout << blank;
}
}
//This swaps the stars and the blanks
temp = star;
star = blank;
blank = temp;
//This prints a new line
cout << endl;
}
}
Read more about similar programs at:
brainly.com/question/16240864