Your next chapter starts hereExplore admission guide
PRACTICE QUESTION BANK

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

Department
11578Questions
11222MCQ
356CQ / Written
0%0 covered

Subjects / বিষয়

Non-Technical · Shared by all departments

রসায়ন

15 chapters

100 questions100 MCQ0 CQ
0/100 covered0%
0%

Non-Technical · Shared by all departments

গণিত

4 chapters

300 questions300 MCQ0 CQ
0/300 covered0%
0%

Non-Technical · Shared by all departments

ইংরেজি

11 chapters

400 questions400 MCQ0 CQ
0/400 covered0%
0%

Questions

0 read · 0 practiced · 0 answered in exams
11481. CQ / Written2002-2003 · Question 10

10. Showing the active, cutoff and saturation regions, sketch the output characteristics of a common base n-p-n Si transistor. State the biasing conditions for each. [একটি কমন বেস এন-পি-এন সিলিকন ট্রানজিস্টরের আউটপুট ক্যারেক্টারেস্টিকস আঁক এবং অ্যাকটিভ, কাটঅফ ও স্যাচুরেশন নির্দেশ কর। প্রতি ক্ষেত্রে বায়াসিং এর শর্তাবলী উল্লেখ কর।]

CQ / Written solution

RegionEmitter-base junctionCollector-base junction
ActiveForward biasedReverse biased
CutoffNot forward biasedReverse biased
SaturationForward biasedForward biased

Common-base output graph-এ x-axis VCB, y-axis IC, প্রতিটি curve fixed IE-এর জন্য। Active region-এ IC ≈ αIE + ICBO; NPN-এর VCB > 0। VCB < 0 হয়ে collector-base forward biased হলে saturation; IE ≈ 0 হলে cutoff curve।

Sign in to save reading progress

11482. CQ / Written2002-2003 · Question 11a

Incomplete source data: see solution note.

11. (a) A sinusoidal voltage, $v = 30\sqrt{2} \sin 314t$ volts is applied to the input of the circuit shown in Fig. 4. Draw the wave form of the output voltage. [সার্কিটের ইনপুটে একটি সাইনোসয়ডাল ভোল্টেজ প্রয়োগ করা হইল। আউটপুট ভোল্টেজের ওয়েভ ফর্ম আঁক] (07)

  • Fig. 4 Circuit Diagram:

    • An input AC voltage source $v$ connected in series with a $5\text{ k}\Omega$ resistor.

    • A clipper network connected across the output $V_o$:

      • One branch has a diode pointing downwards in series with a $10\text{ V}$ DC source (positive terminal up).

      • The parallel branch has a diode pointing upwards in series with a $10\text{ V}$ DC source (negative terminal up).

CQ / Written solution

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

\[V_m=30\sqrt2\approx42.426\,\mathrm V,\quad f=314/(2\pi)\approx50\,\mathrm{Hz}\]

Output waveform-এর clipping level ও polarity diode direction, bias source এবং output terminals-এর ওপর নির্ভর করে। শুধু input sine wave থেকে output নির্ধারণ সম্ভব নয়।

Sign in to save reading progress

11483. CQ / Written2002-2003 · Question 11b

11. (b) Show how a MOSFET can be operated as an amplifier. [দেখাও যে, MOSFET একটি অ্যামপ্লিফায়ার হিসাবে কাজ করিতে পারে।] (07)

CQ / Written solution

N-channel enhancement MOSFET common-source amplifier-এ source ground, drain resistor RD দিয়ে VDD-তে, gate DC divider দিয়ে bias করো। Input/output coupling capacitors DC block করে।

\[V_{GS}>V_T,\quad V_{DS}\ge V_{GS}-V_T\]

এই saturation-region Q-point-এর চারপাশে ছোট gate signal drain current পরিবর্তন করে।

\[v_o\approx-g_m(R_D\parallel R_L\parallel r_o)v_{gs}\]

Negative sign 180° phase inversion বোঝায়। MOSFET saturation হলো amplification region, BJT saturation-এর মতো নয়।

Sign in to save reading progress

11484. CQ / Written2002-2003 · Question 12

12. A logic circuit has three inputs and one output. The output is 1 when at least two inputs are 1. Implement the logic circuit with a $4 \times 1$ MUX and necessary logic gates. [একটি লজিক সার্কিটের তিনটি ইনপুট এবং 1টি আউটপুট আছে। আউটপুটের মান ১ হয় যখন কমপক্ষে দুইটি ইনপুট ১ হয়। একটি $4 \times 1$ MUX এবং প্রয়োজনীয় লজিক গেইট ব্যবহার করিয়া লজিক সার্কিটটি তৈরি কর।] (13)

CQ / Written solution

\[F=AB+AC+BC\]

4:1 MUX-এ select S1 = A, S0 = B নাও।

ABFMUX data input
000I0 = 0
01CI1 = C
10CI2 = C
111I3 = 1

এই সংযোগে output ঠিক তখন 1 হবে, যখন তিন input-এর অন্তত দুটি 1। অতিরিক্ত gate প্রয়োজন নেই।

mux 4 to 1

Sign in to save reading progress

11485. CQ / Written2002-2003 · Question 13

