Pages

Tampilkan postingan dengan label screen. Tampilkan semua postingan
Tampilkan postingan dengan label screen. Tampilkan semua postingan

Rabu, 01 Juni 2016

C Program to display the different series output on the screen

C# Program to display the different series output on the screen

Program Statement:
Write a program which display the following output on the screen.
1 2 3 4 5
1 4 9 16 25
1 8 27 64 125

Solution:
 static void Main(string[] args)
{
for (int i = 1; i <= 5; i++)
Console.Write(i+" ");

Console.WriteLine();

for (int i = 1; i <= 5; i++)
Console.Write(i * i+" ");

Console.WriteLine();

for (int i = 1; i <= 5; i++)
Console.Write(i * i * i+" ");

Console.ReadLine();
}


Read More..

Senin, 25 April 2016

How to solve blue screen of death

The cause of blue screen is strongly related with memory, CPU, CD-Rom, RAM, disk fragmentation and so on.

How to solve the problem.
1. You must make sure your hardware component into your computer is fixed in correct of order.  To enhance your hardware is correct fixed, you may see my Device manager. You can see any error of the component in Device Manager.

Location > Control Panel > System > Device Manager.


2. Scan your windows Registry, this is where windows use to store an information of hardware and software . This is a kind of inject the window to perform the computer better and increase, repair the blue screen error. You may download a Registry winner software to nurse your computer and overcome the problem. You may download here. Click here

3.Scan your computer, detect a virus or malware can slow down the computers performance. You should keep your computer free of viruses. The antivirus you keep updated to avoid a viruses come in and delete the viruses. For a free antivirus, you may download. Click here

4.Disk fragmentation: It is a tools that helps to arrange the data in your hard disk so the computer can be run more efficiently. You can change and make a better performance after  fragmented your data.

Location > All programs > Accessories > System Tools > Disk Defragmenter
Read More..