SlideShare a Scribd company logo
Bangladesh
Telecommunicaiton
Compnay Limited
Written Part
Exam 1: AM-2021
Exam 2: AM-2017
S
E
T
7
Bangladesh Telecommunicaiton Company Limited
Stack
IT
Question
Bank
|
01789741518,
01761719838
|
Buy
Book:
stackvaly.com
|
Online
Exam:
exam.stackvaly.com

BTCL
Recruitment Test-2021
Assistant Manager (Technical)
Date: 05-02-2021 Exam Taker: BUET
1. Find Rab? [Stack IT Job Solution-1341]
2. Determine the load impedance ZL that maximizes the
average power drawn from the circuit of Figure.(2).
What is the maximum average power? [Stack IT Job
Solution-1358]
3. Sketch the time Variation of output voltage(VoVst)
for given input voltage Vi. Assume Vz =3.
4. The measured equivalent DC Resistance between two
line for the HT winding of a 11/0.415kv 200kva, 3φ Δ-Y
Conductor distribution Transformer is 6 ohm at 200
C .
Calculate the DC Resistance of each phase winding in
the HT Side of Transformer for 750
C. Where
temperature co efficient α =0.00393/0
C [Stack IT Job
Solution-1398]
5. Find Vo/Vin [Stack IT Job Solution-1312]
6. Consider PCM system with a uniform quantize at
step size 2 v . The input is a sinusoidal signal with
amplitude of 10v. Calculate the signal to quantification
noise ration in dB and number of bits per sample to be
used in the system. [Stack IT Job Solution-1604]
7. Assume a TDMA Communication system having 8
transmitter-Receiver pairs. Each is sampled at 8khz that
generated 16 bit per sample. If two synchronous bits are
used in each frame. Calculate the data rate of the
TDMA Link. [Stack IT Job Solution-1597]
8. Where are the Low loss transmission windows of
silicon based optical fiber and which window is the most
popular in communication and wave. Draw diagram of
a long haul WDM Transmission system.
9. A 1550nm fiber optic transmission Link if of 50km
length without repeating with a single mode fiber having
loss of 0.2dB /km. The fiber is joined every two km with
conductors each with 0.5dB loss. Determine the
minimum average power which should be lunched in to
the fiver in order to Tarantian an average optical power
level of 10 micro-Watt at the receiver. [Stack IT Job
Solution-1610]
10.Identify the Protocols
1. Sending Mail from sender computer to
receivers mail server.
2. Dynamically assign IP Address
3. IP Address to MAC Address
4. Send error to the source ip of the originating
packet.
Solution:
1. Sending Mail from sender computer to receivers
mail server. -SMTP
2. Dynamically assign IP Address-DHCP
3. IP Address to MAC Address-ARP
4. Send error to the source ip of the originating
packet.-ICMP
11. An IP Address 192.168.10.0/23. Find- [Stack IT
Job Solution-1461]
1. Subnet Mask
2. Unique ID(Host)
3. Broadcast ID
4. Last usable host address.
12. Write a function sumdigits to find output like below
Input: 123
Output: 6
#include <stdio.h>
int main()
{
int n, sum;
printf("Enter an integern");
scanf("%d", &n);
sum= sumdigits(n);
Bangladesh Telecommunicaiton Company Limited
Stack
IT
Question
Bank
|
01789741518,
01761719838
|
Buy
Book:
stackvaly.com
|
Online
Exam:
exam.stackvaly.com

printf("Sum of digits of %d = %dn", n, sum);
return 0;
}
Solution:
int sumdigits(int num){
if(num==0)
return 0;
else
return num%10+sumdigits(num/10);
}
13. For the following description of various IP
networking protocols write down the protocol name and
its full form in the following table:
Description Answer
Sending mail from sender
computer to receivers
mail server
SMTP- Simple Mail
Transfer Protocol
Network management
protocol used to automate
the process of configuring
devices on IP networks
DHCP- Dynamic Host
Configuration Protocol
Mapping a dynamic
internet protocol address
address (IP address) to a
permanent physical
machine address in a local
area network(LAN)
ARP- Address Resulation
Protocol
Messages are typically
used for diagnostic or
control purpose or
generated in response to
errors in IP operations
ICMP- Internet Control
Message Protocol
Bangladesh Telecommunications Company Limited
(BTCL)
Assistant Engineer (CSE)-2017
Exam Taker-BUET; Exam Date: 2017
Total Marks-100[Dept. 40 Written, Non Dept. 60 MCQ]
1. Design 4x1 MUX with two selection line & 4 input
(A,B,C,D).
2. Find the smallest and second smallest elements in an
array.
3. Salesperson (ID, Name, Age, Salary), Customer (ID,
Name, City, Industry, Type) Orders (Number,
order_date, cust_id, salesperson_id, Amount). Given
table above find the following:
a) The names of all salespeople that have an order
with Samsonic.
b) The names of all salespeople that do not have
any order with Samsonic.
c) The name of all salespeople that have 2 or more
orders.
4. What is pipelining? Explain execution stages?
5. Linux command explain with example: mkdir, passwd,
telnet, cat, Is, ping, su, nslookup.
6. Find the output of the following program
#include<stdio.h>
#define N 7
int main() {
Char str[] = “abpqxn”;
int i = 0;
for(i=0; i<N-2; i++)
if(i%2)
printf(“%c”, str[i]++);
else
printf(“%c”, str[i]--);
return 0;
}
7. What’s MAC flood in switch? How to prevent the MAC
Flooding Attack?
8. What are the disadvantages of manual/static IP? Name
the protocol of dynamic IP assigning. DHCP how
work?
9. What is query to display even rows from the employees
table?
10. How to get distinct records from the employees table
without using distinct keyword.
11. Write an SQL query to print the name of employees
having the highest salary in each department.
12. Subnet the class C IP address 195.1.1.0 So that you
have at least 2 subnets each subnet must have room for
48 hosts. What are the two possible subnet masks?
13. (a) The attenuation of a signal is 10dB. What is the
final signal power of it was originally 5W?
(b) A signal has passed through three cascaded
amplifiers, each with a 4dB gain.
(c) If the bandwidth of the channel is 5Kbps, how
long does it take to send a frame of 100000 bits
out of this device?
14. Given an IP address 10.2.3.20/22, Find out the number
of host and subnet mask.
15. Write a program to find out the minimum number from
a series.
16. Using pipeline calculate the value of fetch and
execution cycle.
17. Given a database table with some column
a) find out the min salary from table
b) find out a matched string
18) Probably a SQL query
a) show the branch name with the minimum balance
b) select all dept_name, roll from Student
Bangladesh Telecommunicaiton Company Limited
Stack
IT
Question
Bank
|
01789741518,
01761719838
|
Buy
Book:
stackvaly.com
|
Online
Exam:
exam.stackvaly.com

