Your next chapter starts hereExplore admission guide

Previous Year Questions

Admission syllabus
Reset

Computer Science and Engineering

430 questions
2015-2016 · Question 5b Written Full paper
Operating System / Operating-system fundamentals

(b) What are the function of "kernel" ["kernel" এর কাজ কি কি?] (07)

Answer & solution / উত্তর ও সমাধান

Operating system হলো system software যা hardware resource পরিচালনা করে এবং application-এর জন্য service দেয়।

  1. Process/CPU scheduling ও process coordination।
  2. Memory allocation, protection ও virtual memory।
  3. File, storage ও I/O device management।
  4. User authentication, access control ও system-call interface।
2015-2016 · Question 6a Written Full paper
Data Communication & Computer Network / Network topologies and coverage Data Communication & Computer Network / Network protocols

(6) (a) What is MAC address? Write the major disadvantage of star topology? [MAC address কি? Star topology এর প্রধান সমস্যা কি?] (04)

Answer & solution / উত্তর ও সমাধান

MAC address network interface-এর link-layer identifier; Ethernet-এ সাধারণত 48-bit। এটি locally administered/spoofed হতে পারে, তাই সব পরিস্থিতিতে স্থায়ী global unique পরিচয় নয়।

Star topology-এর প্রধান দুর্বলতা: central switch/hub নষ্ট হলে তার সঙ্গে যুক্ত node-গুলোর communication বন্ধ হয়।

2015-2016 · Question 6b Written Full paper
Data Communication & Computer Network / Network protocols

(b) Write the elaborative forms of the following network terms: SMTP, POP, HTTP, DUP, ICMP, DNA, TCP, ARP, RFID and FTP. [নিম্নোক্ত networking terms গুলোর সম্প্রসারিত রূপ লিখঃ SMTP, POP, HTTP, UDP, ICMP, DNS, TCP, ARP, RFID এবং FTP ।] (10)

Answer & solution / উত্তর ও সমাধান
TermFull form
SMTPSimple Mail Transfer Protocol
POPPost Office Protocol
HTTPHypertext Transfer Protocol
UDPUser Datagram Protocol
ICMPInternet Control Message Protocol
DNSDomain Name System
TCPTransmission Control Protocol
ARPAddress Resolution Protocol
RFIDRadio-Frequency Identification
FTPFile Transfer Protocol

প্রশ্নের ইংরেজি অংশের DUP ও DNA বানানকে বাংলা অংশ অনুযায়ী UDP ও DNS হিসেবে সংশোধন করা হয়েছে।

2015-2016 · Question 7a Written Full paper
Database Management / Database concepts and DBMS Database Management / SQL and query languages

7. (a) What is SQL? A database table is defined as Student (Student ID, Name, Date of Birth, CGPA, Department). Now, write SQL queries to get:

Answer & solution / উত্তর ও সমাধান

SQL হলো Structured Query Language।

SELECT * FROM Student WHERE Department = 'CSE';
SELECT * FROM Student WHERE CGPA > 3.0;
2015-2016 · Question 7b Written Full paper
Database Management / Relations and data abstraction Database Management / SQL and query languages

(b) Describe the differences between the terms relation and relation schema [এর মধ্যে পার্থক্য ব্যাখ্যা কর:] (06)

Answer & solution / উত্তর ও সমাধান
RelationRelation schema
একটি নির্দিষ্ট সময়ে relation-এর tuples/dataRelation-এর নাম, attributes ও তাদের domains/structure
Insert/update/delete-এ বদলায়Design বদলালে schema বদলায়
Student table-এর বর্তমান rowsStudent(Student_ID, Name, Date_of_Birth, CGPA, Department)
2015-2016 · Question 8 Written Full paper
Digital Electronics / Combinational circuits

8. Draw a logic circuit that has three input and one output. If at last two inputs are 1 then the output is 1. [একটি লজিক সার্কিট অংকন কর যার তিনটি ইনপুট ও একটি আউটপুট আছে। যদি কমপক্ষে দুইটি ইনপুট এর মান 1 হয় তবে আউটপুট হয় 1।]

Answer & solution / উত্তর ও সমাধান

\[Y=AB+AC+BC\]

ABCY
0000
0010
0100
0111
1000
1011
1101
1111

AB, AC, BC-এর জন্য তিনটি AND gate এবং তাদের output যোগ করতে একটি OR gate ব্যবহার করো।

2015-2016 · Question 9a Written Full paper
Basic Electricity / Resistance and series-parallel circuits

