SlideShare a Scribd company logo
1 of 2
Download to read offline
Question Bank 2004- 2023 | Bank Special Stack IT Job Solution
Stack
IT
Question
Bank
|
01789741518,
01761719838
|
Buy
Book:
stackvaly.com
|
Online
Exam:
exam.stackvaly.com

largest spender and beneficiary from information
technology. This endeavors to relate the
international trends in it with the Indian banking
industry.
2
Bangladesh Bank
Exam Taker: IBA
Assistant Programmer
Marks: 200 Time: 1.30 h Date: 25.10.2019
[MCQ- MCQ= 64*1.25=80, Written-120(deprt-100, Non-20)]
Solved by: Stack IT
1. Write a c program to find max price from
20 items.
#include<stdio.h>
int main () {
int items [20];
int i, max;
printf ("Enter the 20 items price:");
for (i=0; i<20; i++) {
scanf ("%d”, &items[i]);
}
max= items [0];
for (i=0; i<20; i++) {
if(max<items[i])
max=items[i];
}
printf ("Max prices is: %d”, max);
return 0;
}
2. 10 bits number taken randomly, find the
probability at least 1 bit is zero.
Total number = 210
= 1024
Successive number = 1023
Probability = (1023/1024) = 0.99
3. What protection do you provide for your
computer from malware?
Look at eight additional ways you can protect
yourself from viruses and malware:
a)Keep your software up to date.
b)Don't click on links within emails.
c)Use free antivirus software.
d)Back up your computer.
e)Use a strong password.
f) Use a firewall.
g)Minimize downloads.
h)Use a pop-up blocker.
4. A company needs key person for DBMS.
What is his/her duty as key person?
A company key person is database administrator
for DBMS.
Duty as key person:
a) Schema definition
b) Storage structure and access method
definition
c) Schema and physical organization
modification
d) Integrity constraint specification
5. (12345) base 10 to (?) base 8.
(12345)10 = (30071)8
6. Two OSI layers which known as "flow
Control" which are those? Write them and
explain.
Flow control is generally implemented on two
layers Datalink Layer (Layer 2) and Transport
Layer (Layer 4).
[Note: (i). Data link layer may provide flow control
"on the wire". (ii). Network layer provides flow
control between routers by ICMP. The end
terminals usually do not use the network layer
barely. IP does not provide flow control. (iii).
Transport layer, more specifically TCP provides
flow control by a backtracking algorithm while
UDP does not. TCP has various flow and
congestion avoiding protocols, such as TCP Vegas.
So, when routers have flow control problems, it is
handled in the network layer, when end points have
this problem, it's handled in the transport layer.]
S
t
a
c
k
I
T
J
o
b
S
o
l
u
t
i
o
n
Question Bank 2004- 2023 | Bank Special Stack IT Job Solution
Stack
IT
Question
Bank
|
01789741518,
01761719838
|
Buy
Book:
stackvaly.com
|
Online
Exam:
exam.stackvaly.com

7. What is firewall? Explain its work. Draw a
LAN network and a firewall where firewall
will be situated.
Firewall-A firewall is software used to maintain
the security of a private network. Firewalls block
unauthorized access to or from private networks
and are often employed to prevent unauthorized
Web users or illicit software from gaining access to
private networks Connected to the Internet. A
firewall may be implemented using hardware,
software, or a combination of both.
Firewalls generally use two or more of the
following methods:
a) Packet Filtering: Firewalls filter packets that
attempt to enter or leave a network and either
accept or reject them depending on the
predefined set of filter rules.
b) Application Gateway: The application
gateway technique employs security methods
applied to certain applications such as Telnet
and File Transfer Protocol servers.
c) Circuit-Level Gateway: A circuit-level
gateway applies these methods when a
connection such as Transmission Control
Protocol is established and packets start to
move.
d) Proxy Servers: Proxy servers can mask real
network addresses and intercept every
message that enters or leaves a network.
e) Stateful Inspection or Dynamic Packet
Filtering: This method compares not just the
header information, but also a packet’s most
important inbound and outbound data parts.
These are then compared to a trusted
information database for characteristic
matches. This determines whether the
information is authorized to cross the firewall
into the network.
8. Focus writing- combating of Cybercrime in
Bangladesh.
9. What is SOAP?
SOAP (Simple Object Access Protocol) is a
message protocol that allows distributed elements
of an application to communicate. SOAP can be
carried over a variety of lower-level protocols,
including the web-related Hypertext Transfer
Protocol (HTTP).
10. Suppose, you are implementing “Overdraft
Account (OD)” class using java for a
banking app. An OD type account is opened
with an approved loan limit (ex 100000/-).
The account holder can deposit any amount
of money in the OD account at any time.
S/he can draw an amount of money from the
account (acn) until sufficient acn balance.
S/he allowed to draw money beyond his/her
acn balance if the total over-drawing
amount remains within the loan limit. A
java sketch for OD acn is given bellow &
code is expected to run in multi-threading
mode. (same code with run by different
counter in the blank)
Code:
public class ODAccount extends
BankAccount {
double limit;
public void ODAccount (double
setLimit) {
$this->balance= 0; //super
class has balance property
$this->limit= setLimit;
}
public void depositMoney (double
deposit Amount) {
balance= balance+
depositAmount;
public void drawMoney
(double drawAmount) throws
ODLimit Exceeded {
if (balance –
drawAmount>=-1*limit)
balance= balance-
drawAmount;
else throw new
OD Limit Exceeded ();
}
S
t
a
c
k
I
T
J
o
b
S
o
l
u
t
i
o
n

More Related Content

What's hot

Time and space complexity
Time and space complexityTime and space complexity
Time and space complexity
Ankit Katiyar
 
Nested loop in C language
Nested loop in C languageNested loop in C language
Nested loop in C language
ErumShammim
 

What's hot (20)

Bangladesh telecommunication regulatory commision
Bangladesh telecommunication regulatory commisionBangladesh telecommunication regulatory commision
Bangladesh telecommunication regulatory commision
 
2 phase locking protocol DBMS
2 phase locking protocol DBMS2 phase locking protocol DBMS
2 phase locking protocol DBMS
 
Compiler Design Unit 5
Compiler Design Unit 5Compiler Design Unit 5
Compiler Design Unit 5
 
Transmission Control Protocol (TCP)
Transmission Control Protocol (TCP)Transmission Control Protocol (TCP)
Transmission Control Protocol (TCP)
 
Mapping
MappingMapping
Mapping
 
Socket Programming
Socket ProgrammingSocket Programming
Socket Programming
 
Measures of query cost
Measures of query costMeasures of query cost
Measures of query cost
 
5. protocol layering
5. protocol layering5. protocol layering
5. protocol layering
 
Transport Layer Services : Multiplexing And Demultiplexing
Transport Layer Services : Multiplexing And DemultiplexingTransport Layer Services : Multiplexing And Demultiplexing
Transport Layer Services : Multiplexing And Demultiplexing
 
XML Databases
XML DatabasesXML Databases
XML Databases
 
TCP/IP and DNS
TCP/IP and DNSTCP/IP and DNS
TCP/IP and DNS
 
Chap 09 icmp
Chap 09 icmpChap 09 icmp
Chap 09 icmp
 
Data decomposition techniques
Data decomposition techniquesData decomposition techniques
Data decomposition techniques
 
Presentation on c structures
Presentation on c   structures Presentation on c   structures
Presentation on c structures
 
Time and space complexity
Time and space complexityTime and space complexity
Time and space complexity
 
Nested loop in C language
Nested loop in C languageNested loop in C language
Nested loop in C language
 
Dynamic ARP Inspection (DAI)
Dynamic ARP Inspection (DAI)Dynamic ARP Inspection (DAI)
Dynamic ARP Inspection (DAI)
 
Query trees
Query treesQuery trees
Query trees
 
Code generation
Code generationCode generation
Code generation
 
Memory Organization
Memory OrganizationMemory Organization
Memory Organization
 

Similar to Assistant Programmer, Bangladesh Bank

Analysis Of Internet Protocol ( IP ) Datagrams
Analysis Of Internet Protocol ( IP ) DatagramsAnalysis Of Internet Protocol ( IP ) Datagrams
Analysis Of Internet Protocol ( IP ) Datagrams
Emily Jones
 
COIT20262 Assignment 1 Term 1, 2018 Advanced Network Secur.docx
COIT20262 Assignment 1 Term 1, 2018 Advanced Network Secur.docxCOIT20262 Assignment 1 Term 1, 2018 Advanced Network Secur.docx
COIT20262 Assignment 1 Term 1, 2018 Advanced Network Secur.docx
clarebernice
 
Network And Network Address Translation
Network And Network Address TranslationNetwork And Network Address Translation
Network And Network Address Translation
Erin Moore
 

Similar to Assistant Programmer, Bangladesh Bank (20)

Managing microservices with Istio Service Mesh
Managing microservices with Istio Service MeshManaging microservices with Istio Service Mesh
Managing microservices with Istio Service Mesh
 
IRJET - Identification and Classification of IoT Devices in Various Appli...
IRJET -  	  Identification and Classification of IoT Devices in Various Appli...IRJET -  	  Identification and Classification of IoT Devices in Various Appli...
IRJET - Identification and Classification of IoT Devices in Various Appli...
 
COMPARATIVE STUDY BETWEEN VARIOUS PROTOCOLS USED IN INTERNET OF THING
COMPARATIVE STUDY BETWEEN VARIOUS  PROTOCOLS USED IN INTERNET OF THINGCOMPARATIVE STUDY BETWEEN VARIOUS  PROTOCOLS USED IN INTERNET OF THING
COMPARATIVE STUDY BETWEEN VARIOUS PROTOCOLS USED IN INTERNET OF THING
 
Banking and ATM networking reports
Banking and ATM networking reportsBanking and ATM networking reports
Banking and ATM networking reports
 
BANK MANAGEMENT SYSTEM report
BANK MANAGEMENT SYSTEM reportBANK MANAGEMENT SYSTEM report
BANK MANAGEMENT SYSTEM report
 
Analysis Of Internet Protocol ( IP ) Datagrams
Analysis Of Internet Protocol ( IP ) DatagramsAnalysis Of Internet Protocol ( IP ) Datagrams
Analysis Of Internet Protocol ( IP ) Datagrams
 
IRJET - Network Traffic Monitoring and Botnet Detection using K-ANN Algorithm
IRJET - Network Traffic Monitoring and Botnet Detection using K-ANN AlgorithmIRJET - Network Traffic Monitoring and Botnet Detection using K-ANN Algorithm
IRJET - Network Traffic Monitoring and Botnet Detection using K-ANN Algorithm
 
Cerita
CeritaCerita
Cerita
 
IRJET- Proof of Document using Multichain and Ethereum
IRJET- Proof of Document using Multichain and EthereumIRJET- Proof of Document using Multichain and Ethereum
IRJET- Proof of Document using Multichain and Ethereum
 
Cisco Activity
Cisco ActivityCisco Activity
Cisco Activity
 
Database Exam Help
Database Exam HelpDatabase Exam Help
Database Exam Help
 
Designing Internet of things
Designing Internet of thingsDesigning Internet of things
Designing Internet of things
 
COIT20262 Assignment 1 Term 1, 2018 Advanced Network Secur.docx
COIT20262 Assignment 1 Term 1, 2018 Advanced Network Secur.docxCOIT20262 Assignment 1 Term 1, 2018 Advanced Network Secur.docx
COIT20262 Assignment 1 Term 1, 2018 Advanced Network Secur.docx
 
Network And Network Address Translation
Network And Network Address TranslationNetwork And Network Address Translation
Network And Network Address Translation
 
DECENTRALIZED BLOCKCHAIN SERVICES USING CARDANO NETWORK
DECENTRALIZED BLOCKCHAIN SERVICES USING CARDANO NETWORKDECENTRALIZED BLOCKCHAIN SERVICES USING CARDANO NETWORK
DECENTRALIZED BLOCKCHAIN SERVICES USING CARDANO NETWORK
 
A study on practical uses of common Network protocols
A study on practical uses of common Network protocolsA study on practical uses of common Network protocols
A study on practical uses of common Network protocols
 
Banking and ATM networking reports
Banking and ATM networking reportsBanking and ATM networking reports
Banking and ATM networking reports
 
IRJET- Blockchain Technology a Literature Survey
IRJET- Blockchain Technology a Literature SurveyIRJET- Blockchain Technology a Literature Survey
IRJET- Blockchain Technology a Literature Survey
 
IOT introduction
IOT introductionIOT introduction
IOT introduction
 
Introduction-All 'bout IOT
Introduction-All 'bout IOTIntroduction-All 'bout IOT
Introduction-All 'bout IOT
 

More from Engr. Md. Jamal Uddin Rayhan

More from Engr. Md. Jamal Uddin Rayhan (9)

DESCO AE CSE Question Solution
DESCO AE CSE Question SolutionDESCO AE CSE Question Solution
DESCO AE CSE Question Solution
 
OSI Model Cheat Sheet
OSI Model Cheat SheetOSI Model Cheat Sheet
OSI Model Cheat Sheet
 
Bangladesh Bank Data entry control operator Question Solution.
Bangladesh Bank Data entry control operator Question Solution.Bangladesh Bank Data entry control operator Question Solution.
Bangladesh Bank Data entry control operator Question Solution.
 
Senior Officer , Pubali Bank Limited
Senior Officer , Pubali Bank LimitedSenior Officer , Pubali Bank Limited
Senior Officer , Pubali Bank Limited
 
Combined 2 Bank Compiled Post: ADA Date: 25.09.2021 Taker: AUST
Combined 2 Bank Compiled Post: ADA Date: 25.09.2021  Taker: AUSTCombined 2 Bank Compiled Post: ADA Date: 25.09.2021  Taker: AUST
Combined 2 Bank Compiled Post: ADA Date: 25.09.2021 Taker: AUST
 
Combined 2 Bank Compiled Post: SO(IT) Date: 25.09.2021 Taker: AUST
Combined 2 Bank Compiled Post: SO(IT)  Date: 25.09.2021  Taker: AUSTCombined 2 Bank Compiled Post: SO(IT)  Date: 25.09.2021  Taker: AUST
Combined 2 Bank Compiled Post: SO(IT) Date: 25.09.2021 Taker: AUST
 
Linux Command For Beginners 6 - copy commands for linux | BUET Pattern Job Pr...
Linux Command For Beginners 6 - copy commands for linux | BUET Pattern Job Pr...Linux Command For Beginners 6 - copy commands for linux | BUET Pattern Job Pr...
Linux Command For Beginners 6 - copy commands for linux | BUET Pattern Job Pr...
 
Titas gas sub-assistant engineer question pattern
Titas gas sub-assistant engineer question patternTitas gas sub-assistant engineer question pattern
Titas gas sub-assistant engineer question pattern
 
information security and backup system
information security and backup systeminformation security and backup system
information security and backup system
 

Recently uploaded

Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
poojakaurpk09
 
Call Girls Jayanagar Just Call 👗 9155563397 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 9155563397 👗 Top Class Call Girl Service Ban...Call Girls Jayanagar Just Call 👗 9155563397 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 9155563397 👗 Top Class Call Girl Service Ban...
only4webmaster01
 
Internship Report].pdf iiwmoosmsosmshkssmk
Internship Report].pdf iiwmoosmsosmshkssmkInternship Report].pdf iiwmoosmsosmshkssmk
Internship Report].pdf iiwmoosmsosmshkssmk
SujalTamhane
 
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men 🔝Nandyal🔝 Escorts...
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men  🔝Nandyal🔝   Escorts...➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men  🔝Nandyal🔝   Escorts...
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men 🔝Nandyal🔝 Escorts...
amitlee9823
 
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
amitlee9823
 
