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
26091. CQ / Written2013-2014 · Question 11a

11. (a) Differentiate between FET and BJT. [FET ও BJT এর মধ্যে পার্থক্য লিখ।] (05)

CQ / Written solution

FET/JFETBJT
Majority-carrier deviceBipolar carrier conduction
Gate voltage channel নিয়ন্ত্রণ করেBase-emitter voltage ও base current-এর সঙ্গে collector current সম্পর্কিত
সাধারণত high input impedanceসাধারণত lower input impedance
Gate, drain, sourceBase, collector, emitter

Noise, gain এবং efficiency circuit ও device-এর ওপর নির্ভর করে; সব ক্ষেত্রে এক ধরনের device শ্রেষ্ঠ নয়।

Sign in to save reading progress

26092. CQ / Written2013-2014 · Question 11b

11. (b) JFET প্রয়োগ গুলি লিখ। (05)

CQ / Written solution

  1. High-input-impedance amplifier
  2. Source-follower buffer
  3. Analog switch
  4. Voltage-controlled resistor, উপযুক্ত operating region-এ
  5. Constant-current source

Sign in to save reading progress

26093. CQ / Written2013-2014 · Question 12a

12. (a) From the circuit given below answer the following questions: [নিম্নের সার্কিট থেকে নীচের প্রশ্নগুলোর উত্তর লিখ।] (04)

Question diagram

(i) How many nodes exist in the circuit? [সার্কিটটিতে কতগুলো নোড আছে?]

(ii) How many branches exist in the circuit? [সার্কিটটিতে কতগুলো ব্রাঞ্চ আছে?]

(iii) How many loops exist in the circuit? [সার্কিটটিতে কতগুলো লুপ আছে?]

(iv) How many equations would be needed to determine the current being drawn from the power supply V1 [V1 এর মধ্য দিয়ে কি পরিমাণে তড়িৎ প্রবাহিত হচ্ছে তা বের করতে কতগুলো সমীকরণের দরকার হবে?]

CQ / Written solution

প্রতি two-terminal element-কে branch ধরে: 5 resistor + 2 source = 7 branches। V2 ও middle resistor-এর junction-সহ মোট 5 nodes।

\[L=B-N+1=7-5+1=3\]

3টি independent mesh equation দিয়ে সমাধান করা যায়। Ideal voltage-source constraints ব্যবহার করে nodal analysis-এ 2টি independent unknown-node equation-ও যথেষ্ট; তাই equation count পদ্ধতির ওপর নির্ভরশীল।

Sign in to save reading progress

26094. CQ / Written2013-2014 · Question 12b

12. (b) If a parallel combination of \(\mathbf{4\,}\mathbf{\Omega}\) and another unknown resistor are connected across a 12 V supply, where the total current is 5 A. Determine the value of unknown resistor. \(\mathbf{4\,}\mathbf{\Omega}\) এর একটি ও অজানা মানের আর একটি রোধকে সমান্তরালে সংযুক্ত করে 12 V সাপ্লাইয়ের সাথে যুক্ত করা হলে মোট 5A বিদ্যুৎ প্রবাহিত হয়। অজানা রোধের মান বের কর।] (06)

Question diagram

CQ / Written solution

\[I_4=12/4=3\,\mathrm A,\quad I_R=5-3=2\,\mathrm A\]

\[R=12/2=\boxed{6\,\Omega}\]

Sign in to save reading progress

26095. MCQ2013-2014 · Question 13.1

(i) What is the output of the following code? [নিম্নের কোডের আউটপুট কি?]

int sum, i;
sum = 0;
for (i = 0; i < 5; i++)
if (i%3 == 1)
sum = sum + i;
else
sum = sum + 1;
printf ("%d", sum);
a.
5
b.
6
c.
7
d.
8

Correct answer: d

i = 0,1,2,3,4-এ যোগ হয় 1,1,1,1,4; sum = 8।

Sign in to save reading progress

26096. MCQ2013-2014 · Question 13.2

(ii) Which functions(s) will every class contain? [কোন ফাংশন/ফাংশনগুলো প্রতিটি class এ থাকে?]

a.
constructor
b.
destructor
c.
both (a) and (b)
d.
none of the above

Correct answer: c

C++ class-এ constructor ও destructor থাকে; প্রয়োজন অনুযায়ী compiler implicit declaration দেয়।

Sign in to save reading progress

26097. MCQ2013-2014 · Question 13.3

(iii) If X and Y be the sets then the set \(\left( \mathbf{X - Y} \right)\mathbf{\cup}\left( \mathbf{Y - X} \right)\mathbf{\cup}\left( \mathbf{X}\mathbf{\cap}\mathbf{Y} \right)\) is equal to ----- [যদি X এবং Y সেট হয় তবে \(\left( \mathbf{X - Y} \right)\mathbf{\cup}\left( \mathbf{Y - X} \right)\mathbf{\cup}\left( \mathbf{X}\mathbf{\cap}\mathbf{Y} \right)\) এই সেটের মান হবে -----]

a.
\(X\cup Y\)
b.
\(X^c\cup Y\)
c.
\(X\cap Y\)
d.
\(X^c\cap Y\)

Correct answer: a

তিন disjoint অংশ একত্রে X union Y।

Sign in to save reading progress

26098. MCQ2013-2014 · Question 13.4

(iv) What is the probability of getting a sum of 9 from two throws of a dice? [একটি ডাইস দুইবার ছুঁড়লে তাদের সমষ্টি 9 হওয়ার সম্ভাবনা কত?]

a.
\(1/8\)
b.
\(1/9\)
c.
\(1/6\)
d.
\(1/12\)

Correct answer: b

অনুকূল জোড়া (3,6),(4,5),(5,4),(6,3): 4/36 = 1/9।

Sign in to save reading progress

26099. MCQ2013-2014 · Question 13.5

(v) The binary code of \(\left( \mathbf{21.125} \right)_{\mathbf{10}}\) is ----- [ \(\left( \mathbf{21.125} \right)_{\mathbf{10}}\) এর বাইনারি -----]

a.
10101.001
b.
10101.010
c.
10100.001
d.
10100.111

Correct answer: a

21 = 10101 এবং 0.125 = 0.001 binary।

Sign in to save reading progress

26100. MCQ2013-2014 · Question 13.6

(vi) In a R-L-C series circuit, resonant frequency is ----- [R-L-C সিরিজ সার্কিটে রেজোন্যান্ট ফ্রিকোয়েন্সি -----]

a.
\(f_{r} = 2\pi\sqrt{\text{LC}}\)
b.
\(f_{r} = \frac{1}{2\pi\sqrt{\text{LC}}}\)
c.
\(f_{r} = 2\pi f\)
d.
none of the above

Correct answer: b

\(f_r=1/(2\pi\sqrt{LC})\)।

Sign in to save reading progress