Bangladesh Bank, AME/AE (IT), 2026
Bangladesh Bank • Year 2026
Bangladesh Bank
💼Post Name: Assistant Engineer (IT) / AME 📅Exam Date: 08-May-2026
Bangladesh Bank, Assistant Director(ICT), 2025 (MCQ)
Bangladesh Bank
Post: Assistant Director (ICT)
Exam Date: 07.02.2025, Exam Taker: FBS

Here Total Question: 49
To show all question with answer click: See Answer or take exam

1.
Find output-

int fun(int *p) {
*p = *p + 10;
return *p;
}
int main() {
int x = 5;
cout << fun(&x);
return 0;
}

2.
Find output

int main() {
int x = 3, y = 2;
if (x == 3)
y = 2;
else
y = 3;
cout << x << " " << y << endl;
return 0;
}

3.
Which one is a Universal Logic Gate?
4.
Which data structure is preferred for Priority Queue?
5.
What is the Work of a Rectifier?
6.
A to B transfer balance but not sent to B? Which property in ACID is responsible?
7.
What is the 2’s complement of (67)₁₀
8.
What does inductance depend on?
9.
Zener diode is a ______ conducting device.
10.
Which of the following does NOT achieve encapsulation?
11.
Which algorithm is used in email security?
12.
In the given circuit, resistors of 10Ω, 20Ω, and 30Ω are connected in parallel, and 60V is applied. What is the equivalent current?
13.
A process needs I/O operations, it switches to ______.
14.
Which of the following is NOT a web server?
15.
Which clause is executed first in an SQL query?
16.
What should be true for a Zener Diode?
17.
Which of the following is a DML (Data Manipulation Language) command?
18.
What kind of encryption is used for securing emails in transit?
19.
Digital Signature uses which algorithm?
20.
What does HTTP Status Code 500 indicate?
21.
Which data structure is best suited for implementing a scheduler in an operating system?
22.
Priority Scheduling (Non-Preemptive) with with No Arrival Time Consider the following set of processes with respective burst time and priority. (lower number = higher priority). What is the Average turnaround time?

ProcessBurst Time (BT)Priority
P1103
P211
P324
P415
P552

23.
What is the major drawback of Waterfall Model?
24.
Which of the following is a command of Data Definition Language (DDL)?
25.
Which connect the two Seas in Suez Canal?
26.
Which protocol is primarily used to securely transfer files over the internet?
27.
Who won Nobel Peace Prize in 2024?
28.
The highest peak in Bangladesh is —
29.
Strasbourg belongs to which country?
30.
A pipe can fill a tank in 4 hours, and another pipe can fill it in 6 hours. How long will they take together?
31.
A man goes 5 meters north, then 3 meters east, and then 2 meters south. What is the distance from the starting point?
32.
Mr. X uses 30% of his salary for one expense, 20% for another, and 10% for another. Remaining amount is 12,000 Taka. What is his total salary?
33.
The father’s age is 36 years. Son’s age is 16. How many years ago was the father’s age three times the son’s age?
34.
There are 8 balls, and one of them is heavier than the other 7. How many weighings are required to guarantee finding the heavier ball?
35.
Which of the following is an application of Queue data structure?
36.
Which operator should be preferred to overload as a global function rather than a member method?
37.
What are the advantages of Linear Search over Binary Search?
38.
Integration testing is the process of testing the ______ between two software units or modules.
39.
Digital signature uses which algorithm for encryption?
40.
What is Docker Hub and Docker?
41.
An IP address is given 192.168.3.0, need 254 usable hosts. What is the CIDR value and subnet mask?
42.
Which one makes data access from a database faster?
43.
Which ACID property ensures that a transaction, once committed, will remain permanent even after a system failure?
44.
Who is first ICC ODI men’s World Cup winner captain?
45.
Which sorting algorithm guarantees O(n log n) time complexity in the worst case?
46.
What is the worst case time complexity of inserting n elements into an empty linked list, if the linked list needs to be maintained in sorted order?
47.
Which one of the following is an application of Stack Data Structure?
48.
What is the best way to implement priority queue?
49.
Which device is needed to convert AC to DC?
Bangladesh Bank, Assistant Director (ICT), 2025
Bangladesh Bank • Year 2025
Bangladesh Bank
💼Post Name: Assistant Director (ICT) 📅Exam Date: 07-Feb-2025
Bangladesh Bank, Assistant Programmer, 2023 (MCQ)
Bangladesh Bank
Post: Assistant Programmer
Exam Date: 03.02.2023, Exam Taker: BIBM

Here Total Question: 25
To show all question with answer click: See Answer or take exam

