Skip to main content

Important objective type questions 1-50

Important fill in the blanks questions about computer fundamentals


  1. FTP stand for     file transfer protocol.
  2. Lady ADA is the mother of computer.
  3.    VINT CERF     is the father of Internet.
  4. Nibble consists of   4   bits.
  5.   Google     and   Yahoo   are the two search engines.
  6. TCP/IP stands for Transmission control protocol/Internet protocol.
  7. One sector on Hard Disk holds   512    bytes. 
  8. Dos, window and UNIX are three operating systems.
  9. Demodulation converts Analog signal into Digital signal.
  10. ARPANET stands for advanced research project agency network.
  11. URL stands for uniform resource locator.
  12. Charles Babbage is the father of computer.
  13. Lady ADA is the first computer programmer.
  14. Nibble contains 04 numbers of bits.
  15. Name Two Mail service mail Yahoo.com.
  16. VOIP stands for Voice over internet protocol.
  17. One sector holds 512 numbers of bytes.
  18. Name two different Operating systems DOS and Windows.
  19. The process of demodulation converts digital signal into analog signal.
  20. URL stands for Uniform Resource Locator.
  21. Bit stands for Binary digits.
  22. The smallest unit with which any disk can work is called Byte.
  23. HTML stands for hypertext markup language.
  24. Flow Chart is pictorial representation of an algorithm.
  25. Rules that govern the data over Internet are called Internet protocol.
  26. Pixel stands for picture element.
  27. MAN stands for matropoliton area network.
  28. In Ms Word, short key for changing the case of letter is shift +F3.
  29. In Ms Excel, the shortcut key to insert current time is CTRL + : and for current date is CTRL + ;
  30. Byte is the basic storage unit in a general-purpose computer.
  31. Flow chart can be regarded as graphically representation of algorithm.
  32. LASER stands for light amplification by stimulated emission of radiation.
  33. LCD as in LCD monitor stands for liquid crystal display. and LED stands for Light emitting Diode
  34. Information can be regarded as processed data.
  35. Collection of 8 bits is called a byte whereas collection of 4 bits is called   Nibble.
  36. A word, in computer terminology contains     16    bits.
  37. CRT as in CRT monitor stands for cathode ray tube.
  38. VAN as a network stands for value added network.
  39. ANSI stands for American National standards Institute.
  40. Radix for Octal Number System is     8.
  41. HUB is an abbreviation for _Hellenic United Backbone.
  42. FAT stands for   file allocation table.
  43.     Flow chart   may be considered as the graphical counterpart of an algorithm.
  44. Algorithm is a step-by-step procedure to solve a particular problem.
  45. (80)10 =    (1010000)2 [ divide 80 by 2 repeatedly until quotient is zero, write down remainders from bottom to top.]
  46. ASCII is an abbreviation for American standard Code for Information Interchange.
  47. BCD stands for Binary coded decimal.
  48. SDLC stands for system development life cycle.
  49. In Ms Office Suite, the shortcut key for CLOSE ALL is   Alt + F4.
  50. PCI is an abbreviation for   peripheral component Interconnect.
1. Important
objective type questions 1-50


2. Important
Objective Type Questions 51-100


3. Important
Ojective Type Questions 101-155

Comments

Popular posts from this blog

Explain Main Difference Between System Software and Application Software

Topic: Explain Main Difference Between System Software and Application Software            Differentiate between system software and application software Before , explaining the main differences between application software and system software, let us know the definitions of Application software and System software with examples. What is System Software: System software is a set of programs to control all components of computer and to manage overall operations of computer system. Differences between System software and application software System software is used as a base to install and run all application software. Examples of system software include: Operating Systems, like Microsoft Windows, DOS, Unix and Linux Device Drivers like Device driver software of a Printer (found on CD normally provided with the printer) Utility Programs like AVAST anti virus, Disk Scanners and File Viewers etc. What is Applicat...

HTML Table Tag Basics

Tables Tables are very important to show data in the form of rows and columns. Tables make data more readable and easy to understand. A table consists of rows, columns and cells. HTML Tags To Make A Table As we know that there are basically three elements in a table, that is, rows, columns and cells. So, there are the following basic tags to create a table in an HTML web page: <TABLE> tag <TR> tag <TD> tag <TH> tag   <TABLE> Tag <Table> tag is used to specify the start of a table. It also specifies some attributes of the table like ALIGN and BORDER attributes etc. Example 1: <Table>                    => Table without a border. Example 2: <Table border="1">     => Table with a border of width 1. Example 3: <Table align="left" border="2">  => A left aligned Table with a border of width 2. ...

Types Of Headings In HTML

HTML Hedings Headings in HTML are used to display Titles, Sub-Titles of Sub-Sub-Titles for your web page text. There are six types of headings in HTML. H1 is the largest heading and H6 is the smallest heading. <H1> is opening tag whereas </H1> is the closing tag for the largest heading. The text between <h1> and </h1> will be displayed as the main Title in your web page. Following are the six tags used for six types of headings in HTML. <H1> ... </H1> <H2> ... </H2> <H3> ... </H3> <H4> ... </H4> <H5> ... </H5> <H6> ... </H6> The H1 heading is used for main titles. Actually H1 heading will show the text in largest font size. H2 headings is used for Sub-Titles. H2 displays text in smaller font size than H1, H3 displays text of font size smaller than H1 and H2, and so on. H1 is for largest heading in a text page and H6 is for smallest heading.   Importance Of Headings in SEO H...