Monday, November 14, 2011

web site for Question bank


 Study material & Question Bank(Unit 1 - Unit 5)





 Click the link below for study material & Question Bank ( All units).

Foc study material in ppt & Question Bank



Monday, November 7, 2011

Unit 3 - mark quest





16 MARKS
1. Explain the steps involved in developing a program with neat diagram?
     (FEB2009)
        (or)
         Brief about planning the computer program?

2. Explain flowchart in detail? (FEB 2009/FEB 2010)

3. Describe in detail about algorithm? Give example (MAY 2009)
4. Elaborate pseudo code with example. (MAY 2009\FEB 2009)
5. Discuss about the program control structure and program paradigms in detail.
       Program structures that affect the order in which statements are executed or that
        affect statements are executed are called control structures.
     1. Sequence control structure
           Instructions has to follow one another in a logical progression is sequence control
           structure.
   Example:
    Addition of two numbers
     2. Selection Control Structure
         Selection control structure allows the program to make a chance between
          alternate paths, when it is true or false.
   Example:
     Largest of two numbers
    3. Repetition Control Structure
6. Explain in detail about the word processing package.
      (OR)
     Explain 8 formatting features in word processing package. (JAN 2009/MAY 2009)
(1) Paragraph
(2) Font
(3) Bullets and Numbering
(4) Boarders and Shading
(5) Tabs
(6) Change case
(7) Auto format
(8) Background
7. Describe about spreadsheet packages.
    (OR)
     Explain the formatting features in spreadsheet package. (JAN 2009/MAY 2009)
(1) Cells
(2) Rows
(3) Columns
(4) Auto format
(5) Sheet
(6) Conditional formatting
(7) Style
8. Discuss about the graphics package along with its various features in detail.
    (OR)
     Explain 8 formatting features in graphics package. (JAN 2009/MAY 2009)
(1) Fonts
(2) Bullets and Numbering
(3) Alignment
(4) Line spacing
(5) Change case
(6) Replace fonts
(7) Slide Design
(8) Slide Layout
9. Briefly explain about the personal assistant package.
· Address book
· Calendar
· To-do List
· Inventory Books
· Investments Book.
10. Write Algorithm,Flow chart,Pseudo code for Greater than three numbers. 
11. How to measure the Quality of  a Algorithm .

Unit 3 - 2 marks



2 MARKS


1. What is a program?
    A program is a set instruction written to carryout a particular task, so that
    computer can perform some specified task.
2. What is algorithm? (JAN 2009)
      Algorithm means the logic of a program. It is a step-by-step description of how
      to arrive at a solution of a given problem.
3. What are the steps to solve the problem in a computer system?
    · Problem must be analyzed thoroughly.
    · Solution method is broken down into a sequence of small tasks.
    · Based on this analysis, an algorithm must be prepared to solve the problem.
    · The algorithm is expressed in a precise notation. This notation is known as
     “Computer Program”.
    · The Computer program is fed to the computer.
    · The instruction in the program executes one after another and outputs the expected
     result.
4. How can you measure the quality of algorithm?
     The primary factors that are often used to judge the quality of an algorithm are
     time requirement, memory requirement, and accuracy of solution.
5. What are the characteristics of an algorithm?
       1. In algorithms each and every instruction should be precise.
       2. In algorithms each and every instruction should be unambiguous.
       3. The instructions in an algorithm should not be repeated infinitely.
       4. Ensure that the algorithm will ultimately terminate.
       5. The algorithm should be written in sequence.
       6. It looks like normal English.
       7. The desired result should be obtained only after the algorithm terminates.
6. How many types the Algorithm can be represented?
   · Normal English
   · Program
   · Flowchart
   · Pseudo code
    · Decision table
7. What is decision table?
   A decision table is a table containing the selection of conditions to be tested and how
   those conditions should be nested to arrive at the proper action.
8. What is Flowchart?
    A Flowchart is a pictorial representation of an algorithm. It is often used by
    programmer as a program planning tool for organizing a sequence of step necessary to
    solve a problem by a computer.
9. What is the need of Flowchart symbols?
     Each symbol of different shapes denotes different shapes denote different types of
     instructions. The program logic through flowcharts is made easier through the use of
     symbol that has standardized planning.
10. What is pseudo code?
    “Pseudo” means imitation of false and “code” refers to the instruction written in the
     programming language. Pseudo code is programming analysis tool that is used for
     planning program logic.
11. What is structured programming?
    A structured programming is a more specific approach to solve a
    programming problem by using only the three basic logic structures. They are sequence
    logic, selection logic and Iteration logic.
12. Draw the flowchart to find the maximum among three numbers (JAN  2009)

13. What are the rules for drawing a flowchart?
  · The standard symbols should only be used.
   · The arrowheads in the flowchart represent the direction of flow of control in the
   problem.
  · The usual direction of the flow of procedure is from top to bottom or left to right.
  · The flow lines should not cross each other.
  · Be consistent in using names and variables in the flowchart.
  · Keep the flowchart as simple as possible.
  · Words in the flowchart symbols should be common statements and easy to
     understand.
   · Chart main line of logic, and then incorporate all the details of logic.
   · If a new page is needed for flowcharting, then use connectors for better
      representation.
   · Don’t chart every details or the flowchart will only be graphical represented.
