Answer:
The addition and count algorithm
Explanation:
 
        
             
        
        
        
Answer:
The answer to this question is given below in the explanation section. 
Explanation:
                       
The code is written in C++ 
/******************************************************************************
                              Online C++ Compiler.
               Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
#include <string>  
using namespace std;
void display()
    {
        string yourName;
        string watchedMovie;
        cout<<"What is your name?  ";
        cin>>yourName;
        cout<<"Which movie have you seen?  ";
        cin>>watchedMovie;
        cout<<"Today, I have learned that  " <<name<<" watched "<<watchedMovie<<" movie";
    }
int main()
{    
    
    display();
    return 0;
}
   
 
        
             
        
        
        
Answer:
print("Let's play Silly Sentences!")
print(" ")
name=input("Enter a name: ")
adj1=input("Enter an adjective: ")
adj2=input("Enter an adjective: ")
adv=input("Enter an adverb: ")
fd1=input("Enter a food: ")
fd2=input("Enter another food: ")
noun=input("Enter a noun: ")
place=input("Enter a place: ")
verb=input("Enter a verb: ")
print(" ")
print(name + " was planning a dream vacation to " + place + ".")
print(name + " was especially looking forward to trying the local \ncuisine, including " + adj1 + " " + fd1 + " and " + fd2 + ".")
print(" ")
print(name + " will have to practice the language " + adv + " to \nmake it easier to " + verb + " with people.")
print(" ")
print(name + " has a long list of sights to see, including the\n" + noun + " museum and the " + adj2 + " park.")
Explanation:
Got it right. Might be a longer version, but it worked for me.
 
        
             
        
        
        
True, presentations can be saved as PDF’s it will come out as separate pages though
        
             
        
        
        
Answer:
Serial SCSI
Explanation:
Hot swapping can be defined as a process which typically involves fitting or replacing CD-ROM drive, hard-disk drive, power supply or other peripheral devices while a computer system is powered on. Thus, it allows for the installation or removal of a peripheral device from a computer while power is still being supplied to the computer i.e without having to shutdown the computer.
Serial SCSI is a SCSI standard which allows for the technique known as “hot swapping” because it's a point to point connection that is designed to move data to and from computer storage serially.