Search This Blog

Saturday, November 28, 2015

IIT Model External Paper

        PVP14
I.B.TECH   I SEMESTER
INTRODUCTION TO INFORMATION TECHNOLOGY (IT1T6)
Model Paper
TIME: 3 HRS                                                                         MAX MARKS 70
PART A
Answer all Questions:                                                                      11x2=22
1. a) Identify the areas which computers are mostly used.
    b) Differentiate RAM and ROM
    c)Convert  (25)10 to Octal and Binary
   d)Explain Functionality of Input and Output devices?
   e)Define Operating System.
   f) Tell the need of Multimedia.
   g)Define Database ,Primary Key.
   h) Choose the best topology suitable for Computer Lab.
   i)State Programming Paradigms.
   j)Expand WWW,URL.
   k)List the Categories of e-Commerce.
PART B
Answer Any Three Questions.                                                                 3x16=48                                                                               
2. a)”Computers not only save the time, but also save paper work”.
              Justify your answer.                                                                 12M
    b) Name any four registers with their functions.                                      4M

3. a)Explain features of good programming Language                                 8M
   b) Explain various types of Operating Systems.                                        8M

4. a)Describe  the essential components of Information Technology.          8M
   b)Relate Multimedia applications with respect to business and
         education.                                                                                                8M

5. a)Compare different topologies used to Connect Computers.                  8M
    b)Describe some of the components  of  Internet Explorer.                     8M

6. a)Discuss RFID along with its applications                                             8M

   b)Create a blog named as IT2014-15.                                                       8M

IIT Important Topics


https://drive.google.com/file/d/0B4mef_EynCAdUW1veUExbmtnbGM/view?usp=sharing
UNIT 1
1.Evoltion of Computers
2.Genarations of Computers
3.Classification of Computers
4.Applications of Computers
5.Input and Output Devices
6.CPU Registers
7.Memory Hierarchy
Unit II
1.Program Development Cycle
2.Programming Paradigms
3.Genarations of Programming Languages
4.Evolution of Operating System
5.Types of Operating Systems
UNIT-III
1.Role of IT
2.Components Of IT
3Multimedia applications
UNIT-IV
1.Network Topologies
2.Types of Networks
3.Network Devices
4.Internet Applications
5.Internet Tools
UNIT –V
1.E-Commerce Types
2.Advantages and Disadvantages of E-Commerce
3.EDI
4.Smart Card
5.RFID
6.BLogging


Friday, November 6, 2015

IIT UNIT WISE TWO MARKS QUESTIONS

UNIT 1.1

UNIT 1.2

UNIT II.1

UNIT II.2

UNIT III.1

UNIT III.2

UNIT IV.1

UNIT IV.2

UNIT V.1

UNIT V.2

Saturday, September 12, 2015

IIT importent Questions

UNIT 1:
Generations of Computers
Classification of computers
Applications of computers
CPU
Memory Hierarchy
UNITII
Program Development Steps
Programming Paradigms
Generations of Programming Languages


IIT model mid paper


Old Mid paper (Model Paper only)

1.        “Computer not only save the time but also paper work” Justify your answer.

2.       (a) Explain program development cycle .
(b) State any four features of good program.
3.   (a) Discuss the generations of programming language.
  (b)Perform the following conversion.
          (i) Convert Binary 00011011 to Decimal
          (ii) Convert Decimal 278 to Binary



Monday, June 1, 2015

CP MODEL PAPER


                                                                                                                     PVP14
I.B.TECH   II SEMESTER
                              C-Programming (EE2T6,ME2T6,IT2T6)
Model Paper
TIME: 3 HRS                                                                         MAX MARKS 70
PART A
Answer all Questions:                                                                      11x2=22
1. a)  What is difference between Compiler and Interpreter.
    b) List the rules for declaring variable.
   c) What is use of exit() function.
   d) Differentiate break and continue.
   e) Why we use Arrays?
   f) Define function and write any two advantages.
   g) Define recursion.
   h) Write advantages of pointers.
   i) Explain #define directive.
   j) What is a structure in C? How is a structure declared?
   k) What is the use of fseek()?
PART B
Answer Any Three Questions.                                                                 3x16=48                                                                               
2. a) Explain Structure of  C Program.                                                       7M
    b) Explain any three operators with example.                              9M

3. a)Compare and contrast for,while,do-while.                                 9M             
    b) List Basic String functions explain  any four functions.                  7M                     

4. a)Compare Call by Value and Call by Reference.                                     8M
    b)Discuss Storage Classes with examples.                                                8M

5. a) With the help of examples Explain Dynamic Memory Allocation                                                                                                                                     8M
    b)Give Examples for #include,#define                                              8M

6. a)Differentiate between Structure and Union.                                        8M
    b)Explain File I/O                                                                            8M

CP QUESTION PAPER 2014

UNIT V part1 Notes

UNIT IV Part II Notes

UNIT IV Part I notes

Sunday, April 26, 2015

1-D Arrays Bits

1-D Arrays Bits


1. Array is a group of _______ data types
A similar
B different
C both a and b
D none
 ANSWER  A                    

2. Array Size is
A 0 to n
B 0 to n-1
C both a and b
D none
 ANSWER  B                   

3. int a[5] index values are
A a[0] to a[4]
B a[1] to a[5]
C both a and b
D none
 ANSWER  A                   

4. int a[5] then memory allocated for a is
A 20
B 5
C 10
D none
 ANSWER  A                    

5. char name[5] then memory allocated for name is
A 5
B 1
C 50
D none
 ANSWER  A                    

6. int a[]={1,2,3,4} then what is size of Array a
A 4
B 5
C 3
D 2
 ANSWER  A    
              

7. int a[4]={1,2,3,4} then what is size of Array a
A 4
B 5
C 6
D 3
 ANSWER  A                    

8. int a[]; is valid or not
A valid
B not valid
C both a and b
D none
 ANSWER  A                   

9. int a[3]={10,20,30}; then a[1]value is
A 10
B 20
C 30
D none
 ANSWER  B                    

10. int a[3]={10,20,30}; then a[0]value is
A 10
B 20
C 30
D none
 ANSWER  A                    

11. int a[3]={10,20,30}; then a[2]value is
A 10
B 20
C 30
D none
 ANSWER  C                    

12. What is output of the following? IMAGE
A 1 2 3 4 5
B 5 4 3 2 1
C both a b
D none
 ANSWER  A                    

13. What is output of the following? IMAGE
A 5 4 3 2 1
B 1 2 3 4 5
C both a b
D none
 ANSWER  A                    

14. What is output of the following? IMAGE
A sum is 15
B sum is 10
C no output
D none
 ANSWER  A                    

15. In Array elements are stored ________
A randomly
B sequentially
C both a and b
D none
 ANSWER  B