14. What is sequence logic?
   Sequence logic is used for performing instructions one after another in a
   sequence.
15. What is selection logic?
   Selection logic is used for selecting the process path out of two or more
   alternative paths in the program logic. It uses three control structures called if…then, if…
   then…else and switch…case.
16. What is Iteration logic?
  Iteration logic is used for producing loops in program logic when one or more
  instructions may be executed several times depending on some condition. It uses two
  control structures called do…while, and repeat…until.
17. What are the rules for writing pseudo code? (MAY
2010)
  · Write on statement per line.
  · Capitalize initial keywords.
  · Indent to show hierarchy.
  · End multi line structure.
  · Keep statements language independent.
18. What are the features of word processors?
  · Fast
  · Permanent storage
  · Formatting
  · Editing
  · Graphics
  · OLE
  · Spell Check
   · Mail merge
19. How many types a documented can be viewed?
  * Normal view * Online layout
  * Outline view * Page layout view
20. What are the menus available in Ms-Word?
  · File
  · Edit
  · View
  · Insert
  · Format
  · Tools
  · Table
  · Window
  · Help
21. What is meant by Formatting?
   Formatting is the process of changing the appearance of the text in the document.
22. Specify any five toolbars available in Ms-Word?
  · Standard
  · Formatting
   · Drawing
   · Tables & Boarders
   · WordArt etc.,
23. How many Line Spacing options available in Ms-Word?
   · Single
   · 1.5 Lines
   · Double
   · At least
   · Exactly
   · Multiple
24. What are the Text cases available in Ms-Word?
   · Sentence case
   · lower case
   · UPPER CASE
   · Title Case
   · tOGGLE CASE
25. What is Subscript and Superscript?
   The Subscript format places the text slightly below a line of normal printed
    text.
Eg:-H2O
    The Superscript format places the text slightly above a line of normal printed
     text.
Eg:-A2+B2
26. What is Tab and what are the Tab settings available in word?
    Tab is used to control the alignment of text with in the document. Word provides
     seven types of tabs.
     · Standard (left) tab
     · Center tab
     · Right tab
     · Decimal tab
     · Bar tab
     · First line Indent tab
     · Hanging Indent tab
27. Define Headers and Footers.
     Header allows text, page number or section titles to appear on every page of
     document at the top position.
     Footer allows text, page number or section titles to appear on every page of
     document at the bottom position.
28. What is a Table?
      A Table is grid of rows and columns.
29. What is a Clipart?
     Clipart is the attractive pre-defined, pre-colored pictures available in Ms-Word office
     suite.
30. Define a Template.
     Template is a special kind of document that produces basic tools for shaping a final
      document.
31. Define operator and formula.
Operator:-An operator is a symbol, which can do a particular action on the
operands. Formula:-Is the mathematical expression used to carryout a particular process.
32. What is a function?
      A function is a built-in mathematical shortcut used to perform a complex formula task.
33. What are the types of functions available in Excel?
There are nine types of functions available in Excel.
· Financial functions
· Date and Time functions
· Math and Trigonometry functions
· Database functions
· Statistical functions
· Text functions
· Lookup Reference functions
· Logical functions
· Information functions
34. What is a Label?
A label is the name describing the each column and row of a cell. It appears
at the left and the top of a cell.
35. What is a chart?
      A chart is a graphical representation of worksheet data.
36. What are the types of chart available in Ms-Excel?
      (a) Bar  (b) Line  (c) Pie (d) XY (scatter) (e) Column  (f) Bubble.
37. Write about shareware and freeware
      Shareware is software developed by an individual or software publisher who
retains ownership of the product and makes it available for a small "contribu-
tion" fee.

     Freeware is software that is provided free of charge to anyone wanting to use it.
Hundreds of freeware programs are available.
































Wednesday, October 12, 2011

Unit 2 - 16 mark questions

UNIT 2

PART B



  1. Write in detail about Software & types of software.
  2. Explain about Application Software with example.
  3. Write about types of operating system.
  4. What is SDLC & write in detail about the steps involved in SDLC.

Unit 2 - 2 mark questions

GE2112 - FUNDAMENTALS OF COMPUTING AND PROGRAMMING

UNIT - 2

Part A



1.      Define Hardware and Software.
2.      What are the types of Software?
3.      What is the Application of Software?
4.      Define operating System and Give example.
5.      Define Compiler, Interpreter and Assembler.
6.      What are the functions of System utilities?
7.      What are the types of Operating System?
8.      Define Application Program.
9.      What are the types involved in Graphics File Formats?
10.  What is called Protocol?
11.  Define LAN, MAN, WAN.
12.  List out any four services provided by Internet.
13.  Distinguish between compilers and interpreters.
14.  Difference between software and hardware in computer?
15.  What are the applications of software?
16.  What is a Web server?
17.  What are the Language Processors?
18.  Define Assembler
19.  What is System Utilities
20.  Define Firmware & Open source
21.  Define Freeware & Commercial s/w
22.  Who are System Personnel
23.  What are the ways to Acquiring the Software
24.  Define INTERNET
25.  Define webpage & website.
26.  What is URL & ISP
27.  Define FTP & HTTP.
28.  Define PPP & SMTP.
29.  Define SSL & Spyware.
30.  Define Virus.
31.  Define download & Upload.
32.  What is MODEM
33.  What are the Applications of Internet?
34.  What is Network Topology and its Types?

