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
26001. CQ / Written2017-2018 · Question 7b

(b) Briefly describe the flag register of 8086 processor. [সংক্ষেপে 8086 প্রসেসর এর ফ্ল্যাগ রেজিস্টারগুলো বর্ণনা কর।] (08)

CQ / Written solution

8086-এ একটি 16-bit FLAGS register আছে; এর 9টি flag সক্রিয়।

Flagকাজ
CFUnsigned carry/borrow
PFফলাফলের নিচের 8 বিটে even parity
AFBit 3 থেকে bit 4-এ carry/borrow
ZFফলাফল শূন্য
SFফলাফলের sign bit
OFSigned arithmetic overflow
TFSingle-step execution
IFMaskable interrupt enable
DFString operation-এর দিক: 0 হলে বৃদ্ধি, 1 হলে হ্রাস

Sign in to save reading progress

26002. CQ / Written2017-2018 · Question 8a

08. (a) Briefly describe two well known data transport protocols provided by the internet transport layer, and indicate what type of application might use that service. [Internet transport layer এর বহুল প্রচলিত দুটি data transport protocol- এর সংক্ষিপ্ত বিবরণ দাও এবং তা কোন ধরণের application- এ ব্যবহৃত হয়ে থাকে, তা লিখ।] (08)

CQ / Written solution

TCPUDP
Connection-oriented byte streamConnectionless datagrams
Reliable, ordered deliveryDelivery/order guarantee নেই
Retransmission, flow ও congestion controlকম protocol overhead; application প্রয়োজনমতো reliability যোগ করে
File transfer, reliable application trafficDNS queries, real-time media, games

Sign in to save reading progress

26003. CQ / Written2017-2018 · Question 8b

(b) What are the topologies used in computer networking? [কম্পিউটার নেটওয়ার্কে কি কি টপোলজি ব্যবহৃত হয়?] (06)

CQ / Written solution

  1. Bus: shared backbone।
  2. Star: central switch/hub-এর সঙ্গে পৃথক link।
  3. Ring: cyclic neighbour connection।
  4. Mesh: একাধিক/সব node pair-এর connection।
  5. Tree: hierarchical structure।
  6. Hybrid: একাধিক topology-এর সমন্বয়।

Sign in to save reading progress

26004. CQ / Written2017-2018 · Question 9a

09. (a) Express the Boolean function F = A + B'C as a standard sum of minterms. [ $F = A + B'C$ Boolean function- টি standard sum of minterm- এ প্রকাশ কর।] (06)

CQ / Written solution

\[F=A+\bar BC=\bar A\bar BC+A\bar B\bar C+A\bar BC+AB\bar C+ABC\]

\[\boxed{F=\sum m(1,4,5,6,7)}\]

Variable order A,B,C; A most significant bit।

Sign in to save reading progress

26005. CQ / Written2017-2018 · Question 9b

(b) A 200V d.c. shunt motor running at 1000 rpm takes an armature current of 17.5A. It is required to reduce the speed to 600 rpm. What must be the value of resistance to be inserted in the armature circuit if the original armature resistance is 0.4$\Omega$? Take armature current to be constant during this process. [1000 rpm এ চলন্ত একটি 200V d.c. সান্ট মোটর 17.5 A আর্মেচার কারেন্ট গ্রহণ করে। এটির গতি কমিয়ে 600 rpm করতে হবে। যদি মূল আর্মেচার রেজিস্ট্যান্স 0.4Ωহয় তবে আর্মেচার সার্কিটে অতিরিক্ত কত রেজিস্ট্যান্স যুক্ত করতে হবে? এই প্রক্রিয়া চলাকালীন সময়ে আর্মেচার কারেন্ট constant থাকবে।] (08)

CQ / Written solution

\[E_1=200-17.5(0.4)=193\,\mathrm V,\quad E_2=193(600/1000)=115.8\,\mathrm V\]

\[R_{total}=\frac{200-115.8}{17.5}=4.81143\,\Omega,\quad R_{added}=\boxed{4.41143\,\Omega}\]

Shunt flux ও armature current অপরিবর্তিত ধরে।

Sign in to save reading progress

26006. MCQ2017-2018 · Question 10.1

i) What will be the value of x after executing the following statements? [নিম্নলিখিত statement সমূহ execute করার পরে x এর মান কি হবে?] int x = 25, y = 13; x = (x < y) ? (x + y) : (x - y);

a.
25
b.
38
c.
12
d.
13

Correct answer: c

25 < 13 false; x = 25 - 13 = 12।

Sign in to save reading progress

26007. MCQ2017-2018 · Question 10.2

ii) When you pass an array as an argument to a function, what is actually passed? [যখন তুমি কোন array- কে ফাংশনের argument হিসাবে pass করবে, তখন প্রকৃতপক্ষে কি pass হবে?]

a.
All the elements of the array
b.
The first element of the array
c.
Address of the first element of the array
d.
Address of the last element of the array

Correct answer: c

সাধারণ array argument first element-এর pointer-এ convert হয়।

Sign in to save reading progress

26008. MCQ2017-2018 · Question 10.3

iii) In how many steps would the binary search algorithm be halted if it were to search for the value 17, in the set S = {2, 3, 5, 7, 11, 13, 17, 19, 23}? [Binary search algorithm কতগুলি ধাপে শেষ হবে যদি 17- এর জন্য S সেটে অনুসন্ধান করা হয়, যেখানে সেট S = {2, 3, 5, 7, 11, 13, 17, 19, 23}?]

a.
one
b.
two
c.
three
d.
four

Correct answer: b

11 তারপর 17: 2 comparison।

Sign in to save reading progress

26009. MCQ2017-2018 · Question 10.4

iv) A graph G is called a ______, if it is a connected acyclic graph. [একটি গ্রাফ G যদি সংযুক্ত ও এসাইক্লিক হয় তবে তাকে ______ বলে?]

a.
cyclic graph
b.
regular graph
c.
tree
d.
planar graph

Correct answer: c

Connected acyclic undirected graph হলো tree।

Sign in to save reading progress

26010. MCQ2017-2018 · Question 10.5

v) The term ______ is used to refer to a table row. [টেবিলের row চিহ্নিত করার জন্য ______ ব্যবহৃত হয়।]

a.
attribute
b.
tuple
c.
field
d.
instance

Correct answer: b

Tuple হলো relation-এর row।

Sign in to save reading progress