13. Write a program to find the sum of all the odd integer numbers from 1 to 99. (Use C or FORTRAN] [C অথবা FORTRAN ব্যবহার করিয়া ১ হইতে ৯৯ পর্যন্ত সমস্ত বিজোড় সংখ্যার যোগফল বাহির করার জন্য একটি প্রোগ্রাম লিখ।] (14)

CQ / Written solution

#include <stdio.h>
int main(void) {
    int sum = 0;
    for (int i = 1; i <= 99; i += 2) sum += i;
    printf("%d\n", sum);
    return 0;
}

\[1+3+\cdots+99=50^2=\boxed{2500}\]

Sign in to save reading progress

11486. CQ / Written2002-2003 · Question 14a

14.(a) What is the difference between a data and an information? List the name of six BDMS packages. [ডাটা ও তথ্যের মধ্যে পার্থক্য কি? ছয়টি BDMS প্যাকেজের নাম লিখ।]

CQ / Written solution

Data হলো raw facts; information হলো context ও processing-এর ফলে অর্থবহ data। উদাহরণ: 70, 80, 90 raw marks; average 80 একটি তথ্য।

ছয়টি DBMS: PostgreSQL, MySQL, MariaDB, SQLite, Oracle Database, Microsoft SQL Server।

Sign in to save reading progress

11487. CQ / Written2002-2003 · Question 14b

14. (b) What is meant by LAN and WAN in computer networking? [কম্পিউটার নেটওয়ার্কিং এ LAN এবং WAN বলিতে কি বুঝায়?] (07)

CQ / Written solution

Networkপরিসরসাধারণ বৈশিষ্ট্য
LANRoom/building/campusসীমিত area, সাধারণত এক প্রতিষ্ঠানের নিয়ন্ত্রণ
MANCity/metropolitan areaএকাধিক LAN সংযোগ
WANRegion/country/worldদূরবর্তী network যুক্ত; carrier infrastructure ব্যবহার হতে পারে

Sign in to save reading progress

11488. CQ / Written2002-2003 · Question 15

15. Write down the task of the following instructions of 8085 microprocessor. [8085 মাইক্রোপ্রসেসরের নিম্নলিখিত ইন্সট্রাকশন গুলির কাজ লিখ।]

(i) STA 16-bit Address, (ii) INR M, (iii) CMA, (iv) JC 16-bit Address, (v) RET (14)

CQ / Written solution

8085 instructionকাজ
STA addressA-এর byte নির্দিষ্ট 16-bit memory address-এ store
INR MHL নির্দেশিত memory byte 1 বাড়ায়; CY অপরিবর্তিত
CMAA-এর প্রতিটি bit complement; flags অপরিবর্তিত
JC addressCY = 1 হলে address-এ jump
RETStack থেকে saved return address PC-তে নিয়ে subroutine থেকে ফেরে

Sign in to save reading progress

11489. CQ / Written2001-2002 · Question 1

Incomplete source data: see solution note.

1. With the help of Thevenin’s theorem, calculate the current flowing through the $3\ \Omega$ resistor in the following network. [নিম্নের নেটওয়ার্কে থেনেনিন থিওরেম প্রয়োগ করিয়া ৩ ওহম রেজিস্টরের মধ্যে প্রবাহিত কারেন্ট বাহির কর।] (10)

  • Circuit Diagram:

    • A $24\text{ V}$ source connected to a $4\ \Omega$ series resistor, leading to an $8\ \Omega$ top branch resistor.

    • A parallel branch featuring a $2\text{ A}$ current source (pointing upwards) connected in parallel with a $4\ \Omega$ resistor between nodes C and D.

    • A $6\ \Omega$ top branch resistor leads to terminal A.

    • The load resistor is $3\ \Omega$ connected across terminals A and B, with a load current $I_B$.

CQ / Written solution

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

  1. Load resistor সরিয়ে terminal open-circuit voltage Vth বের করো।
  2. Independent voltage source short এবং independent current source open করে terminal resistance Rth বের করো; dependent source থাকলে রেখে test-source method ব্যবহার করো।
  3. Load পুনরায় যুক্ত করে নিচের সূত্রে current নির্ণয় করো।

\[I_L=\frac{V_{th}}{R_{th}+R_L}\]

Source solution-এর সংখ্যা যাচাই করতে original circuit, source polarity ও load label প্রয়োজন।

Sign in to save reading progress

11490. CQ / Written2001-2002 · Question 2

Incomplete source data: see solution note.

2. Find the reading of the voltmeter in the following circuit. [নিম্নের সার্কিটে ভোল্টমিটারের পাঠ বাহির কর।] (08)

  • Circuit Diagram:

    • A $10\text{ V}$ DC source supplying a bridge/parallel network.

    • Top branch contains a $5\ \Omega$ resistor connected in series with a voltmeter (V) between nodes A and B.

    • The middle parallel branch contains a $6\ \Omega$ and a $2\ \Omega$ resistor in series.

    • The bottom return branch contains a $2\ \Omega$ resistor.

CQ / Written solution

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

Reference node নিয়ে KCL/KVL বা nodal equations solve করতে হবে; তারপর VAB = VA − VB। Ideal voltmeter infinite resistance ধরে current নেয় না। A/B-এর অবস্থান ও source polarity ছাড়া voltage-এর মান/sign নির্ধারিত নয়।

Sign in to save reading progress