1.
print(9 // 2)
2.
Which of the following operators cannot be overloaded in C/C++?
3.
Assume that the size of an integer is 4 bytes. Predict the output of the following program:


#include
int main() {
int i = 12;
int j = sizeof(i++);
printf("%d %d", i, j); return 0;
}

4.
Which of the following algorithm design techniques is used in finding all pairs of shortest distances in a graph?
5.
Access time of the symbolic table will be logarithmic if it is implemented by-
6.
When was International Mother Language Day declared by UNESCO?
7.
If the radius is increased by 100%, by how much will the area of the circle be increased?
8.
Which data structure allows insertion and deletion of elements from both ends?
9.
Which of the following belongs to the algorithm paradigm?
10.
What is the result of compiling and running the following code?

public class Test {
public static void main(String[] args) {
int[] a = new int[0];
System.out.print(a.length);
}
}

11.
World environment day is celebrated on _____ of every year.
12.
In a complete k-array, every internal node has exactly k children. The number of leaves in such a tree with n internal nodes is-
13.
The time taken by NP-class sorting algorithm is-
14.
Determine Output:

void main() {
struct xx {
int x=3;
char name[] = "hello";
};
struct xx *s = malloc(sizeof(struct xx));
printf("%d", s->x);
printf("%s", s->name);
}

15.
What is the complexity of Merge sort?
16.
Which of the following is a non-linear data structure?
17.
Which of the following is not the required condition for a binary search algorithm?
18.
Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements?
19.
The _____ system may manage a high degree of interaction between processes and is very useful for high-speed and real-time processing.
20.
Table employee has 10 records. It has a non-NULL SALARY column which is also UNIQUE. The SQL statement: SELECT COUNT (*) FROM employee WHERE SALARY > ALL (SELECT SALARY FROM EMPLOYEE);
21.
Design pattern for hierarchical structure is _____
22.
How many addresses are there in the network 200.10.10.10/20?
23.
Which is suitable subnet mask for 200 hosts?
24.
Determine Output:

void main() {
int i=i++, j=j++, k=k++;
printf("%d %d %d", i, j, k);
}

25.
The IPv4 is encapsulated to IPv6 which is known as _____.
Bangladesh Bank, Assistant Maintenance Engineer, 2023 (MCQ)
Bangladesh Bank
Post: Assistant Maintenance Engineer
Exam Date:04/02/ 2023, Exam Taker: BIBM

Here Total Question: 26
To show all question with answer click: See Answer or take exam

1.
Which country is known as the 'Rainbow Nation'?
2.
Which one of the following is related to the services provided by the cloud?
3.
How many steps are in the waterfall model?
4.
Which is the third largest economic country?
5.
Where is data warehousing used?
6.
Which of the following is protected by copyright ACT?
7.
A basic memory storage element in a digital system is:
8.
What is the use of data cleaning?
9.
The greatest negative number which can be stored in a computer that has 8-bits work length and uses 2's complement arithmetic is:
10.

320 + 320 + 320=?

11.
Who won the Ballon d'Or in 2022?
12.
Small logical units where data warehouses hold large amounts of data is known as:
13.
Which of the following is an essential process in which intelligent methods are applied to extract data patterns?
14.
Two resistors R1 and R2 are connected in parallel with R1
15.
What type of computing technology refers to services and applications that typically run on a distributed network through virtualized resources?
16.
Cloud Computing architecture is a combination of:
17.
Service that generally focuses on the hardware following which one of the following services models?
18.
Which of the following pairs is an example of intra-domain routing protocols?
19.
Which of the following cannot be used as a public IP address?
20.
Which one of the following cloud concepts is related to sharing and pooling the resources?
21.
Which command loads a new version of the Cisco IOS into a router?
22.
Which of the following provides the ability to query information from the database and insert tuples into, delete tuples from, and modify tuples in the database?
23.
The lead character in the film 'The Bandit Queen' has been played by:
24.
A CPU generates 32-bit virtual addresses. The page size is 4 KB. The processor has a translation look-aside buffer (TLB) which can hold a total of 128 page table entries and is 4-way set associative. The minimum size of the TLB tag is:
25.
Page fault occurs when:
26.
When a host on network A sends a message to a host on network B, which address does the router look at?
Bangladesh Bank, Assistant Maintenance Engineer, 2023

You must subscribe & Login to view more.

Don’t have an account? Register

Or your subscription is under review by admin. Please message on WhatsApp / Telegram.

Bangladesh Bank, Assistant Programmer, 2023
Bangladesh Bank • Year 2023
Bangladesh Bank
💼Post Name: Assistant Programmer 📅Exam Date: 03-Feb-2024

Leave a Comment

WhatsApp Telegram Messenger