Wednesday, September 21, 2011

UNIT 1 2 mark question

GE2112 - FUNDAMENTALS OF COMPUTING AND PROGRAMMING
2 MARKS QUESTION AND ANSWERS
UNIT I
1. Define cache memory?
     A small memory between CPU and main memory is called cache. The speed is equal to the CPU.
    Cache memory acts as a high speed buffer between CPU and Main memory.
2. Define ROM?
    ROM is a non-volatile memory that contains permanent data.
3. Define booting and what are the types of booting?
   The process of loading an operating system program into the computer memory is called the booting.
    The types of booting are cold booting and warm booting.
4. What are the basic operations of computer?
  •  Input
  •  Process
  •  Storing
  • Controlling and
  • Output.
5. What are the characteristics of computer?
  •  Speed
  •  Accuracy
  •  Automation
  •  Endurance
  •  Versatility
  •  Storage and
  •  Cost reduction
6. Define data and information.
     Data: Raw material for information processing
     Information: The processed data is called information.
7. What are the different types of ROM?
  •  PROM
  •  EPROM
  •  EEPROM
  •  Flash ROM
8. List out the operations of CPU.
    CPU performs all the calculations, co-ordinates all the units of the computer, interprets the
    instruction and stores the data’s.
9. Define computer.
    Computer is a fast operating device which processes the input data into desired information.
10. Define RAM?
      RAM is a volatile memory that contains temporary data that can be accessed at high speed.

Tuesday, September 20, 2011

UNIT 1 questions

Unit-I

PART A
1. Define Computer?
2. What are the basic operations of Computer?
3. List out any 5 characteristics of Computer?
4. What is an Information Technology?
5. Who is the Father of Computer?
6. What are the Major Components of I and II generation Computers?
8. Define CPU and ALU?
9. Expand SMPS, RAM, ROM, BIOS.
10. Define Bit, Byte, and Nibble?
11.Define an Integrated Circuit
12.What are the Applications of computers?
13.Define MSB and LSB.
14. Define Binary Number System.
15. Define Decimal Number System.
16. Define Octal Number System.
17. Define Hexadecimal Number System.
18.Define 1’s complement and 2’s Complement
19.Convert the Following binary Number to Decimal
     1) 111001 2) 00101 3) 101110 4) 110010
20. Convert the following Hexadecimal to Decimal
     1) 93A  2) 6BA  3) 3B9  4) 28D
21. Convert the following Octal and Decimal.
      1) 773 2) 7373 3) 1267 5) 6347
22. Convert the following Decimal to Hexadecimal.
      1) 7793 2) 2389 3) 2079 4) 676
23. Convert binary real number to its equivalent binary number.
24. Differentiate between primary and secondary memory
25. What are the five basic operations of computer?
26. Define Software and its 2 types?
27. Differentiate between analog and digital computers 
28. Convert the following  Hexadecimal to Binary
      1) 7793 2) 2389  

Part B

1. (a)Explain about the Block Diagram of the Computer in Detail. (8)
(b) What are the characteristics of Computer? (8)
2. Explain in detail About the Components of Computer System. (16)
3. List out the Features of al generations of computer with their advantages and
disadvantages. (16)
4. Write a note on classification of Computers. (16)
5. Explain the various applications of Computer in detail. (16)
6.(a) Convert the Decimal Number 4019 to Hexadecimal Number (8)
   (b) Convert the Decimal Number 250 to Octal Number
7.  (a) Subtract the binary number 100 from 001 using 1’s Complement Method (4)
     (b) Convert the Decimal Fraction 250.3125 to Binary Number (8)
     (c) Subtract the hexadecimal number 0B from C3 (2)
      (d) Convert (5C2 )16 to Decimal Number (2)

8.(a)Convert Hexadecimal Number AC5.4D to Octal Number (8)
    (b)Convert the Binary Number 11110.11011 to Hexadecimal Number (8)
9.(a)Convert the Hexadecimal Number 5C8 to Binary Number (8)
    (b)Convert the Octal Number 540 to Binary Number (8)
10. Describe the evolution of computers.
11. Explain in detail about Storage Devices. (16)
12. (a)Explain briefly about Characteristics of Storage. (8)
      (b)Explain about Secondary Storage Devices. (8)
13. Explain briefly about Magnetic Storage Devices. (16)
14. Explain briefly about Optical storage Devices. (16)
15. Explain about Input devices in detail? (16)
16. List out the Types of Computer Monitors and Explain in detail. (16)
17. List out the key hardware and software technologies used in building the computer of each of the five generations.