কম্পিউটার সায়েন্স এন্ড ইঞ্জিনিয়ারিং
Subjects / বিষয়
Non-Technical · Shared by all departments
পদার্থ বিজ্ঞান
8 chapters
Non-Technical · Shared by all departments
রসায়ন
15 chapters
Non-Technical · Shared by all departments
গণিত
4 chapters
Non-Technical · Shared by all departments
ইংরেজি
11 chapters
Technical
Computer Science and Engineering
12 chapters
Questions
0 read · 0 practiced · 0 answered in exams11. (a) Differentiate between FET and BJT. [FET ও BJT এর মধ্যে পার্থক্য লিখ।] (05)
CQ / Written solution
| FET/JFET | BJT |
|---|---|
| Majority-carrier device | Bipolar carrier conduction |
| Gate voltage channel নিয়ন্ত্রণ করে | Base-emitter voltage ও base current-এর সঙ্গে collector current সম্পর্কিত |
| সাধারণত high input impedance | সাধারণত lower input impedance |
| Gate, drain, source | Base, collector, emitter |
Noise, gain এবং efficiency circuit ও device-এর ওপর নির্ভর করে; সব ক্ষেত্রে এক ধরনের device শ্রেষ্ঠ নয়।
11. (b) JFET প্রয়োগ গুলি লিখ। (05)
CQ / Written solution
- High-input-impedance amplifier
- Source-follower buffer
- Analog switch
- Voltage-controlled resistor, উপযুক্ত operating region-এ
- Constant-current source
12. (a) From the circuit given below answer the following questions: [নিম্নের সার্কিট থেকে নীচের প্রশ্নগুলোর উত্তর লিখ।] (04)

(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 পদ্ধতির ওপর নির্ভরশীল।
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)

CQ / Written solution
\[I_4=12/4=3\,\mathrm A,\quad I_R=5-3=2\,\mathrm A\]
\[R=12/2=\boxed{6\,\Omega}\]
(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);Correct answer: d
i = 0,1,2,3,4-এ যোগ হয় 1,1,1,1,4; sum = 8।
(ii) Which functions(s) will every class contain? [কোন ফাংশন/ফাংশনগুলো প্রতিটি class এ থাকে?]
Correct answer: c
C++ class-এ constructor ও destructor থাকে; প্রয়োজন অনুযায়ী compiler implicit declaration দেয়।
(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)\) এই সেটের মান হবে -----]
Correct answer: a
তিন disjoint অংশ একত্রে X union Y।
(iv) What is the probability of getting a sum of 9 from two throws of a dice? [একটি ডাইস দুইবার ছুঁড়লে তাদের সমষ্টি 9 হওয়ার সম্ভাবনা কত?]
Correct answer: b
অনুকূল জোড়া (3,6),(4,5),(5,4),(6,3): 4/36 = 1/9।
(v) The binary code of \(\left( \mathbf{21.125} \right)_{\mathbf{10}}\) is ----- [ \(\left( \mathbf{21.125} \right)_{\mathbf{10}}\) এর বাইনারি -----]
Correct answer: a
21 = 10101 এবং 0.125 = 0.001 binary।
(vi) In a R-L-C series circuit, resonant frequency is ----- [R-L-C সিরিজ সার্কিটে রেজোন্যান্ট ফ্রিকোয়েন্সি -----]
Correct answer: b
\(f_r=1/(2\pi\sqrt{LC})\)।