A Short Guide To Written Exam Previous Year Questions

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 6

A short Guide to Written Exam Page11 Previous Year Questions

All Previous Year Written Questions

C Programming
1. Write a program to find whether the given number is an Armstrong number or
not? [ICML(AP)-2019]
2. Write a program to reverse a string. [ICML(AP)-2019]
3. Write a program to sort a list of element using the insertion sort algorithm.
[ICML(AP)-2019]
4. What are the properties of the command line arguments in C/C++? [Uttara Bank(AP)-
2019]
5. Write a function void changeCaseAndReverese(Char *s) using c programming
language that will print the characters in the string S in reverse order and will
also change the uppercase letters to lowercase and lowercase letters to uppercase.
For example if you call changeCaseAndReverese (“Hello There”), it will print
EREHt OLLEh. [Uttara Bank(AP)-2019]
6. C program to find sum of following series: [Uttara Bank(AP)-2019]
1+1/2+1/3+1/4+……1/n.
7. Write a pseudocode that takes in one positive number only and returns the factor
for that number. [Combined(SO-IT/ICT)-2019]
8. How many bits have to change to convert int A to intB.?
Sample A=31 and B=14. [Basic Bank(AM)-2019]
9. Difference between getch () and getche (). What is file pointer in c? [Basic Bank(AM)-2019]
10. Write code to test a sorting algorithm of array? [Combined(AME)-2019]
11. Write a program in c to find the sum of following series. [Competition Commition(P)-2019]
12-22+52-.......+n2
12. A prime number is a number that is evenly divided by only 1 and itself.Write a
program to your favourite language to print the first 100 prime numbers.
[Competition Commition(P)-2019]
13. A program sorts an array of integer. Write down the code that tests the sorting
algorithm of written in a program. [HBFC&KB(AP)-2018]
14. Write a program to find out the number of occurence of a digit in a number.
Explanation if input value n and selection value is d. [DBBL-2018]
15. Write a program to evaluate the series : [DBBL-2018]
1*3 + 2*5 + 3*7 + …. + n*(2n+1)
16. Difference between call by value and call by reference with example. [Pally Sa.-2018]
17. Write a program using any programming language that reads five numbers from
keyboard and display the smaller , larger and average of those numbers. BDBL-
2017]
17. Write a program to sort an array and find max, min value. [IBBL-2017]
18. Write a program to calculate GPA, avg, and total marks. [IBBL-2017]
19. Write an algorithm that sort an array, also test code for sorting test. [IBBL-2017]
A short Guide to Written Exam Page22 Previous Year Questions
20. Using examples explain data types used in C language. [Multi. Ministry-2017]
21. Write a program to read the coordinates of the end points of a line and to find its
length. Use a structured variable name ‘Line’ to store the relevant information
about its end points. [Multi. Ministry-2017]
22. Write a program in C to calculate the sum of the series:
1+(1+2)+(1+2+3)+….+(1+2+…+n). [Multi. Ministry-2017]
23. Explain in details the different forms of looping statement in C language. [Multi.
Ministry-2017]
24. Write a program in C with recursive function to compute the value Xn where n is
a positive integer and x has real value. [Multi. Ministry-2017]
25. What is algorithm? Write down the algorithm to find out the second highest and
second lowest element in an n-element array. [ICT Ministry-2017]
26. Draw a flowchart of ax2+bx+c=0 through c/c++ program. [Engineering college lecturer -
2017]
27. What is the difference between while and do while loop? [ICT Ministry-2014]

Data Structure
1. Difference between linear and Nonlinear data structure. [Pally Sa.-2018]
2. Describe infix to postfix convartion method. Advantage of stack using link list
then array. [Basic Bank(AM)-2019]
3. What are the operations performed on a data structure? What is prefix, post fix
and infix operation? [Officer(IT/ICT)-2019]
4. Draw a Binary min heap that results from inserting 9, 3, 7, 4, 8, 2, 6, 5 in that
order into an initially empty heap. Show each insertion step separetly. You do not
need to show the array representation. Just draw the trees. [Uttara Bank(AP)-2019]
5. Describe four types of sorting algorithm with example. [Combined(SO-IT/ICT)-2019]
6. Advantage of marge sort, heap sort, Insertion sort. Advantage and complixity of
them. [Basic Bank(AM)-2019]
7. Draw a flowchart to input five positive numbers, and sort them is ascending
order. [Combined 3 bank (AP)-2018]
8. Write a algorithm to find a node in a binary search tree. [Pally Sa.-2018]
9. Difference between stacks and queue with example. [Engineering college lecturer -2017]
10. Write down time complexities of different sorting algorithm. [DBBL-2016]
11. Explain BFS Traversal of a graph with an example. [DBBL-2016]

Object Oriented Programming


