Welcome Pages
Latest Post
FUNDAMENTAL COMPUTER CONCEPT
Written By CTI Kon Khmer on Thursday, December 12, 2013 | 1:14 PM
- Types of computers :
- Supercomputer
- Mainframe computer
- Minicomputer
- Microcomputer
- Desktop computer
- Notebook computer
- Netbook computer
- Handheld computer
- Tablet PC
- Media computer centre
- Part of computer:
- Hardware:
- Input Device:
- Keyboard
- Traditional keyboard
- Ergonomic keyboard
- PDAs keyboard
- Visuals keyboard
- Wireless keyboard
- Pointing devices:
- Mouse
- Machanical mouse
- Obtical mouse
- Trackball mouse
- Cordless or Wireless mouse
- Pointing sticks
- Touch pad or touch surface
- Joystick
- Touch screen
- Light pens
- Stylus(pen of Handheld)
- Scanning devices
- Optical scanner
- Bar-code reader
- Card reader
- Character
- Mark recognition devices
- Audio input devices
- Image capturing devices
- Digital camera
- Digital video camera
- Output devices:
- Monitor
- Printer
- Ink-jet printer
- Laser printer
- Personal laser
- Share laser
- Photo printer
- Portable printer
- Plotter printer
- Audio Output devices
- Speaker
- Telephone
- ...............
- Softwar:
- System software
- Application software
Set computer speak by notepad*Please write these code to notepad and save name.vbs* ::
Written By CTI Kon Khmer on Tuesday, December 10, 2013 | 11:38 AM
Example of IF statement:(on turbo)
Written By CTI Kon Khmer on Monday, December 2, 2013 | 8:01 AM
# include<stdio.h>
# include<conio.h>
voide main();
{
clrscr();
int pay, dis, total;
printf("Payment=");
scanf("%d", &total);
if(pay<200)
{
dis=pay*5/100;
total=pay-dis;
}
if(pay>=200)
{
dis=pay*15/100;
pay=total-dis;
}
printf("Total=%d", total);
getch();
}