9.(a) What is short-circuit? How to make a short-circuit using the following electrical components? [Short-circuit কি? নিম্নোক্ত ইলেকট্রিক্যাল Component এ Short-circuit কিভাবে করা যাবে? (04)

Question diagram

Incomplete source data

Answer & solution / উত্তর ও সমাধান

Short circuit হলো দুই ভিন্ন potential point-এর মধ্যে খুব কম impedance-এর অনিচ্ছাকৃত path, যার ফলে বড় current হতে পারে। Ideal wire দিয়ে দুই terminal সরাসরি যুক্ত করলে ideal short হয়। প্রশ্নে component arrangement নির্দিষ্ট নয়; battery বাস্তবে short করা বিপজ্জনক।

2015-2016 · Question 9b Written Full paper
Basic Electricity / Resistance and series-parallel circuits

9. (b) A battery of unknown e.m.f is connected to a circuit as shown below. The voltage drop across the $8\ \Omega$ resistor is 20 V. What will be the current reading in the ammeter? [একটি অজানা e.m.f ব্যাটারি নিচের চিত্রানুযায়ী সংযুক্ত। $8\ \Omega$ রোধকের voltage drop হলো 20 V। Ammeter এর তড়িৎ প্রবাহ নির্ণয় কর।]

Question diagram

Answer & solution / উত্তর ও সমাধান

\[I=20/8=2.5\,\mathrm A\]

Ideal voltmeter ও ammeter ধরে, current 11 Ω এবং (15 + 13) Ω branch-এ ভাগ হয়।

\[I_A=2.5\frac{11}{11+15+13}=\boxed{0.70513\,\mathrm A}\]

2015-2016 · Question 10.1 Written Full paper
Programming / Data types, variables and operators

(i) What will be the output of the following? [নিম্নের প্রোগ্রামটির আউটপুট কি?]

main () {
int i = 1;
char c = 'a';
printf ("%d", i*c) ;
printf ("%d", i*(c+2)) ;
}
  1. A,C
  2. 65,67
  3. 1,3
  4. C,A

Source ambiguity

Answer & solution / উত্তর ও সমাধান

ASCII-তে 'a' = 97 এবং 'c' = 99। দুই printf-এর মধ্যে separator নেই, তাই output 9799; কোনো option সঠিক নয়।

2015-2016 · Question 10.2 MCQ Full paper
Programming / Data types, variables and operators Programming / Control statements and loops

(ii) Find the error in the following C++ block of code. [নিম্নোক্ত C++ কোড ব্লকের ভুল নির্ণয় কর।]

if (x = 100)
cout << "x is 100";
a.
100 should be enclose in quotation
b.
There is semicolon at the end of first line
c.
Equals to operator mistake
d.
Variable x should be inside quotation
Answer & solution / উত্তর ও সমাধান

Correct answer: c. Equals to operator mistake

Comparison-এর জন্য == দরকার; x = 100 একটি valid assignment, কিন্তু intended condition নয়।

2015-2016 · Question 10.3 Written Full paper
Programming / Data types, variables and operators

(iii) What will be the output of the following C program? [নিম্নোক্ত C প্রোগ্রামটির আউটপুট কি?]

main () { int i = 5; printf ("%d", i=++i==6); }
  1. 0
  2. 7
  3. 6
  4. 1

Source ambiguity

Answer & solution / উত্তর ও সমাধান

প্রদত্ত C expression i=++i==6 একই full expression-এ i দুইবার modify করে; C-তে undefined behavior, তাই 1 নিশ্চিত উত্তর নয়।

2015-2016 · Question 10.4 MCQ Full paper
Data Communication & Computer Network / IP addressing and subnetting

(iv) Which class of IP address provides a maximum of only 254 host addresses per network ID? [IP address এর কোন class 254 টি host address প্রতিটি network এ জোগান দেয়?]

a.
Class A
b.
Class B
c.
Class C
d.
Class D
Answer & solution / উত্তর ও সমাধান

Correct answer: c. Class C

Classful Class C-তে /24 এবং 254 usable host address।

2015-2016 · Question 10.5 MCQ Full paper
Data Communication & Computer Network / Transmission media and communication modes

(v) Which one is the feature for simplex transmission? [Simplex transmission এর বৈশিষ্ট্য কোনটি?]

a.
Data format is simple
b.
Data transmission is one way
c.
Data can be transmitted to small distance only
d.
None of the above
Answer & solution / উত্তর ও সমাধান

Correct answer: b. Data transmission is one way

Simplex-এ data একদিকে যায়।

2015-2016 · Question 10.6 MCQ Full paper
Database Management / Keys and integrity constraints Database Management / Relations and data abstraction

vi) A key represent relation between tables is called ----- [টেবিল সমূহের মধ্যে রিলেশন তৈরীর জন্য যে key ব্যবহার করা হয় তাকে বলে ----- ]

a.
Primary key
b.
Secondary key
c.
Index key
d.
Foreign key
Answer & solution / উত্তর ও সমাধান

Correct answer: d. Foreign key

Foreign key referential relationship প্রতিষ্ঠা করে।

2015-2016 · Question 10.7 MCQ Full paper
Operating System / Processes and scheduling

(vii) If which scheduling is time quantum defined? [কোন Scheduling এ সময় কোয়ান্টাম ব্যবহৃত হয়?]

a.
Shortest job first scheduling
b.
Round robin scheduling
c.
Priority scheduling
d.
Multi-level scheduling
Answer & solution / উত্তর ও সমাধান

Correct answer: b. Round robin scheduling

Round-robin scheduling-এ time quantum থাকে।