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 1 of 12
1

A packet of size $L$ bits is transmitted from a source to a destination through $N$ intermediate routers using store-and-forward packet switching. Each link has a transmission rate of $R$ bits per second. Ignoring propagation, processing, and queuing delays, what is the total transmission delay?

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

Which of the following operations are valid on pointers in C++?

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

What is the time complexity of the classical Dynamic Programming approach using nested loops for the Longest Increasing Subsequence (LIS) problem?

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

Which file mode in Python is primarily used to append new content to an existing file without deleting the previous data?

IBPS SO IT Main Exam Dated 14.12.2024 Programming Languages (Python)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
5

In C++, which of the following correctly describes the purpose of endl and setw?

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

Which Linux command option is commonly used with ls to display files sorted by their last modified time?

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

Which of the following is NOT a valid file system format used in operating systems?

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

Which OLAP operation is used to extract a smaller subset of data from a multidimensional data cube by selecting specific dimension values?

IBPS SO IT Main Exam Dated 14.12.2024 Data Warehousing & Mining
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
9

Which type of testing in the Software Development Life Cycle (SDLC) is primarily performed to verify that the software satisfies business and compliance requirements?

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

Which data warehouse schema is designed such that multiple fact tables share common dimension tables?

IBPS SO IT Main Exam Dated 14.12.2024 Data Warehousing & Mining
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
11

Which OOP concept focuses on hiding internal implementation details and exposing only the necessary functionality to the user?

IBPS SO IT Main Exam Dated 14.12.2024 Object-Oriented Programming (OOP)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
12

What will be the output of the following Python code?

names = ["Aman", "Rahul", "Peter"]
names.insert(1, "John")
print(names[1])
IBPS SO IT Main Exam Dated 14.12.2024 Programming Languages (Python)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
13

What will be the output of the following Python code?

a = (1, 2, 3, 4, 5)
print(a[-4:-1])
IBPS SO IT Main Exam Dated 14.12.2024 Programming Languages (Python)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
14

Which of the following statements correctly distinguishes Composition from Aggregation in Object-Oriented Programming (OOP)?

IBPS SO IT Main Exam Dated 14.12.2024 Object-Oriented Programming (OOP)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
15

What is the primary use of a global variable in C++?

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

What will be the output of the following C code?

#include <stdio.h>
int main() {
    int a = 1;
    a += 3;
    printf("%d", a + a);
    return 0;
}
IBPS SO IT Main Exam Dated 14.12.2024 Programming & Data Structures
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
17

Which of the following is commonly used in programming languages to store and represent a sequence of characters?

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

Which of the following is syntactically valid in a standard Bash shell script for iterating through a list of values using a for loop?

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

Which command in the Windows Recovery Environment is specifically used to repair the Master Boot Record?

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

Given Python Code:

import re
text = "IBPS_SO_IT_2024"
result = re.findall(r'[A-Z]+', text)
print(result[1])

What will be the output of the above code?

IBPS SO IT Main Exam Dated 14.12.2024 Programming Languages (Python)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
21

Which operator is used in Python to directly check whether a key exists in a dictionary?

IBPS SO IT Main Exam Dated 14.12.2024 Programming Languages (Python)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
22

Which of the following is used in Python to access command-line arguments passed to a program?

IBPS SO IT Main Exam Dated 14.12.2024 Programming Languages (Python)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
23

Next-Generation Firewalls (NGFW) primarily belong to which generation of firewall technology?

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

Which security approach permits only predefined approved inputs or entities while rejecting all others by default?

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

Which of the following SQL queries correctly selects records where the First_Name contains a specific pattern, the Last_Name also matches a pattern using LIKE, and the City does not match a given pattern using NOT LIKE?

IBPS SO IT Main Exam Dated 14.12.2024 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