Answer:
All of the above is the correct answer to the given question .
Explanation:
As the Ken olson is the Ken Olson, president of the Digital Equipment Organization . Following are the predictions of Ken olson of the the technology that are wrong.
- Lack of creativity regarding the current applications that the user has would consider for the technology.
- Lack of creativity regarding the user or the client has liking.
- Lack of creativity on what the government would be charging ford. Any of these
So we will choose the Option all these.
Answer:
This code will print: 4
Explanation:
Following is the step-by-step explanation for the given code:
- Given is the array of data type double named myList, it has entries, 1, 5, 5, 5,5, 1:
double[] myList = {1, 5, 5, 5, 5, 1};
- Now the first element of the array (1) with index 0 will be stored in the variable max (data type double).
double max = myList[0];
- A variable indexOfMax having datatype int will be initiated as 0.
int indexOfMax = 0;
- Now for loop will be used to find the maximum number of the array. The variable i will be put as index for each element to compare with first element. If the checked element is greater than or equal to the integer in max, it will be replaced. So at the end the variable max will have value 5 that will be at index i = 4.
for (int i = 1; i < myList.length; i++)
{ if (myList[i] >= max)
{ max = myList[i];
- Now the variable i that is the index for max value will be stored in the variable indexOfMax (indexOfMax = 4).
indexOfMax = i; }}
- At end the value stored in variable indexOfMax will be printed, so 4 will be printed as output.
System.out.println(indexOfMax);
i hope it will help you!
it is also called external storage
Answer:
Try the Cesar cypher
Explanation:
The Cesar cypher shifts the letters one side
Answer:
Nervous system
Explanation:
Multiple sclerosis -
It is the medical condition , which disables the central nervous system consisting spinal cord and brain .
In this scenario , the immune system attacks the protective sheath , which wraps the nerve fibers .
Due to which , the communication between the nerves is stopped , and the coordination amongst the various organs stops .
There is no proper cure for such medical condition .
Hence , from the given statement of the question ,
The correct term is Nervous system .