SlideShare a Scribd company logo
2
Most read
3
Most read
4
Most read
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

PDF
BPSC Previous Year Question for AP, ANE, AME, ADA, AE
PDF
Assistant Programmer, Bangladesh Bank
PPTX
Elements of film making
PPTX
Eucalyptus, Nimbus & OpenNebula
DOCX
Industrial Training Report-1
PPTX
types of films/movies
PPTX
Polymorphism in c++(ppt)
PPTX
presentation based on Truss and Frame
BPSC Previous Year Question for AP, ANE, AME, ADA, AE
Assistant Programmer, Bangladesh Bank
Elements of film making
Eucalyptus, Nimbus & OpenNebula
Industrial Training Report-1
types of films/movies
Polymorphism in c++(ppt)
presentation based on Truss and Frame

What's hot (20)

PDF
Bangladesh telecommunication regulatory commision
PDF
Bangladesh Bank Assistant Maintenance Engineer Question Solution.
PDF
Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...
PPTX
Complex instruction set computer ppt
PDF
BCS302-Digital Design and computer organization Lab manual- VTU 2022 scheme.pdf
PDF
Verilog full adder in dataflow & gate level modelling style.
PPTX
Pass Transistor Logic
PPTX
Leaky Bucket & Tocken Bucket - Traffic shaping
PDF
Transport layer services
PDF
Vc dimension in Machine Learning
PPT
The cellular concept
PPTX
Principle source of optimazation
PPTX
Unit 2 data link control
PPTX
Routing protocols for ad hoc wireless networks
PPTX
Datagram Switching and Virtual Control Switching
PPTX
SHLD and LHLD instruction
PPSX
Delay Calculation in CMOS Chips Using Logical Effort by Prof. Akhil Masurkar
PPTX
8 queens problem using back tracking
PPTX
Time delay programs and assembler directives 8086
PPTX
blackboard architecture
Bangladesh telecommunication regulatory commision
Bangladesh Bank Assistant Maintenance Engineer Question Solution.
Combined Bank Question Solution(Updated) 25/10/2021 Assistant Hardware Engine...
Complex instruction set computer ppt
BCS302-Digital Design and computer organization Lab manual- VTU 2022 scheme.pdf
Verilog full adder in dataflow & gate level modelling style.
Pass Transistor Logic
Leaky Bucket & Tocken Bucket - Traffic shaping
Transport layer services
Vc dimension in Machine Learning
The cellular concept
Principle source of optimazation
Unit 2 data link control
Routing protocols for ad hoc wireless networks
Datagram Switching and Virtual Control Switching
SHLD and LHLD instruction
Delay Calculation in CMOS Chips Using Logical Effort by Prof. Akhil Masurkar
8 queens problem using back tracking
Time delay programs and assembler directives 8086
blackboard architecture
Ad

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

PDF
acn-practical_manual-19-20-1 final.pdf
PPTX
Thesis of sdh
PDF
Ccna guide
PDF
Ccna discovery
PDF
Ccna exam 640 802
PDF
Ccna final exam
PDF
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
PDF
Free CCNA workbook by networkers home pdf
PPT
Networking basics
DOC
Ccna 1 chapter 9 v4.0 answers 2011
PDF
Computer network
PPTX
Computer network
PDF
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...
PDF
Ccna network simulator
PDF
Ccna pdf
PDF
Lecture 06
PDF
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answers
PDF
Ccna dumps
PDF
IRJET- Power Line Carrier Communication
PPT
20IT204-COA-Lecture 18.ppt
acn-practical_manual-19-20-1 final.pdf
Thesis of sdh
Ccna guide
Ccna discovery
Ccna exam 640 802
Ccna final exam
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2017...
Free CCNA workbook by networkers home pdf
Networking basics
Ccna 1 chapter 9 v4.0 answers 2011
Computer network
Computer network
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2013...
Ccna network simulator
Ccna pdf
Lecture 06
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answers
Ccna dumps
IRJET- Power Line Carrier Communication
20IT204-COA-Lecture 18.ppt
Ad

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

PDF
DESCO AE CSE Question Solution
PDF
OSI Model Cheat Sheet
PDF
Bangladesh Bank Data entry control operator Question Solution.
PDF
Senior Officer , Pubali Bank Limited
PDF
Combined 2 Bank Compiled Post: ADA Date: 25.09.2021 Taker: AUST
PDF
Combined 2 Bank Compiled Post: SO(IT) Date: 25.09.2021 Taker: AUST
PDF
Bank Question Solution-ADBA Previous Year Question for AP, ANE, AME, ADA, AE
PDF
Linux Command For Beginners 6 - copy commands for linux | BUET Pattern Job Pr...
PDF
Titas gas sub-assistant engineer question pattern
PPTX
information security and backup system
DESCO AE CSE Question Solution
OSI Model Cheat Sheet
Bangladesh Bank Data entry control operator Question Solution.
Senior Officer , Pubali Bank Limited
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
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...
Titas gas sub-assistant engineer question pattern
information security and backup system

Recently uploaded (20)

PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
TR - Agricultural Crops Production NC III.pdf
PPTX
Pharma ospi slides which help in ospi learning
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Institutional Correction lecture only . . .
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
master seminar digital applications in india
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Insiders guide to clinical Medicine.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
human mycosis Human fungal infections are called human mycosis..pptx
O7-L3 Supply Chain Operations - ICLT Program
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
TR - Agricultural Crops Production NC III.pdf
Pharma ospi slides which help in ospi learning
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Institutional Correction lecture only . . .
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
VCE English Exam - Section C Student Revision Booklet
master seminar digital applications in india
2.FourierTransform-ShortQuestionswithAnswers.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Microbial disease of the cardiovascular and lymphatic systems
Insiders guide to clinical Medicine.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
STATICS OF THE RIGID BODIES Hibbelers.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