Answer:
Zero(0)
Explanation:
<u>Global Variables
</u>
Variables which are declared outside any function. Any function can use these variables,they are automatically initialized to zero(0).They are generally declared before main() function.
Example- C program for showing global variable is 0.
#include <stdio.h>
int g; // declaring g as global variable
int main()
{
printf("%d",g); //printing global variable
return 0;
}
<u>Output</u>
0
Answer: Hot sites
Explanation:
Virtualization in the cloud computing is the technology that are useful for the hot sites. It basically making the virtual image of the network devices so that it can be easily use multiple machine at the similar time.
There are various types of benefits of the virtualization in the cloud computing are as follow:
- It protect the system from the system failure.
- It is the cost effective technology.
- By using this we can easily transfer the data from the physical storage to the virtual server.
What the hell is the point of this, just to waist people's time?
Answer:
False.
Explanation:
Ubuntu which is an linux distribution and it is based on debian. Ubuntu does not come with automatic firewall and we also have to manually enable the firewall after installing it otherwise it will be disabled.
You can control the firewall from a graphical interface.
Hence the answer to this question is False.
Answer:
Software development life cycle is about building a software (“only”) in a phased approach systematically.
System development life cycle is about implementing hardware and software in a phased manner systematically.
Explanation:
Here both the hardware and the software is considered as a system.
Hope this helps!