Call Girls Devanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Devanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Devanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Devanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
amitlee9823
 

Recently uploaded (20)

Dubai Call Girls Kiki O525547819 Call Girls Dubai Koko
Dubai Call Girls Kiki O525547819 Call Girls Dubai KokoDubai Call Girls Kiki O525547819 Call Girls Dubai Koko
Dubai Call Girls Kiki O525547819 Call Girls Dubai Koko
 
Presentation for the country presentation
Presentation for the country presentationPresentation for the country presentation
Presentation for the country presentation
 
Hot Call Girls |Delhi |Janakpuri ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Janakpuri ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Janakpuri ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Janakpuri ☎ 9711199171 Book Your One night Stand
 
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Bidadi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
 
Call Girls Jayanagar Just Call 👗 9155563397 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 9155563397 👗 Top Class Call Girl Service Ban...Call Girls Jayanagar Just Call 👗 9155563397 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 9155563397 👗 Top Class Call Girl Service Ban...
 
Internship Report].pdf iiwmoosmsosmshkssmk
Internship Report].pdf iiwmoosmsosmshkssmkInternship Report].pdf iiwmoosmsosmshkssmk
Internship Report].pdf iiwmoosmsosmshkssmk
 
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men 🔝Nandyal🔝 Escorts...
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men  🔝Nandyal🔝   Escorts...➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men  🔝Nandyal🔝   Escorts...
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men 🔝Nandyal🔝 Escorts...
 
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Personal Brand Exploration - Fernando Negron
Personal Brand Exploration - Fernando NegronPersonal Brand Exploration - Fernando Negron
Personal Brand Exploration - Fernando Negron
 
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
Guide to a Winning Interview May 2024 for MCWN
Guide to a Winning Interview May 2024 for MCWNGuide to a Winning Interview May 2024 for MCWN
Guide to a Winning Interview May 2024 for MCWN
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Sa...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Sa...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Sa...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Sa...
 
