Answer:
package used to show information, normally in the form of a slide show. It mostly includes three major functions: an editor that allows text to be inserted and formatted, a method for inserting and manipulating graphic images and a slide-show system to display the content.
Answer: i believe a digital citizen
i am not 100% sure about that answer but i reaserached a little and thats what i found :)
I hope this helps u out a little a thank and a brainlist would be greatly appreciatecd :)
I think it'd be terminal concentrator. A(n) terminal concentrator is a front - end processor that multiplexes the traffic from hundreds of remote terminals into one port on a large computer.
Answer:I am thinking C
Explanation:
If he can multi-task he could ask his colleague for their computer and then when his colleague is done with his computer he could send the document to his computer and then delete it from his colleagues computer.
Answer:
#include<stdio.h>
#include<string.h>
int main(){
char str[20];
int i=0;
printf("Enter a name: ");
gets(str);
printf("%c",*str);
while(str[i]!='\0'){
if(str[i]==' '){
i++;
printf("%c",*(str+i));
}
i++;
}
return 0;
}
Explanation: