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 5 of 12
101

Which of the following is not a supervised machine learning algorithm?

IBPS SO IT Main Exam Dated 09.11.2025 Artificial Intelligence & Machine Learning
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
102

Which Python library is commonly used for data mining and machine learning tasks?

IBPS SO IT Main Exam Dated 09.11.2025 Data Science & Machine Learning
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
103

In BCNF, what should be true about the determinant in every functional dependency?

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

A bank account starts with a balance of $1500$. A transaction begins, a SAVEPOINT is set, $100$ is added to the account, then a ROLLBACK TO SAVEPOINT is performed, and finally a COMMIT is issued. What is the final account balance?

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

In data warehousing, a cuboid is used to represent:

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

Which of the following operations cannot be directly performed using pure Tuple Relational Calculus, compared to operations on relational tables?

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

What is the primary purpose of domain constraints in a relational database?

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

Which of the following is not a valid data type in the C++ programming language?

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

In object-oriented programming, what is the correct definition of a class?

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

Which concurrency control protocol prevents deadlock and ensures serializability?

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

A user transfers money from their bank account to a friend. The amount is debited from their account, but due to a system failure, the money is not credited to the friend’s account. Which database property is violated in this situation?

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

Which of the following set operations represents: "All rows that are in $R_1$ but not in $R_2$"?

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

Which Linux command is used to display the current working directory?

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

In Linux, which symbol or special variable is used to check the exit status of the last executed command?

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

In email communication, how are SMTP and POP3 different from each other?

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

What is the default port number used by Remote Desktop Protocol (RDP)?

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

To prevent infinite looping of packets in a network, a field in the IP header that is decremented at each router is called:

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

What is the main purpose of a heuristic function in artificial intelligence?

IBPS SO IT Main Exam Dated 09.11.2025 Artificial Intelligence & Machine Learning
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
119

Which SDLC model follows a sequential flow, where each phase must be completed before moving to the next?

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

Which of the following is a built-in feature of IPv6 that is not mandatory in IPv4?

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

In indirect addressing mode, what does the address field of an instruction contain?

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

What will be the output of the following Java code snippet that calculates the length of a string without using the built-in length() method?

public class StringLengthCalculator {
    public static int customStringLength(String str) {
        if (str == null) {
            throw new IllegalArgumentException("String cannot be null");
        }
        int length = 0;
        for (char c : str.toCharArray()) {
            length++;
        }
        return length;
    }
    public static void main(String[] args) {
        String testString = "Hello, World!";
        int length = customStringLength(testString);
        System.out.println(
            "The length of the string \"" +
            testString +
            "\" is: " +
            length
        );
    }
}
IBPS SO IT Main Exam Dated 28.01.2024 Object-Oriented Programming (Java)
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
123

Which process is used to convert a grayscale image into a binary image, and which edge detection algorithm is well known for using gradient calculation along with non-maximum suppression and hysteresis thresholding?

IBPS SO IT Main Exam Dated 28.01.2024 Digital Image Processing
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
124

Which grayscale conversion approach generates a grayscale image by assigning equal importance to all three RGB components?

IBPS SO IT Main Exam Dated 28.01.2024 Digital Image Processing
Technical Analysis
Click an option to evaluate
Select an option on the left to reveal the detailed technical analysis.
Technical Explanation
125

Which of the following statements correctly describe the return values of the fork() system call in a Unix-like operating system?

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