More Related Content

What's hot

Xilinx Cool Runner Architecture
Xilinx Cool Runner ArchitectureXilinx Cool Runner Architecture
Xilinx Cool Runner Architecture
dragonpradeep
 
Electronics Notice Board Notice board using Wi-Fi Report
Electronics Notice Board Notice board using Wi-Fi ReportElectronics Notice Board Notice board using Wi-Fi Report
Electronics Notice Board Notice board using Wi-Fi Report
Vaibhav Pandey
 
Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051
Maulik Sanchela
 
Detection of fault location in underground cable using arduino
Detection of fault location in underground cable using arduinoDetection of fault location in underground cable using arduino
Detection of fault location in underground cable using arduino
Chirag Lakhani
 
2. Internet of Things - A Market Perspective
2. Internet of Things - A Market Perspective2. Internet of Things - A Market Perspective
2. Internet of Things - A Market Perspective
Jitendra Tomar
 
Programmable Load Shedding for the utility department
Programmable Load Shedding for the utility departmentProgrammable Load Shedding for the utility department
Programmable Load Shedding for the utility department
Mukund Hundekar
 
IoT based Smart board for Displaying and Forwarding notices using Raspberry Pi
IoT based Smart board for Displaying and Forwarding notices using Raspberry PiIoT based Smart board for Displaying and Forwarding notices using Raspberry Pi
IoT based Smart board for Displaying and Forwarding notices using Raspberry Pi
Sinthana Sambandam
 
PROJECT REPORT ON Home automation using by Bluetooth
 PROJECT REPORT ON Home automation using by Bluetooth PROJECT REPORT ON Home automation using by Bluetooth
PROJECT REPORT ON Home automation using by Bluetooth
Aakashkumar276
 
Signals and systems 2e oppenheim solutions
Signals and systems 2e oppenheim solutionsSignals and systems 2e oppenheim solutions
Signals and systems 2e oppenheim solutions
rbatec
 
Design and Develop SQL DDL statements which demonstrate the use of SQL objec...
 Design and Develop SQL DDL statements which demonstrate the use of SQL objec... Design and Develop SQL DDL statements which demonstrate the use of SQL objec...
Design and Develop SQL DDL statements which demonstrate the use of SQL objec...
bhavesh lande
 
SMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATIONSMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATION
Eklavya Sharma
 
RTOS Basic Concepts
RTOS Basic ConceptsRTOS Basic Concepts
RTOS Basic Concepts
Pantech ProLabs India Pvt Ltd
 
IRJET- Design and Development of Underground Cable Fault Detection and Locali...
IRJET- Design and Development of Underground Cable Fault Detection and Locali...IRJET- Design and Development of Underground Cable Fault Detection and Locali...
IRJET- Design and Development of Underground Cable Fault Detection and Locali...
IRJET Journal
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino
AMIT SANPUI
 
Voice assistant ppt
Voice assistant pptVoice assistant ppt
Voice assistant ppt
AkashKumbhar18
 
Home automation using_pc
Home automation using_pcHome automation using_pc
Home automation using_pc
Sumit Sonawane
 
Bsnl training by keshav
Bsnl training  by keshavBsnl training  by keshav
Bsnl training by keshav
Keshav Katiyar
 
Electronic Notice Board Using Raspberry Pi and Android Phone
Electronic Notice Board Using Raspberry Pi and Android PhoneElectronic Notice Board Using Raspberry Pi and Android Phone
Electronic Notice Board Using Raspberry Pi and Android Phone
Brijender k
 
BSNL Industrial Training
BSNL Industrial Training BSNL Industrial Training
BSNL Industrial Training
Moulik .
 
Smart home automation system
Smart home automation systemSmart home automation system
Smart home automation system
Pawan Kumar Ganjhu
 

What's hot (20)

Xilinx Cool Runner Architecture
Xilinx Cool Runner ArchitectureXilinx Cool Runner Architecture
Xilinx Cool Runner Architecture
 
Electronics Notice Board Notice board using Wi-Fi Report
Electronics Notice Board Notice board using Wi-Fi ReportElectronics Notice Board Notice board using Wi-Fi Report
Electronics Notice Board Notice board using Wi-Fi Report
 
Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051
 
Detection of fault location in underground cable using arduino
Detection of fault location in underground cable using arduinoDetection of fault location in underground cable using arduino
Detection of fault location in underground cable using arduino
 
2. Internet of Things - A Market Perspective
2. Internet of Things - A Market Perspective2. Internet of Things - A Market Perspective
2. Internet of Things - A Market Perspective
 
Programmable Load Shedding for the utility department
Programmable Load Shedding for the utility departmentProgrammable Load Shedding for the utility department
Programmable Load Shedding for the utility department
 
IoT based Smart board for Displaying and Forwarding notices using Raspberry Pi
IoT based Smart board for Displaying and Forwarding notices using Raspberry PiIoT based Smart board for Displaying and Forwarding notices using Raspberry Pi
IoT based Smart board for Displaying and Forwarding notices using Raspberry Pi
 
PROJECT REPORT ON Home automation using by Bluetooth
 PROJECT REPORT ON Home automation using by Bluetooth PROJECT REPORT ON Home automation using by Bluetooth
PROJECT REPORT ON Home automation using by Bluetooth
 
Signals and systems 2e oppenheim solutions
Signals and systems 2e oppenheim solutionsSignals and systems 2e oppenheim solutions
Signals and systems 2e oppenheim solutions
 
