Answer:
The representation of the digital data in the computer system in the binary form because it is easier and cheaper to use in the system. It is more reliable to build the machine and the devices for distinguish the binary states.
Computer basically uses the 0 and 1 binary digits for storing the data in the system. The computer processor circuits are basically made up of the various types of transistors that uses electronic signals for the activation process in the system.
The o and 1 are the binary digits that reflect the different states of the transistor that is OFF and ON state.
Answer:
Hard Drive
Explanation:
Computers use a hard drive, which stores all information.
Answer:
They make it easy to quickly see relationships between ideas.
Explanation:
A concept is an idea or a principle that could be used to understand an abstract notion. A conceptual note is one that makes the relationship between ideas easily discernible.
Without breaking much sweat or reading too deeply, the reader would find it easier to easily determine the relationship between ideas and how they relate to the subject matter. Conceptual notes can be taken on a laptop or paper.
Answer:
The Loebner Prize was an annual competition in artificial intelligence that awards prizes to the computer programs considered by the judges to be the most human-like. ... The format of the competition was that of a standard Turing test.Explanation:MORE POWRE
Answer:
Check the explanation
Explanation:
#include <stdio.h>
#include<ctype.h>
#include<string.h>
void MyToUpper(char *p)
{
int i;
for(i=0;i<strlen(p);i++)
{
p[i]=toupper(p[i]);
}
}
int main(void) {
char str[20];
printf("Enter a string:");
fgets(str,20,stdin);
printf("The string you entered was: %s\n",str);
MyToUpper(str);
printf("The string converted to uppercase is: %s\n",str);
fflush(stdin);
return 0;
}