Skip to main content

Hardware Tips

Assembling process
Required components:
1.     System case
2.     SMPS(Switch Mode Power Supply)
3.     Motherboard
4.     RAM(Random Access Memory)
5.     CPU chip (Central Processing Unit)
6.     Optical Disk Drive
7.     CPU fan
8.     Hard Disk Drive
9.     Graphics card
Assembling the Computer is the process of making a completely working system combining various parts of compatible hardware of the computer system.  A computer is said to be assembled when its various hardware components like Hard Disk, Memory, Power Supply, SATA/PATA etc. are connected manually in a proper way so that the system functions smoothly.

Things to Consider:

·         Hold the main board and expansion cards by edges
·         Return the main board and peripherals to
anti-static bags
·         Disconnect the power before working on the system
·         Never place the components above the material that can pass electricity
·         It is advised not to touch in the middle of internal components like processor, motherboard as it can get short-circuit by static electricity.
·         We should use correct type of SMPS for the system as requirement provided by the technical professional.



Fig: System Case



Step 2: Insert CPU chip into CPU slot and close the socket.

Step 3: Insert CPU fan and Fan wire into motherboard. Make sure screw was tided correctly. 

Step 4: Insert Motherboard into System Case.

Step 5: Insert Optical Disk Drive. Tide the screw.

Step 6: Insert Graphics card into PCI slot while managing Graphics port.

Fig: Graphics Card and PCI slots

Step 7: Insert HDD in the system case.

Step 8: Insert SMPS in the case and tide the screw.

Step 9: Connect all the cable simultaneously.

Fig: Power Cable

Fig: Serial ATA port and Cable

Fig: front panel Port

Fig: Connecting power cable to Optical disk drive

Testing connections:
Plug in PSU power cord into PSU and to wall outlet and start computer. Use usual precautions when handling electricity! Test to see the following are running - all 3 fans - case, CPU, PSU, (and video card fan(s) if separate video card installed). Test power button (PC comes on and off) and reset button (HDD LED light blinks once). Test to see all 3 LED lights work - PLED light (power on light that stays on when PC is on), DVD LED light (comes on at start then goes off), HDD LED light (blinks initially).

Put back case left, right and front panels

Screw back case left and right panels with thumb screws. Make sure you get the sidescorrectlay, a case side panel with a window faces the front side of the motherboard giving the components ventilation.

Comments

Popular posts from this blog

Passing arrays to functions in C programming

Like any other variables, we can also pass entire array to a function. An array name can be named as an argument for the prototype declaration and in function header. When we call the function no need to subscript or square brackets. When we pass array that pass as a call by reference because the array name is address for that array. /* Program to illustrate passing array to function */ #include<stdio.h> void display(int) ; /* function prototype */ main( ) { int num[5] = {100, 20, 40, 15, 33, i ; clrscr( ) ; printf (“\n The content of array is \n”) ; for (i=0; i<5; i++) display (num[i]) ; /*Pass array element fo fun */ getch{ } ; } void display(int n) { printf (“\t%d”, n ) ; } Output:     The content of array is 100      20       40       15 3 /* Program to read 10 numbers from keyboard to store these num into array and then c...

Explanation of Graphics in C programming

   The header file graphics.h should be included to use graphics related built in functions. Again, the variable gDriver is an integer variable that specifies graphics driver to be used. Device drivers are small programs which talk directly to the hardware. Graphics drivers are a subset of device drivers and are applicable only in the graphics mode. The initialization of this variable to DETECT is to set another variable gMode to the highest resolution available for the detected driver.  The value of this variable gDriver may be another than DETECT (e.g. 1 for CGA, 9 for VGA.). The variable gMode is an integer that specifies initial graphics mode.       The built in function initgraph() is for graphics initialization. The syntax for this is as   initgraph(&graphics_driver, &graphics_mode, path_to_driver);   path_to_driver specifies the directory path where initgraph() looks for graphics drivers ( .BGI files). Thi...

Software Development Life Cycle

Software Crisis In earlier days, same codes needed to be written time and again increasing the complexity and time required for development This resulted in software not being completed on time and the cost increased than expected Solution: Object Oriented Programming Software Evolution Investigation Feasibility Study Analysis Design Implementation Maintenance Investigation First step in preparation of the IS includes the preliminary study of proposed information system investigates the information needs of the users and determines the resource requirement, costs, benefits and feasibility of a proposed project 2. Feasibility Study feasibility study is an analysis of the practicality of an idea focuses on helping answer the essential question of “should we proceed with the proposed project idea?” The feasibility study is conducted in four different areas: 1. Organizational feasibility 2. Economic feasibility 3. Technical feasibility 4. Operation...