1. What are the differences among JDK, JRE, and JVM?[IBBL(Software)-2019]
2. What is a constructor? How many types of constructors are used in Java?
[IBBL(Software)-2019]
3. What is the static method? What are the restrictions that are applied to the Java
static Methods? [IBBL(Software)-2019]
4. What is the Inheritance? What are the types of Inheritance in Java? [IBBL(Software)-
2019]
A short Guide to Written Exam Page33 Previous Year Questions
5. What are the basic Concepts used in the Object oriented Programming language?
[Uttara Bank(AP)-2019] [Pally Sa.-2018]
6. Briefly describe Abstract, Encapsulation, Inheritance and polymorphism.
[Competition Commition(P)-2019]
7. Differentiate constructor and destructor with example. [Pally Sa.-2018]
8. Difference between method overloading and overriding in java. [Agrani (o).-2017]
[DBBL-2016]
9. What is the difference among String, StringBuffer and StringBuilder? [DBBL-2016]
10. Write code of palindrome in java or C++. [DBBL-2016]
11. What is the difference between implement runnable interfaces and extend thread
class? [DBBL-2016]
12. Write a java program based on following conditions: There is one Circle class and
one Cylinder Class. Circle class has an area function. Cylinder Class has to
calculate the circle area at the base and height of its own (Cylinder Volumn=
Circle area*height). Use inheritance to calculate Volumn of Cylinder. [DBBL-2016]
13. Write a structured program to display Fibonacci series up to 100 Numbers. [BB-AP-
2016]

Database
1. Write down five differences between DELETE and TRUNCATE statement in
SQL? [IBBL(Software)-2019]
2. Define thread cancellation, target threat? Enumerate the different RAID level.
[Uttara Bank(AP)-2019]
3. Describe the ACID properties in a Database. When does a deadlock occur, and
how do you prevent it, in a database? [Combined(SO-IT/ICT)-2019] [Basic bank (AM)-2019] [BDBL-
2017]
4. What is normalization? Explain composite key with example. [BTV (AP)-2019]
5. What is inner join? Explain with syntax and example. [BTV (AP)-2019]
6. What is the difference between primary key and candidate key? Explain the
foreign key with an example. [Competition Commition(P)-2019] [HBFC&KB(AP)-2018] [Pally Sa.-2018]
7. Write a program in pl/sql to find the highest paid employees from employee table
and store the data in HighestPaidEmp table. [DBBL-2018]
8. Difference among candidate key, primary key and foreign key. [ICB(AP)-2017]
9. What do you mean by primary key and foreign key? What are the difference
between primary key and unique key? [Multi. Ministry-2017]
10. What is RDBMS? Why data are stored in database system instead of file? [ICT
Ministry-2017]
11. What is trigger? Write a code for auto increment sequence and trigger. [DBBL-2016]
12. What is cardinality and modality? [BB-AP-2016]
13. What is database? State the RDBMS with example? ? [ICT Ministry-2014]
14. What is the difference between RAID level 2 and RAID level 3? [ICT Ministry-2014]

Computer Architecture &

Microprocessor
A short Guide to Written Exam Page44 Previous Year Questions
1. Write down the Computer architecture characteristics. Write down the
stage of DLX pipelines. [BB(AME)-2019]
2. Write down four common rules of Assembaly language .Different type of hazard
[Officer(IT/ICT)-2019]
3. Given an instruction in an8086 based Assembly language program, Mov BL,AL.
Now convert this assembly language instruction in to the machine code in HEX.
[Uttara Bank(AP)-2019]
4. Computer A has 3.2 GHz processing Speed and it has 2.0 clock speed in a
program, and at the same program Computer B has 2.4 GHz processing Speed
with 1.2 clock speed. Which computer will run faster and how much faster. [Desco-
2019]
5. Describe addressing mode of 8086 microprocessor. [BB-AME-2017]
6. Explain the functions of ALU & Control Unit of a computer. [Multi. Ministry-2017]
7. Explain URL, FTP, ASCII& BIOS. [Multi. Ministry-2017]
8. How many subnets and hosts per subnet can you get from the network
172.20.0.0/27? [BB-AME-2017]
9. Difference between microprocessor and micro-controller. [Multi. Ministry-2017]
10. “Pentium processor has a superscalar architecture.” Explain the meaning of the
statement. [Multi. Ministry-2017]

Data Commnication And Networking


1. Describe the OSI layers. Draw a diagram to show the hierarchy when the data is
transmitted or received. [Combined(SO-IT/ICT)-2019]
2. Short note- Node, Hub, Backbone, Router and Gateway. [BB(AME)-2019] [Desco-2019]
3. Describe different types of network topology. Write some network connecting
devices name. [Basic Bank(AM)-2019] [SBL&JBL(IT/ICT)-2018]
4. Four 1-kbps connections are multiplexed together. A unit is a 1 bit. Find
(1) the duration of 1 bit before multiplexing, (2) the transmission rate of
the link, (3) the duration of a time slot, and (4) the duration of a frame.
[BB(AME)-2019]