Design and Develop SQL DDL statements which demonstrate the use of SQL objec...
 Design and Develop SQL DDL statements which demonstrate the use of SQL objec... Design and Develop SQL DDL statements which demonstrate the use of SQL objec...
Design and Develop SQL DDL statements which demonstrate the use of SQL objec...
 
SMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATIONSMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATION
 
RTOS Basic Concepts
RTOS Basic ConceptsRTOS Basic Concepts
RTOS Basic Concepts
 
IRJET- Design and Development of Underground Cable Fault Detection and Locali...
IRJET- Design and Development of Underground Cable Fault Detection and Locali...IRJET- Design and Development of Underground Cable Fault Detection and Locali...
IRJET- Design and Development of Underground Cable Fault Detection and Locali...
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino
 
Voice assistant ppt
Voice assistant pptVoice assistant ppt
Voice assistant ppt
 
Home automation using_pc
Home automation using_pcHome automation using_pc
Home automation using_pc
 
Bsnl training by keshav
Bsnl training  by keshavBsnl training  by keshav
Bsnl training by keshav
 
Electronic Notice Board Using Raspberry Pi and Android Phone
Electronic Notice Board Using Raspberry Pi and Android PhoneElectronic Notice Board Using Raspberry Pi and Android Phone
Electronic Notice Board Using Raspberry Pi and Android Phone
 
BSNL Industrial Training
BSNL Industrial Training BSNL Industrial Training
BSNL Industrial Training
 
Smart home automation system
Smart home automation systemSmart home automation system
Smart home automation system
 

Similar to BTCL Assistant Manager Previous Year Question by Stack IT Job Solution

acn-practical_manual-19-20-1 final.pdf
acn-practical_manual-19-20-1 final.pdfacn-practical_manual-19-20-1 final.pdf
acn-practical_manual-19-20-1 final.pdf
Qual4
 
Thesis of sdh
Thesis of sdhThesis of sdh
Thesis of sdh
Mesbah-Ul Islam
 
Ccna guide
Ccna guideCcna guide
Ccna guide
ccnaguide
 
Ccna discovery
Ccna discoveryCcna discovery
Ccna discovery
ccnaguide
 
Ccna exam 640 802
Ccna exam 640 802Ccna exam 640 802
Ccna exam 640 802
ccnaguide
 
Ccna final exam
Ccna final examCcna final exam
Ccna final exam
ccnaguide
 
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Mumbai B.Sc.IT Study
 
Free CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdfFree CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdf
Networkershome
 
Networking basics
Networking basicsNetworking basics
Networking basics
Sridhar Baithi
 
Ccna 1 chapter 9 v4.0 answers 2011
Ccna 1 chapter 9 v4.0 answers 2011Ccna 1 chapter 9 v4.0 answers 2011
Ccna 1 chapter 9 v4.0 answers 2011
Dân Chơi
 
Computer network
Computer networkComputer network
Computer network
Gaurav Rawat
 
Computer network
Computer networkComputer network
Computer network
Gaurav Rawat
 
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...
Mumbai B.Sc.IT Study
 
Ccna network simulator
Ccna network simulatorCcna network simulator
Ccna network simulator
ccnaguide
 
Ccna pdf
Ccna pdfCcna pdf
Ccna pdf
ccnaguide
 
Lecture 06
Lecture 06Lecture 06
Lecture 06
Naveen Shivegowda
 
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answers
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answersCcnav5.org ccna 1-v50_itn_practice_final_exam_answers
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answers
Đồng Quốc Vương
 
Ccna dumps
Ccna dumpsCcna dumps
Ccna dumps
ccnaguide
 
IRJET- Power Line Carrier Communication
IRJET- Power Line Carrier CommunicationIRJET- Power Line Carrier Communication
IRJET- Power Line Carrier Communication
IRJET Journal
 
20IT204-COA-Lecture 18.ppt
20IT204-COA-Lecture 18.ppt20IT204-COA-Lecture 18.ppt
20IT204-COA-Lecture 18.ppt
PerumalPitchandi
 

Similar to BTCL Assistant Manager Previous Year Question by Stack IT Job Solution (20)

