Your next chapter starts hereExplore admission guide
PRACTICE QUESTION BANK

কম্পিউটার সায়েন্স এন্ড ইঞ্জিনিয়ারিং

Department
20278Questions
19922MCQ
356CQ / Written
0%0 covered

Subjects / বিষয়

Non-Technical · Shared by all departments

রসায়ন

15 chapters

6500 questions6500 MCQ0 CQ
0/6500 covered0%
0%

Non-Technical · Shared by all departments

গণিত

4 chapters

2500 questions2500 MCQ0 CQ
0/2500 covered0%
0%

Non-Technical · Shared by all departments

ইংরেজি

11 chapters

500 questions500 MCQ0 CQ
0/500 covered0%
0%

Questions

0 read · 0 practiced · 0 answered in exams
20131. CQ / Written2016-2017 · Question 7b

7. (b) Explain why diodes are not operated in the breakdown region in rectifiers? [ব্যাখ্যা কর কেন rectifier এর breakdown অঞ্চলে diode কাজ করে না।] (07)

CQ / Written solution

সাধারণ rectifier diode reverse half-cycle-এ block করবে। Reverse breakdown-এ অতিরিক্ত current ও heating diode নষ্ট করতে পারে, তাই peak inverse voltage rating মানতে হয়। Zener/avalanche diode-এর controlled breakdown operation আলাদা application।

Sign in to save reading progress

20132. CQ / Written2016-2017 · Question 8a

8. (a) What are different ways of securing a computer network? [কম্পিউটার নেটওয়ার্ক এর নিরাপত্তার বিভিন্ন পন্থাগুলো কী কী?] (06)

CQ / Written solution

  1. Strong authentication, least privilege ও access control।
  2. Firewall ও network segmentation।
  3. Traffic encryption (TLS/VPN)।
  4. System patching ও secure configuration।
  5. Monitoring/IDS, logging ও incident response।
  6. Backups এবং user awareness।

Sign in to save reading progress

20133. CQ / Written2016-2017 · Question 8b

8. (b) Suppose a computer network has 2 LANs: LAN-1 having 511 users and LAN-2 having 254 users. You have given an IPv4 address block of 172.16.0.0/16. By doing subnetting, you have to calculate the Network Address, Broadcast Address and Subnet Mask for both LANs. [মনে কর, একটি কম্পিউটার নেটওয়ার্কে 2টি LAN আছে: LAN-1এ 511জন user এবং LAN-2 এ 254 জন user। তোমাকে একটি IPv4 Address block দেয়া হল। এখন, Subnetting করে LAN গুলোর Network Address, Broadcast Address এবং Subnet Mask বের কর।] (08)

CQ / Written solution

বড় LAN আগে allocate করতে হবে।

\[2^9-2=510<511,\quad2^{10}-2=1022\ge511\]

LANNetworkMaskBroadcastUsable range
LAN-1 (511)172.16.0.0/22255.255.252.0172.16.3.255172.16.0.1 - 172.16.3.254
LAN-2 (254)172.16.4.0/24255.255.255.0172.16.4.255172.16.4.1 - 172.16.4.254

Sign in to save reading progress

20134. CQ / Written2016-2017 · Question 9a

Source ambiguity: see solution note.

9. (a) Suppose, the given Sum of product (SOP) is \(\mathbf{X =}\overline{\mathbf{A}\overline{\mathbf{B}}}\mathbf{C +}\overline{\mathbf{A}}\mathbf{BC + AB}\overline{\mathbf{C}}\). Now, Draw its corresponding truth table. [মনে কর, $ \(\mathbf{X =}\overline{\mathbf{A}\overline{\mathbf{B}}}\mathbf{C +}\overline{\mathbf{A}}\mathbf{BC + AB}\overline{\mathbf{C}}\mathbf{\ }\)Sum of Product (SOP) এ দেওয়া আছে। এখন, এর অনুরূপ Truth table বের কর।] (07)

CQ / Written solution

প্রশ্নের nested overbar আক্ষরিকভাবে পড়লে:

\[X=\overline{A\bar B}C+\bar ABC+AB\bar C\]

\[=(\bar A+B)C+\bar ABC+AB\bar C=\bar AC+BC+AB\bar C=\boxed{AB+\bar AC}\]

Equivalent POS:

\[X=(A+C)(\bar A+B)\]

ABCX
0000
0011
0100
0111
1000
1010
1101
1111

যদি প্রথম term-এ শুধু B-এর ওপর bar বোঝানো হয়, expression আলাদা হবে। এখানে document-এর দৃশ্যমান outer bar রাখা হয়েছে।

Sign in to save reading progress

20135. CQ / Written2016-2017 · Question 9b

9. (b) The base current and emitter current of transistor are 0.08 mA and 9.6 mA. Calculate \(\mathbf{\alpha}_{\mathbf{\text{dc}}}\) \(\mathbf{\beta}_{\mathbf{\text{dc}}}\) এর মান বের কর । (07)

CQ / Written solution

\[I_C=I_E-I_B=9.6-0.08=9.52\,\mathrm{mA}\]

\[\alpha_{dc}=\frac{I_C}{I_E}=\frac{9.52}{9.6}\approx0.9917,\qquad\beta_{dc}=\frac{I_C}{I_B}=\frac{9.52}{0.08}=119\]

Sign in to save reading progress

20136. MCQ2016-2017 · Question 10.1

i) What is POST? [Post কী?]

a.
Power On Self Test
b.
Property Of Self Test
c.
Power Off Switch Time
d.
Power On Switch Test

Correct answer: a

POST = Power-On Self-Test।

Sign in to save reading progress

20137. MCQ2016-2017 · Question 10.2

ii) What will be the output if you will compile and execute the following C code? [ নিচের C কোড কম্পাইল ও এক্সিকিউট করলে কি আউটপুট দিবে?]

Void main (){
Const int i = 5 ;
i++;
printf("% d ",i);
}
a.
5
b.
6
c.
0
d.
Compiler error

Correct answer: d

const object increment করা বৈধ নয়; source-এর Void/Const capitalization-ও ভুল।

Sign in to save reading progress

20138. MCQ2016-2017 · Question 10.3

iii) Where is LIFO actually used? [LIFO কোথায় ব্যবহৃত হয়?]

a.
Queue
b.
Stack
c.
Linked List
d.
Tree

Correct answer: b

Stack LIFO অনুসরণ করে।

Sign in to save reading progress

20139. MCQ2016-2017 · Question 10.4

iv) Which of the following is not supported by Java? [নিচের কোনটি Java সাপোর্ট করে না?]

a.
Signed number
b.
Unsigned number
c.
Signed right shift
d.
Unsigned right shift

Correct answer: b

Expected answer: unsigned integer type যেমন unsigned int নেই; Java-তে char unsigned এবং unsigned arithmetic helpers আছে। Signed >> ও unsigned >>> দুটিই supported।

Sign in to save reading progress

20140. MCQ2016-2017 · Question 10.5

v) In C language, which function is used to read data fron keybord?[C ল্যাঙ্গুয়েজের কোন ফাংশনটি কিবোর্ড থেকে ডাটা নেয়ার জন্য ব্যবহার করা হয়?]

a.
printf ()
b.
scanf ()
c.
void ()
d.
main ()

Correct answer: b

scanf standard input থেকে formatted data পড়ে।

Sign in to save reading progress