Answer: HTML is considered as the Lingua franca of the net that is a simple mark up language used for the purpose of web publishing for creating text and images. This can be viewed by any of the member and can be used within any browser. There is no need of special software for creating HTML pages and moreover the learning of HTML is pretty easy.
Explanation: If you need more help go follow me at dr.darrien
- thank you
Answer:
"It is 80 cents"
Explanation:
In order to calculate how much this actually is, we would need to multiply this fraction by the value of a whole dollar which is 1. We can divide the fraction 4/5 and turn it into the decimal 0.80 which would make this much easier. Now we simply multiply...
0.80 * 1 = $0.80
Finally, we can see that 4/5 of a dollar would be 0.80 or 80 cents. Therefore Pradeep would answer "It is 80 cents"
Answer:
Multiprocessing simply means the processing of multiple processes at same time by more than one CPUs. i.e. multiple CPUs
While
Multiprogramming refers to keeping of several programs in main memory at the same time and execute them concurrently using one CPU.
Other differences include
1. Multiprocessing are expensive while multiprogramming are not
2. Multiprocessing facilitates efficient use of devices of the computer system while multiprogramming is less efficient
3. Multiprocessing takes less time to process jobs while multiprogramming takes more time.
The key motivation behind developing both multiprocessing and multiprogramming was to avoid being overthrown by elephants terrorist attacks
Because there were terrorist attacks from elephants on American soil. So America invented the internet and multiprogramming.
Multiprocessing was then stolen from the Elephants
Answer:
"The value of the variable will remain the same which is already have when the sub-processor is called".
Explanation:
The above question said that:-
void fun(int a)
{
a=a+1;
}
void main()
{
int a=5;
fun(a);
}
//what will be the value of a in the main function after the fun function is excuted.
- Then the answer is: the value of a will be 5 in the main function.
- It is because when the fun function is called, then a variable that is defined in the fun function is a local variable for fun function. That scope after the fun function is null.
- The a variable inside the fun function is a different variable and the main function a variable is also a different variable.
- So when the user prints the value of a variable inside the fun function, it will give the result as 6.
- But when he prints the value of a variable inside the main function, then it will give the value as 5.