acn-practical_manual-19-20-1 final.pdf
acn-practical_manual-19-20-1 final.pdfacn-practical_manual-19-20-1 final.pdf
acn-practical_manual-19-20-1 final.pdf
 
Thesis of sdh
Thesis of sdhThesis of sdh
Thesis of sdh
 
Ccna guide
Ccna guideCcna guide
Ccna guide
 
Ccna discovery
Ccna discoveryCcna discovery
Ccna discovery
 
Ccna exam 640 802
Ccna exam 640 802Ccna exam 640 802
Ccna exam 640 802
 
Ccna final exam
Ccna final examCcna final exam
Ccna final exam
 
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
 
Free CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdfFree CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdf
 
Networking basics
Networking basicsNetworking basics
Networking basics
 
Ccna 1 chapter 9 v4.0 answers 2011
Ccna 1 chapter 9 v4.0 answers 2011Ccna 1 chapter 9 v4.0 answers 2011
Ccna 1 chapter 9 v4.0 answers 2011
 
Computer network
Computer networkComputer network
Computer network
 
Computer network
Computer networkComputer network
Computer network
 
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...
 
Ccna network simulator
Ccna network simulatorCcna network simulator
Ccna network simulator
 
Ccna pdf
Ccna pdfCcna pdf
Ccna pdf
 
Lecture 06
Lecture 06Lecture 06
Lecture 06
 
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answers
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answersCcnav5.org ccna 1-v50_itn_practice_final_exam_answers
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answers
 
Ccna dumps
Ccna dumpsCcna dumps
Ccna dumps
 
IRJET- Power Line Carrier Communication
IRJET- Power Line Carrier CommunicationIRJET- Power Line Carrier Communication
IRJET- Power Line Carrier Communication
 
20IT204-COA-Lecture 18.ppt
20IT204-COA-Lecture 18.ppt20IT204-COA-Lecture 18.ppt
20IT204-COA-Lecture 18.ppt
 

More from Engr. Md. Jamal Uddin Rayhan

DESCO AE CSE Question Solution
DESCO AE CSE Question SolutionDESCO AE CSE Question Solution
DESCO AE CSE Question Solution
Engr. Md. Jamal Uddin Rayhan
 
OSI Model Cheat Sheet
OSI Model Cheat SheetOSI Model Cheat Sheet
OSI Model Cheat Sheet
Engr. Md. Jamal Uddin Rayhan
 
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.
Engr. Md. Jamal Uddin Rayhan
 
Assistant Programmer, Bangladesh Bank
Assistant Programmer, Bangladesh BankAssistant Programmer, Bangladesh Bank
Assistant Programmer, Bangladesh Bank
Engr. Md. Jamal Uddin Rayhan
 
Bangladesh Bank Assistant Maintenance Engineer Question Solution.
Bangladesh Bank Assistant Maintenance Engineer Question Solution.Bangladesh Bank Assistant Maintenance Engineer Question Solution.
Bangladesh Bank Assistant Maintenance Engineer Question Solution.
Engr. Md. Jamal Uddin Rayhan
 
Senior Officer , Pubali Bank Limited
Senior Officer , Pubali Bank LimitedSenior Officer , Pubali Bank Limited
Senior Officer , Pubali Bank Limited
Engr. Md. Jamal Uddin Rayhan
 
Bangladesh telecommunication regulatory commision
Bangladesh telecommunication regulatory commisionBangladesh telecommunication regulatory commision
Bangladesh telecommunication regulatory commision
Engr. Md. Jamal Uddin Rayhan
 
Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...
Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...
Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...
Engr. Md. Jamal Uddin Rayhan
 
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
Engr. Md. Jamal Uddin Rayhan
 
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
Engr. Md. Jamal Uddin Rayhan
 
Bank Question Solution-ADBA Previous Year Question for AP, ANE, AME, ADA, AE
Bank Question Solution-ADBA Previous Year Question for AP, ANE, AME, ADA, AEBank Question Solution-ADBA Previous Year Question for AP, ANE, AME, ADA, AE
Bank Question Solution-ADBA Previous Year Question for AP, ANE, AME, ADA, AE
Engr. Md. Jamal Uddin Rayhan
 
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...
Engr. Md. Jamal Uddin Rayhan
 
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
Engr. Md. Jamal Uddin Rayhan
 
