Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
int x=5,y=2,z=9;
int min;
// find the smallest value and assign to min
// if x is smallest
if(x < y && x < z)
// assign x to min
min=x;
// if y is smallest
else if(y < z)
// assign y to min
min=y;
// if z is smallest
else
// assign z to min
min=z;
// print the smallest
cout<<"smallest value is:"<<min<<endl;
return 0;
}
Explanation:
Declare and initialize variables x=5,y=2 and z=9.Then check if x is less than y and x is less than z, assign value of x to variable "min" .Else if value of y is less than value of z then smallest value is y, assign value of y to "min".Else z will be the smallest value, assign its value to "min".
Output:
smallest value is:2
Answer:
B. the number of transistors per square inch on integrated circuits will double every two years.
Explanation:
The law has been staying true to its postulation as it has been used in so many fields and for every measure of the capabilities of digital electronic devices, including computer processing speed and memory capacity.
It has led to a paradigm shift , technology adoption life cycle and diffusion innovation theory.
The factor which determines the structure as well as features of an information system used throughout an organization is referred to as Competitive Strategy.
The competitive strategy of a company is concerned with how to compete in the business sectors wherein the company participates as well as operations.
In other terms, competitive strategy defines how well a company expects to develop as well as sustain a competitive edge over competitors.
Thus the above answer i.e., "option A" is correct.
Find out more information about competitive strategy here:
Answer:
The correct option is A: Competitive Strategy
Explanation:
The competitive strategy of an organization is the factor that determines the function, feature and structure of the information system that will be used. The value of its brand has nothing to do with the form of info system to be used, neither is the size of the company a determinant factor of the information system to be used. You cannot determine your own information system structure and function by that of a competitor. Hence the correct option is A. In every organization, the information system has great impact on competitive advantage in differentiation or cost.
b. False
Answer:
True indeed
Explanation: