SlideShare a Scribd company logo
1 of 4
Download to read offline
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

Cellular network
Cellular networkCellular network
Cellular networkshreb
 
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
 
Computer Network Notes (Handwritten) UNIT 2
Computer Network Notes (Handwritten) UNIT 2Computer Network Notes (Handwritten) UNIT 2
Computer Network Notes (Handwritten) UNIT 2NANDINI SHARMA
 
Pharmacy management system project report
Pharmacy management system project reportPharmacy management system project report
Pharmacy management system project reportDipta Roy
 
Solution manual of assembly language programming and organization of the ibm ...
Solution manual of assembly language programming and organization of the ibm ...Solution manual of assembly language programming and organization of the ibm ...
Solution manual of assembly language programming and organization of the ibm ...Tayeen Ahmed
 
Employee Management System
Employee Management SystemEmployee Management System
Employee Management SystemMonotheist Sakib
 
Attendance management system project report.
Attendance management system project report.Attendance management system project report.
Attendance management system project report.Manoj Kumar
 
Food delivery application report
Food delivery application reportFood delivery application report
Food delivery application reportAshwinBicholiya
 
react amazon clone 2021
react amazon clone 2021react amazon clone 2021
react amazon clone 2021NirajanMahara1
 
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...ArunChokkalingam
 
Restaurant management presentation
Restaurant management presentationRestaurant management presentation
Restaurant management presentationjoilrahat
 
Unicast multicast & broadcast
Unicast multicast & broadcastUnicast multicast & broadcast
Unicast multicast & broadcastNetProtocol Xpert
 
SRS for Hospital Management System
SRS for Hospital Management SystemSRS for Hospital Management System
SRS for Hospital Management Systemkataria Arvind
 

What's hot (20)

Cellular network
Cellular networkCellular network
Cellular network
 
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.
 
Computer Network Notes (Handwritten) UNIT 2
Computer Network Notes (Handwritten) UNIT 2Computer Network Notes (Handwritten) UNIT 2
Computer Network Notes (Handwritten) UNIT 2
 
Pharmacy management system project report
Pharmacy management system project reportPharmacy management system project report
Pharmacy management system project report
 
Solution manual of assembly language programming and organization of the ibm ...
Solution manual of assembly language programming and organization of the ibm ...Solution manual of assembly language programming and organization of the ibm ...
Solution manual of assembly language programming and organization of the ibm ...
 
Employee Management System
Employee Management SystemEmployee Management System
Employee Management System
 
Attendance management system project report.
Attendance management system project report.Attendance management system project report.
Attendance management system project report.
 
Food delivery application report
Food delivery application reportFood delivery application report
Food delivery application report
 
Ad-Hoc Networks
Ad-Hoc NetworksAd-Hoc Networks
Ad-Hoc Networks
 
OSI Model
OSI ModelOSI Model
OSI Model
 
react amazon clone 2021
react amazon clone 2021react amazon clone 2021
react amazon clone 2021
 
Routing Protocols in WSN
Routing Protocols in WSNRouting Protocols in WSN
Routing Protocols in WSN
 
BULK SMS SENDER project report
BULK SMS SENDER project reportBULK SMS SENDER project report
BULK SMS SENDER project report
 
Mpmc lab
Mpmc labMpmc lab
Mpmc lab
 
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
WSN network architecture -Sensor Network Scenarios & Transceiver Design Consi...
 
Online attendance management system
Online attendance management systemOnline attendance management system
Online attendance management system
 
Restaurant management presentation
Restaurant management presentationRestaurant management presentation
Restaurant management presentation
 
Unicast multicast & broadcast
Unicast multicast & broadcastUnicast multicast & broadcast
Unicast multicast & broadcast
 
Mobile Transport layer
Mobile Transport layerMobile Transport layer
Mobile Transport layer
 
SRS for Hospital Management System
SRS for Hospital Management SystemSRS for Hospital Management System
SRS for Hospital Management 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.pdfQual4
 
Ccna discovery
Ccna discoveryCcna discovery
Ccna discoveryccnaguide
 
Ccna exam 640 802
Ccna exam 640 802Ccna exam 640 802
Ccna exam 640 802ccnaguide
 
Ccna final exam
Ccna final examCcna final exam
Ccna final examccnaguide
 
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 pdfNetworkershome
 
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 2011Dân Chơi
 
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 simulatorccnaguide
 
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
 
IRJET- Power Line Carrier Communication
IRJET- Power Line Carrier CommunicationIRJET- Power Line Carrier Communication
IRJET- Power Line Carrier CommunicationIRJET Journal
 
20IT204-COA-Lecture 18.ppt
20IT204-COA-Lecture 18.ppt20IT204-COA-Lecture 18.ppt
20IT204-COA-Lecture 18.pptPerumalPitchandi
 

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

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

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
 
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

Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 

Recently uploaded (20)

Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .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