information security and backup system
information security and backup systeminformation security and backup system
information security and backup system
Engr. Md. Jamal Uddin Rayhan
 

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

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.
 
Assistant Programmer, Bangladesh Bank
Assistant Programmer, Bangladesh BankAssistant Programmer, Bangladesh Bank
Assistant Programmer, Bangladesh Bank
 
Bangladesh Bank Assistant Maintenance Engineer Question Solution.
Bangladesh Bank Assistant Maintenance Engineer Question Solution.Bangladesh Bank Assistant Maintenance Engineer Question Solution.
Bangladesh Bank Assistant Maintenance Engineer Question Solution.
 
Senior Officer , Pubali Bank Limited
Senior Officer , Pubali Bank LimitedSenior Officer , Pubali Bank Limited
Senior Officer , Pubali Bank Limited
 
Bangladesh telecommunication regulatory commision
Bangladesh telecommunication regulatory commisionBangladesh telecommunication regulatory commision
Bangladesh telecommunication regulatory commision
 
Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...
Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...
Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...
 
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
 
Bank Question Solution-ADBA Previous Year Question for AP, ANE, AME, ADA, AE
Bank Question Solution-ADBA Previous Year Question for AP, ANE, AME, ADA, AEBank Question Solution-ADBA Previous Year Question for AP, ANE, AME, ADA, AE
Bank Question Solution-ADBA Previous Year Question for AP, ANE, AME, ADA, AE
 
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

How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Diana Rendina
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
NgcHiNguyn25
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
Celine George
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
สมใจ จันสุกสี
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
Wahiba Chair Training & Consulting
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
Celine George
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 

Recently uploaded (20)

How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
Reimagining Your Library Space: How to Increase the Vibes in Your Library No ...
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 

