IBPS SO IT Officer Scale-I Professional Knowledge 5-Option Standard

IBPS SO IT Officer Solved Papers

Master Computer Science & IT concepts: DBMS & SQL, Data Structures, Computer Networks, Operating Systems, Software Engineering, OOPs, and Network Security with detailed technical explanations.

0%
Score Tracker
Instant accuracy rate
0
Correct
0
Wrong
0
Attempted
Filter Professional Knowledge Questions

All IBPS SO IT PYQs / All Domains / All Topics

Select your option below. Marking scheme: +1.00 positive, -0.25 negative.

290 Questions Page 9 of 12
201

Which of the following statements about Third Normal Form (3NF) is true?

IBPS SO IT Main Exam Dated 29.01.2023 Database Management Systems (DBMS)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
202

Which of the following is an example of a bit-oriented protocol?

IBPS SO IT Main Exam Dated 29.01.2023 Computer Networks
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
203

In IPv4 Class C, what is the range of the first octet?

IBPS SO IT Main Exam Dated 29.01.2023 Computer Networks
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
204

Which of the following PDU units corresponds to the Transport and Network Layers in the OSI model?

IBPS SO IT Main Exam Dated 29.01.2023 Computer Networks
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
205

What will be the output of the following C program?

#include <stdio.h>
int main() {
    int a = 5, b = 10, c = 15;
    int result = (a > b) ? ((b > c) ? b : c) : ((a > c) ? a : c);
    printf("%d", result);
    return 0;
}
IBPS SO IT Main Exam Dated 29.01.2023 Programming & Data Structures (C)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
206

What is BitLocker?

IBPS SO IT Main Exam Dated 29.01.2023 Information & System Security
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
207

Which CPU register stores the address of the next instruction before it is fetched from memory?

IBPS SO IT Main Exam Dated 29.01.2023 Computer Organization & Architecture
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
208

In C Programming, the ternary operator is also called as:

IBPS SO IT Main Exam Dated 29.01.2023 Programming & Data Structures (C)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
209

Which of the following is a form of a snooping attack that involves unauthorized monitoring of network communications to capture sensitive information?

IBPS SO IT Main Exam Dated 29.01.2023 Network Security & Cryptography
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
210

Which of the following statements about offsite recovery strategies is correct?

IBPS SO IT Main Exam Dated 29.01.2023 Information Systems & Disaster Recovery
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
211

Which of the following is a general-purpose processing register?

IBPS SO IT Main Exam Dated 29.01.2023 Computer Organization & Architecture
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
212

The reserved words in C programming are called?

IBPS SO IT Main Exam Dated 29.01.2023 Programming & Data Structures (C)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
213

Which of the following testing types focuses on verifying individual components or modules of a software application?

IBPS SO IT Main Exam Dated 29.01.2023 Software Engineering
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
214

Consider the following code snippet:

#include <stdio.h>
int main() {
    char arr[] = "FGHJKJGF";
    char *p = arr;
    printf("%c\n", *(p + 3));
    return 0;
}

What is the output of the above program?

IBPS SO IT Main Exam Dated 29.01.2023 Programming & Data Structures (C)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
215

Consider the following C program:

#include <stdio.h>
void exampleFunction(int x, int y) {
    printf("x = %d, y = %d\n", x, y);
}
int main() {
    int a = 10;
    int b;
    exampleFunction(a, b);
    return 0;
}

What is the output of the above program?

IBPS SO IT Main Exam Dated 29.01.2023 Programming & Data Structures (C)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
216

Consider the following processes with their respective burst times and arrival times:

ProcessArrival Time (AT)Burst Time (BT)
$P_1$$0$$5$
$P_2$$2$$3$
$P_3$$4$$1$
$P_4$$6$$8$
$P_5$$8$$6$

Using the First-Come, First-Served (FCFS) scheduling algorithm, calculate the average waiting time and average turnaround time for the processes.

IBPS SO IT Main Exam Dated 29.01.2023 Operating Systems
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
217

Which communication mode allows data transmission in both directions simultaneously?

IBPS SO IT Main Exam Dated 29.01.2023 Computer Networks
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
218

Consider the following disk request sequence for I/O operations in a disk queue: $95, 180, 34, 119, 11, 123, 62, 64$.

The disk head is initially positioned at cylinder $50$. Calculate the total head movement to satisfy all the requests using FCFS disk scheduling.

IBPS SO IT Main Exam Dated 29.01.2023 Operating Systems
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
219

Which of the following is a NoSQL database?

IBPS SO IT Main Exam Dated 29.01.2023 Database Management Systems (DBMS)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
220

What is the height of an AVL tree with $12$ nodes, assuming the height/level of a single root node is $0$?

IBPS SO IT Main Exam Dated 29.01.2023 Data Structures & Algorithms
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
221

What is the purpose of the -n option in the Linux traceroute command?

IBPS SO IT Main Exam Dated 29.01.2023 Operating Systems & Networking
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
222

What type of VLAN / port configuration is used to carry traffic from multiple VLANs across a single link?

IBPS SO IT Main Exam Dated 29.01.2023 Computer Networks
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
223

Consider a network where a packet is sent from Host A to Host B. The packet has an initial hop limit of $10$. The packet passes through $3$ routers before reaching Host B. Each router decrements the hop limit by $1$. What is the remaining hop limit of the packet when it reaches Host B?

IBPS SO IT Main Exam Dated 29.01.2023 Computer Networks
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
224

What are the partitioning styles available in Windows operating systems?

IBPS SO IT Main Exam Dated 29.01.2023 Operating Systems
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
225

Which transport layer protocol is used by SMTP?

IBPS SO IT Main Exam Dated 29.01.2023 Computer Networks
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation