Answer:
All of them apply
Explanation:
Green computing is the process of using environmental friendly computers and its associated components, accessories and other supporting devices.
Virtualization helps us to reduce the number of hardware that we are using.
Grid computers helps us to reduce the use of number of machines and thus supporting the environment in a right way.
Recycling process. Any material that we use needs to be recycled effectively and also in an environmental friendly way.
Autonomic computing uses eco-friendly system which in turn hugely support green computing.
Answer:
boot the computer from the windows installation disk and run startup repair
Explanation:
Based on the scenario being described within the question it can be said that the best option in this situation would be to boot the computer from the windows installation disk and run startup repair. This will analyze all windows files and clean up any files or malicious software that does not belong in order for the system to be able to correctly boot into the operating system. Then from inside the operating system you can run a full diagnostic of the system.
I don’t know what it’s called but it’s where they can speak by moving there eyes
I'm gonna say D. No sentence error
Here you go,
class Program
{
static void Main(string[] args)
{
int n,i,j;
Console.Write("Enter size: ");
n = Convert.ToInt32(Console.ReadLine());
for (i = 1; i <= n; i++)
{
for (j = 1; j <= i; j++)
{
System.Console.Write("*");
}
System.Console.Write("\n");
}
Console.ReadLine();
}
}