5. Difference between risk, threat, vulnerable. What are SSL and TLS? [BB(AME)-2019]
6. Breafly explain what is meant my NAT. How can NAT help in IP address
depletion? [Uttara Bank(AP)-2019]
7. What is private ip? List the class b private ip. [BTV(AP)-2019]
8. Find subnet mask and number of host on each subnet mask at a class B
IP 172.16.2.1/23. [Pally Sa.-2018]
9. Show the translation process of a NAT Box. [Agrani -2017]
10. Write short notes on DHCP and SMTP. [BB-AME-2017]
11. A block address is granted to a small organization. If one of the address is
205.16.37.39/28, what are the first and last address of the block? [Multi. Ministry-2017]
12. Explain the terms Domains, Bandwidth, Broadcast and Multicast. [Multi. Ministry-
2017]
A short Guide to Written Exam Page55 Previous Year Questions
13. What is public key encryption? Explain digital signature with example. [ICT Ministry-
2017]
14. What is data communication? Define Simplex, half duplex and full duplex. [ICT
Ministry-2017] [SBL & JBL SO-2018]
15. What are the functionalities of firewall in a network? [Engineering college lecturer -2017]
16. Differentiate between client server network and peer-to-peer network. [Engineering
college lecturer -2017]

17. What is private IP address? Mention the class B private IP range. [ICT Ministry-2014]
18. What is the difference between layer 2 and layer 3 network switch? [ICT Ministry-2014]
19. State the advantage and disadvantage of voice band and broadband? [ICT Ministry-
2014]

Computer Fundamental and Digital Logic


1. Describe the seven basic logic gates and show their truth table. [Combined(SO-IT/ICT)-
2019]
2. Draw a circuit to relaise the following expression using AND,OR gates and
inverter
F= ABC+ ABC+ ABC [Officer(IT/ICT)-2019]
3. Difference between compiler and interpreter? Give example of two?
[Competition Commition(P)-2019] [Pally Sa.-2018]
4. Simplify the following boolean expression. [Desco-2019]
A'C+AB'+BC'+ABC
5. What is the difference between latch and flip-flop? [BB-AME-2017]
6. Difference between ROM and RAM. What are EPROM and EEPROM? [ICT
Ministry-2017]
7. Draw a full adder that is made of two half adder and find out the function of
output of that full adder. [Engineering college lecturer -2017]
8. What is the functionality of multiplexer? Draw a 4-to-1 line multiplexer and its
truth table and describe its functionality. [Engineering college lecturer -2017]
9. Distinguish between OMR and MICR. [BB-AME -2016]

Security and Cloud Computing


1. Write the name of different type of attack. [Officer(IT/ICT)-2019] [BDBL(IT/ICT)-2017]

2. What do you understand by cloud computing? [Uttara Bank(AP)-2019]


3. What are the benefits of using cloud computing? [Uttara Bank(AP)-2019]
4. Employee causes the most risk of fraud and computer compromises – Do you
agree with the statement. Justify your answer. [Uttara Bank(AP)-2019]
5. What is SQL injection? How to prevent it? [BTV(AP)-2019]
6. Write down the name of different attack through internet. [HBFC & KB(AP)-2018]
7. What is Data warehouse? Why We Need Data Warehouse? Advantages &
A short Guide to Written Exam Page66 Previous Year Questions
Disadvantages of Data warehouse. [HBFC & KB(AP)-2018]
8. Describe five types of malware threats and mention five known countermeasures.
[Combined 3 bank (AP)-2018]
9. What is cloud computing? Describe between IaaS, PaaS & SaaS. Mention five
advantages & threats of cloud computing. [Combined 3 bank (AP)-2018]
10. What is cloud computing? How does it works? [Engineering college lecturer -2017]

Operating System
1. What are the computer Operating System and the application program? Give
examples of Operating System? [Uttara Bank(AP)-2019]
2. What is operating System? What are the main components of operating System?
[Competition Commition(P)-2019]
3. Difference between Multiprocessing and Multitasking. [ICT Ministry-2014]

4. Explain the functionalities of operating system. [ICT Ministry-2017]


5. Describe about Firewalls, Microcontroller, COCOMO , Query Optimization. [ICT
Ministry-2017]
6. What is main difference between Domain and Workgroup? [BB AP-2016]

Software Engineering
1. What is SDLC? Write down the step of SDLC. [BTV(AP)-2019]
2. What is the SCRUM method in software Development? [Desco-2019]
3. Difference between black box and white box testing. [Pally Sa.-2018]
4. What is software testing? Name of some testing tool. [IBBL-2017]
5. Differentiate between system software and application software. [Multi. Ministry-2017]

You might also like