Answer:
incremental
Explanation:
An incremental backup backs up only the files on a computer that have changed since the last time a backup was performed.
The program receives inputs for the name, number of droids and wookiees a user wants and displays the information as a complete sentence. The program written in python 3 goes thus :
name = input('Enter name : ')
<em>#</em><em> </em><em>prompts</em><em> </em><em>user</em><em> </em><em>of</em><em> </em><em>name</em><em> </em>
num_droid = int(input('number of droids : '))
<em>#prompts</em><em> </em><em>for</em><em> </em><em>number</em><em> </em><em>of</em><em> </em><em>droids</em><em> </em>
num_wooks = int(input('number of wookiees : '))
<em>#prompts</em><em> </em><em>for</em><em> </em><em>number</em><em> </em><em>of</em><em> </em><em>wookiees</em><em> </em>
print(name, ' wants to meet', num_droid, 'droids and',num_wooks , 'Wookiees' )
<em>#displays</em><em> </em><em>the</em><em> </em><em>information</em><em> </em><em>as</em><em> </em><em>a</em><em> </em><em>complete</em><em> </em><em>sentence</em><em> </em>
<em>A</em><em> </em><em>sample</em><em> </em><em>run</em><em> </em><em>of</em><em> </em><em>the</em><em> </em><em>program</em><em> </em><em>is</em><em> </em><em>attached</em><em> </em>
<em>Learn</em><em> </em><em>more</em><em> </em><em>:</em><em> </em><em>brainly.com/question/25506437</em>
Answer:
In a centralized organization structure, the centralized authority may have a better perspective on the big picture of the organization and how the subunits of the organization fit together and this may make centralized authority optimal.
Please mark brainliest, hope this helped :)
A[n] program is a set of computer instructions.
Answer:
#include <iostream>
#include <random>
//here we are passing our array and a int by ref
//to our function called calculateAverage
//void is infront because we are not returning anything back
void calculateAverage(int (&ar)[100], int &average){
int sum = 0;
for(int i = 0;i < 100; i++){
//adding sum
sum += ar[i];
}
//std:: cout << "\naverage \t\t" << average;
//calculating average here
average += sum/100;
}
int main() {
int value = 0;
int average = 0;//need this to calculate the average
int ar[100];
//assign random numbers from 500 to 1000
//to our array thats called ar
for(int i = 0; i < 100; i++){
value = rand() % 500 + 500;
ar[i] = value;
}
calculateAverage(ar,average);
// std:: cout << "\naverage should be \t" << average;
}
Explanation:
not sure how else this would work without having to pass another variable into the function but I hope this helps!
I commented out the couts because you cant use them according to ur prof but I encourage you to cout to make sure it does indeed calculate the average!