Call Girls Devanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Devanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Devanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Devanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
Résumé (2 pager - 12 ft standard syntax)
Résumé (2 pager -  12 ft standard syntax)Résumé (2 pager -  12 ft standard syntax)
Résumé (2 pager - 12 ft standard syntax)
 
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
 
Miletti Gabriela_Vision Plan for artist Jahzel.pdf
Miletti Gabriela_Vision Plan for artist Jahzel.pdfMiletti Gabriela_Vision Plan for artist Jahzel.pdf
Miletti Gabriela_Vision Plan for artist Jahzel.pdf
 
TEST BANK For An Introduction to Brain and Behavior, 7th Edition by Bryan Kol...
TEST BANK For An Introduction to Brain and Behavior, 7th Edition by Bryan Kol...TEST BANK For An Introduction to Brain and Behavior, 7th Edition by Bryan Kol...
TEST BANK For An Introduction to Brain and Behavior, 7th Edition by Bryan Kol...
 
Personal Brand Exploration ppt.- Ronnie Jones
Personal Brand  Exploration ppt.- Ronnie JonesPersonal Brand  Exploration ppt.- Ronnie Jones
Personal Brand Exploration ppt.- Ronnie Jones
 

Assistant Programmer, Bangladesh Bank

  • 1. Question Bank 2004- 2023 | Bank Special Stack IT Job Solution Stack IT Question Bank | 01789741518, 01761719838 | Buy Book: stackvaly.com | Online Exam: exam.stackvaly.com largest spender and beneficiary from information technology. This endeavors to relate the international trends in it with the Indian banking industry. 2 Bangladesh Bank Exam Taker: IBA Assistant Programmer Marks: 200 Time: 1.30 h Date: 25.10.2019 [MCQ- MCQ= 64*1.25=80, Written-120(deprt-100, Non-20)] Solved by: Stack IT 1. Write a c program to find max price from 20 items. #include<stdio.h> int main () { int items [20]; int i, max; printf ("Enter the 20 items price:"); for (i=0; i<20; i++) { scanf ("%d”, &items[i]); } max= items [0]; for (i=0; i<20; i++) { if(max<items[i]) max=items[i]; } printf ("Max prices is: %d”, max); return 0; } 2. 10 bits number taken randomly, find the probability at least 1 bit is zero. Total number = 210 = 1024 Successive number = 1023 Probability = (1023/1024) = 0.99 3. What protection do you provide for your computer from malware? Look at eight additional ways you can protect yourself from viruses and malware: a)Keep your software up to date. b)Don't click on links within emails. c)Use free antivirus software. d)Back up your computer. e)Use a strong password. f) Use a firewall. g)Minimize downloads. h)Use a pop-up blocker. 4. A company needs key person for DBMS. What is his/her duty as key person? A company key person is database administrator for DBMS. Duty as key person: a) Schema definition b) Storage structure and access method definition c) Schema and physical organization modification d) Integrity constraint specification 5. (12345) base 10 to (?) base 8. (12345)10 = (30071)8 6. Two OSI layers which known as "flow Control" which are those? Write them and explain. Flow control is generally implemented on two layers Datalink Layer (Layer 2) and Transport Layer (Layer 4). [Note: (i). Data link layer may provide flow control "on the wire". (ii). Network layer provides flow control between routers by ICMP. The end terminals usually do not use the network layer barely. IP does not provide flow control. (iii). Transport layer, more specifically TCP provides flow control by a backtracking algorithm while UDP does not. TCP has various flow and congestion avoiding protocols, such as TCP Vegas. So, when routers have flow control problems, it is handled in the network layer, when end points have this problem, it's handled in the transport layer.] S t a c k I T J o b S o l u t i o n
  • 2. Question Bank 2004- 2023 | Bank Special Stack IT Job Solution Stack IT Question Bank | 01789741518, 01761719838 | Buy Book: stackvaly.com | Online Exam: exam.stackvaly.com 7. What is firewall? Explain its work. Draw a LAN network and a firewall where firewall will be situated. Firewall-A firewall is software used to maintain the security of a private network. Firewalls block unauthorized access to or from private networks and are often employed to prevent unauthorized Web users or illicit software from gaining access to private networks Connected to the Internet. A firewall may be implemented using hardware, software, or a combination of both. Firewalls generally use two or more of the following methods: a) Packet Filtering: Firewalls filter packets that attempt to enter or leave a network and either accept or reject them depending on the predefined set of filter rules. b) Application Gateway: The application gateway technique employs security methods applied to certain applications such as Telnet and File Transfer Protocol servers. c) Circuit-Level Gateway: A circuit-level gateway applies these methods when a connection such as Transmission Control Protocol is established and packets start to move. d) Proxy Servers: Proxy servers can mask real network addresses and intercept every message that enters or leaves a network. e) Stateful Inspection or Dynamic Packet Filtering: This method compares not just the header information, but also a packet’s most important inbound and outbound data parts. These are then compared to a trusted information database for characteristic matches. This determines whether the information is authorized to cross the firewall into the network. 8. Focus writing- combating of Cybercrime in Bangladesh. 9. What is SOAP? SOAP (Simple Object Access Protocol) is a message protocol that allows distributed elements of an application to communicate. SOAP can be carried over a variety of lower-level protocols, including the web-related Hypertext Transfer Protocol (HTTP). 10. Suppose, you are implementing “Overdraft Account (OD)” class using java for a banking app. An OD type account is opened with an approved loan limit (ex 100000/-). The account holder can deposit any amount of money in the OD account at any time. S/he can draw an amount of money from the account (acn) until sufficient acn balance. S/he allowed to draw money beyond his/her acn balance if the total over-drawing amount remains within the loan limit. A java sketch for OD acn is given bellow & code is expected to run in multi-threading mode. (same code with run by different counter in the blank) Code: public class ODAccount extends BankAccount { double limit; public void ODAccount (double setLimit) { $this->balance= 0; //super class has balance property $this->limit= setLimit; } public void depositMoney (double deposit Amount) { balance= balance+ depositAmount; public void drawMoney (double drawAmount) throws ODLimit Exceeded { if (balance – drawAmount>=-1*limit) balance= balance- drawAmount; else throw new OD Limit Exceeded (); } S t a c k I T J o b S o l u t i o n