BTCL Assistant Manager Previous Year Question by Stack IT Job Solution

  • 2. Bangladesh Telecommunicaiton Company Limited Stack IT Question Bank | 01789741518, 01761719838 | Buy Book: stackvaly.com | Online Exam: exam.stackvaly.com BTCL Recruitment Test-2021 Assistant Manager (Technical) Date: 05-02-2021 Exam Taker: BUET 1. Find Rab? [Stack IT Job Solution-1341] 2. Determine the load impedance ZL that maximizes the average power drawn from the circuit of Figure.(2). What is the maximum average power? [Stack IT Job Solution-1358] 3. Sketch the time Variation of output voltage(VoVst) for given input voltage Vi. Assume Vz =3. 4. The measured equivalent DC Resistance between two line for the HT winding of a 11/0.415kv 200kva, 3φ Δ-Y Conductor distribution Transformer is 6 ohm at 200 C . Calculate the DC Resistance of each phase winding in the HT Side of Transformer for 750 C. Where temperature co efficient α =0.00393/0 C [Stack IT Job Solution-1398] 5. Find Vo/Vin [Stack IT Job Solution-1312] 6. Consider PCM system with a uniform quantize at step size 2 v . The input is a sinusoidal signal with amplitude of 10v. Calculate the signal to quantification noise ration in dB and number of bits per sample to be used in the system. [Stack IT Job Solution-1604] 7. Assume a TDMA Communication system having 8 transmitter-Receiver pairs. Each is sampled at 8khz that generated 16 bit per sample. If two synchronous bits are used in each frame. Calculate the data rate of the TDMA Link. [Stack IT Job Solution-1597] 8. Where are the Low loss transmission windows of silicon based optical fiber and which window is the most popular in communication and wave. Draw diagram of a long haul WDM Transmission system. 9. A 1550nm fiber optic transmission Link if of 50km length without repeating with a single mode fiber having loss of 0.2dB /km. The fiber is joined every two km with conductors each with 0.5dB loss. Determine the minimum average power which should be lunched in to the fiver in order to Tarantian an average optical power level of 10 micro-Watt at the receiver. [Stack IT Job Solution-1610] 10.Identify the Protocols 1. Sending Mail from sender computer to receivers mail server. 2. Dynamically assign IP Address 3. IP Address to MAC Address 4. Send error to the source ip of the originating packet. Solution: 1. Sending Mail from sender computer to receivers mail server. -SMTP 2. Dynamically assign IP Address-DHCP 3. IP Address to MAC Address-ARP 4. Send error to the source ip of the originating packet.-ICMP 11. An IP Address 192.168.10.0/23. Find- [Stack IT Job Solution-1461] 1. Subnet Mask 2. Unique ID(Host) 3. Broadcast ID 4. Last usable host address. 12. Write a function sumdigits to find output like below Input: 123 Output: 6 #include <stdio.h> int main() { int n, sum; printf("Enter an integern"); scanf("%d", &n); sum= sumdigits(n);
  • 3. Bangladesh Telecommunicaiton Company Limited Stack IT Question Bank | 01789741518, 01761719838 | Buy Book: stackvaly.com | Online Exam: exam.stackvaly.com printf("Sum of digits of %d = %dn", n, sum); return 0; } Solution: int sumdigits(int num){ if(num==0) return 0; else return num%10+sumdigits(num/10); } 13. For the following description of various IP networking protocols write down the protocol name and its full form in the following table: Description Answer Sending mail from sender computer to receivers mail server SMTP- Simple Mail Transfer Protocol Network management protocol used to automate the process of configuring devices on IP networks DHCP- Dynamic Host Configuration Protocol Mapping a dynamic internet protocol address address (IP address) to a permanent physical machine address in a local area network(LAN) ARP- Address Resulation Protocol Messages are typically used for diagnostic or control purpose or generated in response to errors in IP operations ICMP- Internet Control Message Protocol Bangladesh Telecommunications Company Limited (BTCL) Assistant Engineer (CSE)-2017 Exam Taker-BUET; Exam Date: 2017 Total Marks-100[Dept. 40 Written, Non Dept. 60 MCQ] 1. Design 4x1 MUX with two selection line & 4 input (A,B,C,D). 2. Find the smallest and second smallest elements in an array. 3. Salesperson (ID, Name, Age, Salary), Customer (ID, Name, City, Industry, Type) Orders (Number, order_date, cust_id, salesperson_id, Amount). Given table above find the following: a) The names of all salespeople that have an order with Samsonic. b) The names of all salespeople that do not have any order with Samsonic. c) The name of all salespeople that have 2 or more orders. 4. What is pipelining? Explain execution stages? 5. Linux command explain with example: mkdir, passwd, telnet, cat, Is, ping, su, nslookup. 6. Find the output of the following program #include<stdio.h> #define N 7 int main() { Char str[] = “abpqxn”; int i = 0; for(i=0; i<N-2; i++) if(i%2) printf(“%c”, str[i]++); else printf(“%c”, str[i]--); return 0; } 7. What’s MAC flood in switch? How to prevent the MAC Flooding Attack? 8. What are the disadvantages of manual/static IP? Name the protocol of dynamic IP assigning. DHCP how work? 9. What is query to display even rows from the employees table? 10. How to get distinct records from the employees table without using distinct keyword. 11. Write an SQL query to print the name of employees having the highest salary in each department. 12. Subnet the class C IP address 195.1.1.0 So that you have at least 2 subnets each subnet must have room for 48 hosts. What are the two possible subnet masks? 13. (a) The attenuation of a signal is 10dB. What is the final signal power of it was originally 5W? (b) A signal has passed through three cascaded amplifiers, each with a 4dB gain. (c) If the bandwidth of the channel is 5Kbps, how long does it take to send a frame of 100000 bits out of this device? 14. Given an IP address 10.2.3.20/22, Find out the number of host and subnet mask. 15. Write a program to find out the minimum number from a series. 16. Using pipeline calculate the value of fetch and execution cycle. 17. Given a database table with some column a) find out the min salary from table b) find out a matched string 18) Probably a SQL query a) show the branch name with the minimum balance b) select all dept_name, roll from Student
  • 4. Bangladesh Telecommunicaiton Company Limited Stack IT Question Bank | 01789741518, 01761719838 | Buy Book: stackvaly.com | Online Exam: exam.stackvaly.com