Your next chapter starts hereExplore admission guide
PRACTICE QUESTION BANK

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

Department
26378Questions
26022MCQ
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

2800 questions2800 MCQ0 CQ
0/2800 covered0%
0%

Questions

0 read · 0 practiced · 0 answered in exams
26151. CQ / Written2011-2012 · Question 10

10. What is propagation delay? Write the use of Infrared Communication.

[Propagation delay কাকে বলে? Infrared Communication এর ব্যবহার লিখ।]

CQ / Written solution

\[t_p=d/v\]

Propagation delay হলো signal-এর medium ধরে sender থেকে receiver পর্যন্ত পৌঁছানোর সময়; d দূরত্ব, v propagation speed। এটি packet transmission time L/R থেকে আলাদা।

  1. Infrared remote control।
  2. স্বল্প দূরত্বের line-of-sight device communication।
  3. Optical sensing ও proximity detection।

Sign in to save reading progress

26152. CQ / Written2011-2012 · Question 11

11. Simplify the following Boolean expression: $Y = (\bar{A} + B)(A + B)$

[$Y = (\bar{A} + B)(A + B)$ বুলিয়ন সমীকরণকে সরলীকরণ কর।]

CQ / Written solution

\[Y=(\bar A+B)(A+B)=B+\bar A A=\boxed B\]

Sign in to save reading progress

26153. CQ / Written2011-2012 · Question 12a

12. (a) Draw an electronic circuit equivalent to NOT gate.

[NOT গেটের ফাংশন সম্পাদনকারী একটি সমতুল্য ইলেকট্রনিক সার্কিট অংকন কর।]

CQ / Written solution

NPN transistor-এর emitter ground, collector load/resistor দিয়ে VCC-তে এবং base input resistor RB দিয়ে চালাও; output collector থেকে নাও।

InputStateOutput
LowCutoff, IC ≈ 0High, VO ≈ VCC
High, যথেষ্ট base currentSaturationLow, VO ≈ VCE(sat)

\[R_B\approx\frac{V_{in,H}-0.7}{I_B}\]

Forced β দিয়ে যথেষ্ট base current বেছে নিতে হয়। এই circuit switching inverter/NOT gate হিসেবে কাজ করে; inductive load হলে flyback diode প্রয়োজন।

inverter switch

Sign in to save reading progress

26154. CQ / Written2011-2012 · Question 12b

12. (b) The base current and the emitter current of a transistor are $0.08\text{ mA}$ and $9.6\text{ mA}$. Calculate $\alpha_{dc}$ and $\beta_{dc}$.

[একটি ট্রানজিস্টরের বেজ কারেন্ট 0.08 mA ও এমিটার কারেন্ট 9.6 mA হলে $\alpha_{dc}$ ও $\beta_{dc}$ এর মান বের কর।]

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

26155. CQ / Written2011-2012 · Question 13

Incomplete source data: see solution note.

13. Find (a) current flowing in branch AF and (b) voltage across branch CD from the circuit given below.

[নিম্নের সার্কিট হতে (a) AF ব্রাঞ্চের কারেন্ট ও (b) CD ব্রাঞ্চের ভোল্টেজ এর মান বের কর।]

(Circuit diagram showing a resistor network with a 24V source)

CQ / Written solution

মূল চিত্র/ডেটা অসম্পূর্ণ: এই document-এ নির্ভরযোগ্য original circuit image ও সম্পূর্ণ সংযোগ নেই। তাই একক numerical answer নিশ্চিত করা যাচ্ছে না।

Supply voltage, labelled branches ও resistor connections নিশ্চিত করে node voltages বের করো।

\[I_{ij}=\frac{V_i-V_j}{R_{ij}},\qquad V_{CD}=V_C-V_D\]

Source solution-এ ধরে নেওয়া voltage বা branch numbering যাচাই ছাড়া numerical answer প্রকাশ করা হয়নি।

Sign in to save reading progress

26156. MCQ2011-2012 · Question 14.1

(i) How many times the program will print “Admission Test”? [নীচের প্রোগ্রামটি কতবার “Admission Test” প্রিন্ট করবে?]

# include <stdio.h>
int main ()
{
printf ("Admission Test");
main ();
return 0;
}
a.
infinite times
b.
32767 times
c.
65535 times
d.
till stack doesn’t overflow

Correct answer: d

C-তে main recursion-এর base case নেই; বাস্তবে resource/stack exhaustion পর্যন্ত চলতে পারে। নির্দিষ্ট print count নিশ্চিত নয়; C++-এ main call অনুমোদিত নয়।

Sign in to save reading progress

26157. CQ / Written2011-2012 · Question 14.2

Source ambiguity: see solution note.

ii. int x = sizeof(!5.856). What will be the value of variable x? [int x = sizeof(!5.856) হলে x এর মান কত হবে?]

  1. 2
  2. 4
  3. 5
  4. 6

CQ / Written solution

C-তে ! expression-এর type int, তাই sizeof(int), সাধারণত 4; standard নির্দিষ্ট byte count দেয় না। C++-এ result bool এবং sizeof(bool) implementation-dependent।

Sign in to save reading progress

26158. MCQ2011-2012 · Question 14.3

iii. 4 blue and 6 red marbles are in a jar. If you draw 2 marbles out of the jar, what is the probability that you get one of each color? [একটি জারে ৪ টি নীল ও ৬ টি লাল মার্বেল আছে। যদি তুমি উক্ত জার হতে ২ টি মার্বেল তোল তাহলে প্রত্যেকটি রঙ এর মার্বেল ওঠার সম্ভাবনা কত?]

a.
4/15
b.
1/8
c.
8/15
d.
1/24

Correct answer: c

\(P=\binom41\binom61/\binom{10}2=24/45=8/15\)।

Sign in to save reading progress

26159. MCQ2011-2012 · Question 14.4

iv. What is the 2’s compliment representation of -24 in a 16-bit microcomputer? [16-bit microcomputer এ -24 এর 2’s compliment কত হবে?]

a.
4/15
b.
1/8
c.
1111 1111 1110 1000
d.
1/24

Correct answer: c

24 = 0000 0000 0001 1000; invert + 1 = 1111 1111 1110 1000।

Sign in to save reading progress

26160. MCQ2011-2012 · Question 14.5

v. A 32 bit address bus allows access to memory of capacity ----- [একটি 32-বিট address bus এর মেমোরী ক্যাপাসিটি -----]

a.
64 Mb
b.
16 Mb
c.
1 Gb
d.
4 Gb

Correct answer: d

Byte-addressable হলে \(2^{32}\) bytes = 4 GiB; Gb নয়।

Sign in to save reading progress