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
26071. MCQ2015-2016 · Question 10.10

(x) In what state is a silicon diode if voltage drop across it is about 0.7 V? [একটি সিলিকন diode-এ যদি 0.7V ড্রপ হয় তাহলে তার state কি হবে?]

a.
No bias
b.
Forward bias
c.
Reverse
d.
Zener region

Correct answer: b

Silicon diode forward conduction-এ প্রায় 0.7 V model ব্যবহার করা হয়।

Sign in to save reading progress

26072. MCQ2015-2016 · Question 10.11

(xi) Which consists of two plates separated by a dielectric and can store a charge? [নিচের কোনটি একটি dielectric দ্বারা আলাদাভৃত দুটি প্লেট দ্বারা গঠিত এবং charge সংরক্ষণ করতে পারে?]

a.
Inductor
b.
Capacitor
c.
Transistor
d.
Relay

Correct answer: b

Capacitor dielectric দিয়ে পৃথক conducting plate-এ charge সঞ্চয় করে।

Sign in to save reading progress

26073. MCQ2015-2016 · Question 10.12

(xii) Which is not MOSFET terminal? [কোনটি MOSFET terminal নয়।]

a.
Base
b.
Gate
c.
Drain
d.
Source

Correct answer: a

MOSFET-এর terminal gate, drain, source এবং body; base BJT-এর terminal।

Sign in to save reading progress

26074. CQ / Written2013-2014 · Question 1a

01.(a) Differentiate between an object and a class. [Object এবং class এর মধ্যে পার্থক্য নিরূপণ কর ।] (05)

CQ / Written solution

Class হলো object-এর structure ও behavior-এর type definition; object হলো তার instance। যেমন class Student { ... }; একটি class এবং Student s;-এ s একটি object। Instance member data প্রতিটি object-এর জন্য পৃথক; static members class-এর মধ্যে shared।

Sign in to save reading progress

26075. CQ / Written2013-2014 · Question 1b

01. (b)Mention the application areas of OOP. [OOP এর ব্যবহারের ক্ষেত্রগুলো উল্লেখ কর ।] (05)

CQ / Written solution

  1. GUI ও event-driven applications
  2. Simulation ও modelling
  3. Games ও interactive systems
  4. Reusable libraries/frameworks
  5. Business/domain modelling

Sign in to save reading progress

26076. CQ / Written2013-2014 · Question 2a

02.(a)Explain with an example, how object encapsulates data? [Object কিভাবে ডাটাকে এনক্যাপসুলেট করে তা উদাহরণের সাহায্যে ব্যাখ্যা কর। ] (04)

CQ / Written solution

Encapsulation data ও associated methods-কে class-এ একত্র করে এবং access control দিয়ে implementation details আড়াল করে। নিচে private marks কেবল public methods দিয়ে ব্যবহার করা যায়।

#include <iostream>

class Student {
    int marks = 0;
public:
    void setMarks(int value) { marks = value; }
    int getMarks() const { return marks; }
};

int main() {
    Student s;
    s.setMarks(85);
    std::cout << s.getMarks() << '\n';
}

Sign in to save reading progress

26077. CQ / Written2013-2014 · Question 2b

2. (b) Write a recursive program to find the nth term of the Fibonacci series in any structured programming language. [যেকোন স্ট্রাকচারড প্রোগ্রামিং ভাষায় Fibonacci সিরিজের n তম সংখ্যাটি খুঁজে বের করার recursive প্রোগ্রাম লিখ।] (06)

CQ / Written solution

\[F_0=0,\quad F_1=1,\quad F_n=F_{n-1}+F_{n-2}\]

#include <stdio.h>

unsigned long long fib(unsigned int n) {
    return n < 2 ? n : fib(n - 1) + fib(n - 2);
}
int main(void) {
    int n;
    if (scanf("%d", &n) != 1 || n < 0 || n > 40) return 1;
    printf("%llu\n", fib((unsigned int)n));
    return 0;
}

এখানে indexing 0 থেকে। Simple recursion repeated calculation করে; বড় n-এর জন্য memoization ব্যবহার করা উচিত।

Sign in to save reading progress

26078. CQ / Written2013-2014 · Question 3

3. Given A = {1, 2, 3, 4}. Consider the following relation in A: R = {(1, 1), (2, 2), (2, 3), (3, 2), (4, 2), (4, 4)}. (a) Draw its (R's) directed graph (b) Is R (i) reflexive, (ii) symmetric, (iii) transitive or (iv) anti-symmetric? Explain reasons. [প্রদত্ত সেট A = {1, 2, 3, 4} এর রিলেশন R = {(1, 1), (2, 2), (2, 3), (3, 2), (4, 2), (4, 4)}। (a) ডাইরেক্টেড গ্রাফ অংকন কর (b) R কি (i) রিফ্লেক্সিভ, (ii) সিমেট্রিক (iii) ট্রানজিটিভ অথবা (iv) এন্টিসিমেন্ট্রিক? কারণ ব্যাখ্যা কর ।] (10)

CQ / Written solution

Graph-এর directed edges: 1→1, 2→2, 2→3, 3→2, 4→2, 4→4।

Propertyসিদ্ধান্ত ও কারণ
Reflexiveনা; (3,3) নেই
Symmetricনা; (4,2) আছে, (2,4) নেই
Transitiveনা; (2,3),(3,2) আছে, কিন্তু (3,3) নেই via (3,2),(2,3)
Antisymmetricনা; (2,3),(3,2) আছে এবং 2 ≠ 3

Sign in to save reading progress

26079. CQ / Written2013-2014 · Question 4a

04. (a) Briefly describe the basic data structure operations. [সংক্ষেপে মৌলিক ডাটা স্ট্রাকচার অপারেশনগুলো বর্ণনা কর ।] (05)

CQ / Written solution

Operationকাজ
Traversalসব element visit
Insertionনতুন element যোগ
DeletionElement বাদ
Searchনির্দিষ্ট element খোঁজা
Sortনির্দিষ্ট order-এ সাজানো
Mergeদুই structure combine

Sign in to save reading progress

26080. CQ / Written2013-2014 · Question 4b

04. (b) Explain the types of linked lists. [Linked lists এর প্রকারভেদ আলোচনা কর ।] (05)

CQ / Written solution

TypeLinks
Singly linkedData ও next; শেষ next = NULL
Doubly linkedPrevious এবং next
Circular singly linkedশেষ next প্রথম node
Circular doubly linkedশেষ next প্রথম node; প্রথম previous শেষ node

Sign in to save reading progress