Answer:
<u>query,</u> <u>data mining </u>
Explanation:
A query can be explained as another term for question.
If one needs additional information from some other person, he might have ask to him. Queries are used for the retrieval of the information.
In other words, one tries to find what have been prepared by others.
Data mining can be explained as the process that allows to sort through a large set of data for the identification of patterns.
In this process of data mining, one tries to find out the new patterns that may not be known at all.
The answer to this question is the term bus. The term bus in computers is a communication system that transfers data and information in the computer to another computer. The bus are parallel wires that can be either optical or fiber that are connected in multiple switched hubs.
Explanation:
#include <iostream.h>
#inlcude<conion.h>
void main()
{
int count, x;
clrscr();
cout<<"Enter the count:";
cin>> count;
cout<<"Ready!\n";
for(x=count;x>0;x--)
{
cout<<x<<"\n";
}
cout<<"Start";
getche();
}
This is a simple program where the output is expected to be in reverse order. So we run a for loop starting from the count and decrements the counter by 1 every time when the loop runs and print the value. So to print the output in "new line" we include "\n".
Answer:
A network switch is a multiport network bridge that uses MAC addresses to forward data at the data link layer (layer 2) of the OSI model.
I hope this helps you :)
number = 547
nums = {1:"one", 2:"two",3:"three",4:"four",5:"five",6:"six",7:"seven",8:"eight",9:"nine"}
print("The last digit of",number,"is",nums[number%10])
I wrote my code in python 3.8. I hope this helps.