Answer: A) Installed
Explanation: Installed application work on the system on which they are installed .They are supposed to persist the required speed of processing to execute the task ,enough memory and other resources as well to fulfill the need of the application functioning.
Other option is incorrect because cloud based application run with help of internet service via web browser so they resources in this applications based on the internet connectivity and browser's speed .Thus, the correct option is option(A).
Answer:
The answer is "option B".
Explanation:
In the C++ programming language, it is legal to pass a parameter in the method that includes an individual array element. where an array is a collection of homogeneous (similar types of) elements. and other options are not correct that can be defined as:
- In option, a Passing argument in a function is not illegal in c++.
- In option c, It is recommended by the ANSI committee.
- In option d, It is good for practice in coding.
Answer:
the software that supports a computer's basic functions, such as scheduling tasks, executing applications, and controlling peripherals.
#include using namespace std;int main(){int year = 12,value = 10,total = 0;do{year++;value *= 2;total += value;}while(value*2 < 1000);cout << "Age: " << year << endl;cout << "Last gift: " << value << endl;cout << "Total: " << total << endl;cin.get();return 0;