0% found this document useful (0 votes)
52 views14 pages

3sem 2023

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
52 views14 pages

3sem 2023

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

(Please wrtte your Exam Roll No.) Exam Roll No.

END TERM EXAMINATION


THIRD SEMESTER (BCA] JANUARY-FEBRUARY 2023
Paper Code: BCA201 Subject: Computer Networks
Maximum Marks: 75
Time: 3 Hours
Note: Attempt flve questions tn allincluding Q. No. 1 which ls compulsory.
Select one question from each unit.

Q1 Write short notes of the following (Any five): (5x5=25)


a) What is the use of topologies in networking?
b) What do you understand by Line Configuration?
c) Explain Attenuation and Distortion.
d) How Synchronous TDM is different from Asynchronous TDM?
e) Differentiate between "packet switching" & "circuit switching".
How IPV4 is different from IPV6?
What is the difference between single bit error & burst error?
UNIT-I
Describe the components of Data Communication along with
Q2 a)
diagram. (5)
Explain OSI model. Write the functions and protocols of each layer.
b)
(7.5)
Q3 a) Define networking and its goals. (5)
b) Explain Transmission Impairment in detail. (7.5)
UNIT-II
Q4 a) What do you understand by Multiplexing? Describe WDM & FDM.
(5)
b) Explain Hamming Code with the help of an example. (7.5)

Q5 a)
Define Bit-Stuffing. How it is different from character stuffing? (5)
Explain any three error detection methods? (7.5)
b)
UNIT-III
Q6 a) What do you understand by Routing? Differentiate between
adaptive and non-adaptive routing. (5)
b) Describe repeater, router, switch, hub, bridge & gateway. (7.5)
Differentiate between Distance Vector Routing & Link State
Q7 a)
Routing. (5)
b) What is subnetting? Describe Unicast Routing Protocols. (7.5)
UNIT-IV

Q8 a) Compare the TCP header with UDP header. (5)


Explain Connection Management with the help of a diagram. (7.5)
b)

Q9 a) Discuss the design issue of session layer. (5)


Describe any five protocols present on application layer with their
b)
functionality. (7.5)

P
(Please wrlte your Exan Roll No.) Exam Roll No.

END TERM EXAMINATION


THIRD SEMESTER [BCA] JANUARY-FEBRUARY 2023
Paper Code: BCA-203 Subject: COMPUTER ORGANIZATION
AND ARCHITECTURE
Time: 3 Hours Maximum Marks: 75
Note: Attempt five questions in all including Q.No. 1 which is compulsory.
Select one question from each unit

Q1. Attempt the following (any five) [5x5-25]


(a) Why are NAND and NOR gates known as Universal Gates? Realize Ex
OR function using only NAND gates.
(b) Differentiate De-Multiplexer and decoder.
(c) What is instruction cycle? Draw a flowchart for instruction cycle of a
basic computer?
(d) What is virtual memory and how does it works?
(e) Explain the advantage of SIPO over SISO. Discuss their applications.
() Design 4-bit Adder-Subtractor.
UNIT-I
Q2. (a) Draw K-Map and simplify the following expression:
f(P, Q, R, S) = 2 m (0, 1, 4, 5, 7, 8,9, 12, 13, 15) [6.5]
(b) Design a full adder using two half adder and OR gate. [6]
Q3. (a) Reduce the following Boolean expression using Boolean laws.
Y=AB+A'B+AB'+(AB)' and also design using basic logic gates. [6.5]
(b) Design a 3:8 decoder using basic logic gates. (6]

UNIT-II
Q4. (a) What is shortcoming in J-K flip flop? Explain how its shortcoming is
removed. Describe its operating principle. [6.5]

(b) Design 3-bit synchronous counter and draw output waveform. [6]

Q5. (a) Describe the operation of 4- bit bidirectional shift register with the
help of block diagram. [6.5]
(b) Realize D type flip-flop using J-K flip flop. [6]
UNIT-III
Q6. (a) Explain instruction formats and its types using the following
expression:X=(A+B)-(C+D). [6.5]
(b) What is register transfer language? Explain with the help of
example. [6]
P.T.0.

Bea-203
[-2-]
Q7. (a) Explain the different types of addressing modes in basic
computer. [6.5]
(b) What is meant by micro-operation? Explain the term selective set,
selective compliment, selective clear micro operation? [6]
UNIT-IV
Q8. (a) What is asynchronous data transfer? Explain different methods of
asynchronous data transfer. [6.5]
(b) What is DMA? Draw and explain the DMA controller in details. (6]
Q9. Write short notes on the following: [12.5]
1. Cache Memory 2. Auxiliary Memory 3. Associative Memory 4. EPROM
5. RAM

BCA-203
Exam Roll No.
(Please write your Exam Roll No.)
END TERM EXAMINATION
THIRD SEMESTER BCA] JANUARY-FEBRUARY 2023
Paper Code: BCA 205 Subject: Object Oriented Programming with C++
Maximum Marks: 75
Time: 3 Hours
Note: Attempt five questions in all including Q.No. 1 which is compulsory.
Select one question from each unit.

Q1. Write the short note on the following: (2.5X10=25)


(a) Inline function
(b) Describe the various benefits of OOP.
(c) New Vs Delete
(d) Static data member
(e) Copy constructor
() Virtual base class
(g) Friend function
(h)Class template
(1) This pointer
i) Early Vs Late binding
UNIT-I

Q2. (a) Explain the following terms: (4)


() Literals (ii) Implicit conversion
(b) Write a program that will find out whether the given number is even
or odd.
If it is odd number then find out whether it is prime or
not? (3.5+5=8.5)

Q3. (a) llustrate the comparison between C and C++. (4.5)


(b) Describe the concepts of parameter passing by value, reference and
pointer with the help of an example. (8)
UNIT-II

Q4. (a) Explain the concept of constructor overloading and function


(6)
overloading.
(b) What do you understand by access specifiers? What are these access
specifiers? (6.5)

Q5. (a) Define a class Teacher with the following specifications: (10)
Private members:
Name 20 characters
Subject 10 characters
Basic, DA, HRA float
Salary float
Calculate () function computes the salary and returns it. Salary is
sum of Basic, DA and HRA

P.T.O.

BCA-205
-2-]
Public members:
Readdata Ounction accepts the data values and invokes the
calculate function.
Displaydata ()function prints the data on the screen.
(b) What are the special properties of a constructor? (2.5)
UNIT-III

Q6. (a) How can a data member and member function present in public mode
in class be accessed through pointer object? Explain it by taking an
example. (6)
(b)Create class COMPLEX and overload binary + operator to add objects.
Using friend functions. (6.5)
Q7. Define an inheritance and its advantage? Explain the types of
inheritane. (2.5+10=12.5)
UNIT-IV
Q8. (a) What do vou mean by generic programming? Write a
program to
the any two different types of variables using function template. swap
(bi Create a class Stack that throws Overflow and (2+4-6)
Underflow exceptions.
(6.5)
Q9. (a) Explain the following terms:
(6)
seekg 0 (iü) getline () (iiü) write ()
b) What is the file access mode? Describe the
various file modes. (6.5)

BCA-20S
(Please wrlte your Exam Roll No.) Bcam Roll No. ....

END TERM EXAMINATION


THIRD SEMESTER [BCA]FEBRUARY 2023
Paper Code: BCA-207 Subject: Human Values & Ethics
Time: 3 Hours Maximum Marks: 75
Note: Attempt flve questlons tn all inctudtng Q. No. 1 which ts
compulsory. Select one question from each untt.
Q1 Write short notes on any five: (Any Five) (5x5=25)
(a) Define Value. Explain the Value of a human being with a few examples.
(b) Define Skill? Elaborate on it with a few examples. Highlight the difference
between Values and Skills?
(c) List any three implications of Value education? Explain how they are related
to your life?
(d) Define Ethics. How are values and ethics are related?
(e) The process of Value education has been proposed as 'self-exploration'.
What could be some other possibilities for the process of value education?
() Why is right understanding required in relationship for mutual happiness?
Illustrate with the help of two personal examples?
UNIT-I
Q2 What does a fulfilling life mean for you? List out the top five points that occur to
you when you think of a fulfilling life. While making the list, consider your
entire life, not just the present stage of your life (youth, middle age, old age
,etc.) (12.5)

Q3 Distinguish between human consciousness 'and 'animal consciousness. And


also describe the societal impact of living with human consciousness? (12.5)
UNIT-II
Q4 What are the three elements of Indian ethos? Explain the ethics of Vedanta in
management? (12.5)

Q5 Critically examine the prevailing notions of happiness and prosperity in the


society. What are the consequences of these notions? (12.5)
UNIT-II
Q6 (a) "1 am the seer, doer and enjoyer? The body is an instrument". Explain with
an example of each. (4.5)
(b) What is excellence? Is working for competition the same as working for
excellence? Explain with the help of examples? (8)

Q7 There is definitiveness in the human conduct just in the same way as there is
definitiveness in the characteristics of a mango tree or a horse etc. but this
definiteness becomes evident only through right understanding . Give your
Comments on the statement with justification. (12.5)
UNIT-V
Q8 (a) What are the four levels in universal human values and professional ethics?
What could be your role in moving towards universal human order? (4.5)
(b) Values effect both the structure as well as the utilization of technologies'.
Doyou agree? Give justifications for your response? (8)

Q9 What are the various ethical issues in Cyber crime and what is effect of
cybercrime in human life? (12.5)

P
(Please write your Exam Roll No.) Exam Roll No.

END TERM EXAMINATION


THIRD SEMESTER BCA]JANUARY-FEBRUARY 2023
Paper Code: BCAT-213 Subject: Cyber Security
Time: 3 Hours
Maximum Marks: 75
Note: Attempt flve questions in all including Q.No. 1 which is
compulsory. Select one question from each unit.

Q1. Write short notes on the following (Any Five): (5x5=25)


(a) Explain the concept of Data Security Council of India.
(b) Define main techniques hackers can use to get hold on
password.
your
(c) Define Digital Signature algorithm.
(d) Write down the steps involved in computer forensic investigation.
(e) Explain the differences between Virus, Worms, and Trojan horse.
() Compare between Symmetric key encryption and Asymmetric key
encryption.
(g) What are the categories of Computer Society?
(h) Explain the concept of IPC 1980.

UNIT-I
Q2. (a) What is Cybercrime? How it is classified? What are the different types
of cybercrimes towards an individual? (6.5)
(b) Explain various criminal attacks in detail? (6)
Q3. (a) What is the data security consideration? Explain in this reference
Data Backup security, Data archival security and Data disposal
consideration.
(6.5)
(b) Elaborate the concept of cyberstalking in detail. (6)
UNIT-I

Q4. la) Define DoS and DDoS Attacks in brief. What are the techniques
behind such attacks?
(6.5)
(b) Explain the term Hacking. What are the various classifications of
hackers? (6)
Q5. (a) What is password cracking? List four guidelines that need to be
followed to avoid password cracking. (6.5)
(b) Explain the term Phishing. Write down various methods or activities
which constitute phishing. (6)

UNIT-III

Q6. (a) Explain the architecture of firewall, What are the various
characteristics of firewall? (6.5)
(b) Explain the S-MIME protocol for secure E-Mail. (6)

P.T.0.

BCAT-213
[2-]
Q7. (a)Explain the concept of cryptography by using the diagrammatical
approach of it? Define the transformation nethod of it. (6.5)
(b)Explain the following terms: (6)
(a) Bit-stream image
(b) Chain of custody
(c) Evidence custody form
UNIT-IV

Q8. (a) Explain Software piracy. Write down various activities that constitute
software piracy. (6.5)
(b) What are the requirements to set up a workstation for computer
forensics? (6)
Q9. (a) What are the different acquisition tools in forensics? Explain. (6.5)
(b) Explain the legal process to conduct computer investigation for
potential criminal violations of law. (6)
****

BCAT-23
(Please wrlte your Exanm Roll No.) Exam Roll No.

ENDTERM EXAMINATION
THIRD SEMESTER(BCAJ JANUARY-FEBRUARY 2023
Paper Code: BCA 221 Subject: Prlnciples of Management &
Organizational Behaviour
Time: 3 Hours Maximum Marks: 75
Note: Attempt five questions in all tncluing Q.No. 1 which is
compulsory. Select one question from each unit.
Q1. Write short notes of the following (Any Five): (5x5-25)
(a) Define self-learning.
(b) Discuss different roles and function of a Manager.
(c) Differentiate between authority and responsibility.
(d) Stereotyping.
(e) Describe theory of cognitive dissonance.
() Hallo effect.

UNIT-I
Q2. (a) "Marnagement is the art of getting things done'. Do you agree? Give
reasons. (6)
(b) Explain the Managerial Levels in an organization. (6.5)

Q3. (a) How pertinent today is Taylor's assumption that management and
labour had a common cause. Explain your view with justification.(7.5)
(b)Differentiate between Effectiveness Vs Efficiency. (5)
UNIT-II
Q4. (a) Decision making is the essence of managing.' Comment and explain
the features of a rational decision. (7)
(b) Planning is mere ritual in the fast-changing environment." How far
do you agree with this statement? Why? (5.5)
Q5. (a) "Planning is nothing without control and control is aimless without
planning". Explain the statement with examples. (6.5)
(b) Differentiate between Long term planning and short term
planning. (6)
UNIT-III
Q6. (a) "Organizational Behavior represents interactions among individuals,
groups and the organization. Elucidate. (6)
(b) A large unit manufacturing goods which has been known for its HR
policies and fringe benefits is facing the problem of low productivity
and high absenteeism. How should the management improve the
organizational climate? (6.5)

Q7. (a) "Motivation is the core of management". What are the suggestion
would you offer to the management to motivate its staff? (5.5)
P.T.O.

BCA-22I
(b) Distinetion between Maslow and Herzberg theories of motivation,
What I6 the role of money/monetary benefits in motivating the
mAnagera? (7)
UNIT-IV
Q8, (a) Define OrgAnizational Behavior and explain the need of understanding
human behavior in organizations, (6)
(b) Explain the concept of personality. Discuss personality traits that
affect the human behavior. (6.5)

Q9. (a) '1f organizational change is to be real change, it has to happen at the
levelof eulture,'Elaborate this statement., (6.5)
(b) "Perception is a procens of input- throughput- output Analysis".
Comment and examples of perceptual sets from work settings. (6)

BCA22
(Please write your Examn Roll No.)
Exam Roll No.
END TERM EXAMINATION
ee.

THIRD SEMESTER BCA


Paper Code: BCA-201 JANUARY-FEBRUARY 2023
Time: 3 Hours Subject: Mathematlcs-II
Note: Attempt five questions in all Maximum Marks: 75
including No. 1 which is
compulsory. Select one question from each ).
unit. Use of calculator is
permitted.
Q1 Attempt any three questions in brief:
(a) Define (i) (3x5=15)
Transportation problem (i) Assignment
of a series problem (ii)
(b) The arithmetic mean of 50 items LPP.
student as 20. However, it was later
was calculated by a
misread as discovered
40. Find the correct value of that an item 30 was
(c) Define (i) Ogives (i) Histogram (üi) Lorenz mean.
(d) For a bivariate data, the mean curve.
45.The regression coefficient ofvalue
of X is 20, the mean
Y on X is 4 value of Y is
Find (i) The correlation and that of X on Y is 1/9.
coefficient.
(ii) The standard deviation
(e) Solve the of X if standard deviation of Y is
following LPP 12.
Minimize Z= 3x+9y graphically
Subject to the constraints
x+3y s 60
Xty > 10
xs y, X, y 0.

UNIT-I
Q2 (a) Find out the missing
Class Interval 0-10 frequencies from the given data: (7)
Frequency 10-20|20-3030-40
? 6 ?
40-50 50-60 Total
5 50
The arithmetic mean is 25.
(b) The following table gives the
less than
man, each of age 20 years or more, of a cumulative frequencies of 199
groOup: (8)
|Age below (in years) 25 30 35 40 45 50 55 60
Cumulative Frequency 21 40 90| 13d 146 166 176| 186 19570 65
199)
Find the mean age.
OR
Q3 (a) The marks obtained by 60
given below: students in a certain paper out of 75
are
(7)
Marks 15-20 20-25
25-3 30-35 35-40 40-45 45-50
No. of 4 5 11 6 5
50-55 55-60 60-65
students 6 4 2

Calculate the median.


(b) Find mean deviation about the
Xi 256 810 12 mean for the following data: (8)
Fi 28 1078 5

P.T.0.

BCA2ol
Q8 Q7 Q6 Q5 Q4
Findprofit Five 5x+ 2x,+Subject toSolve
Minimize
+2.5x,
Z-3x, and }2
S
4 SubjectMaximize
Z=3x-X)Solve
Is32x,+22
,+3x xy |Purchase
(b) (a) (b) (a)
out
different 2x 4x Given
equation
correlation Y. Thejudges?What
40X-18Y=2 Two obtained
Obtain
resulting the Sales two XY2 A
the Also
maximum 2 2 to lines judges pairs computer
5040 following
constraints
the following
the below degree =
machines of obtain Y X the 460:
from constraints 112 62 between of 12 correct the
tw0-regression regression 14. 1 in (6,14), SXY
profit LPP. the The of9623 a followingwhile
each LPP 124 72 the agreement beauty
data vaue(8,6) =
possible can by variance
standard
X
10 508.
calculating
assignment using 131 98 and 4
UNIT-V
do of competition while
related of values:A
Y. 3547|8|
UNIT-II a56|789
any OR 117 76
lines. bivariate UNIT-I
Big-M of OR is co-relation recheck
through (2]
deviation X there
of 132 76 to the n=25;
asfive 81
56 is r[XY)
method. sale population 9. between
optimal
shown rankcorrect
showed
required 96 Find coefficient. fromX
120
and of 10|2 the =
tY
he
assignment. in the 11| 11 12 values that 125;
25
thejobs, purchase. andmean
13697 8549 88
92 are entries
judgment 112 SY
hepairs
adjoining 8X-10Y+66-0 the were had =
with values
coefficient as 100, of
Obtain copied
(8,12),
P.T.O. different of follows: observation
of
(15)table. (15) X
the X=
(15) and and
wrong
(6,8).
(7) the (8) of
two
(8) (7)
650;

available
Algorithm)
Modi
following
marketsM,M,,M3. A
Company
Availability Market
Plants
at
data
Ma M M each has
Jobs 3
giving
plant
Determine four
5 4 2 1
6 30 15 19 and the plants
P 29 25 40 40 30 A
quantitiesplant the
CA-2l 10 25 16 14

12 16 12 23 P3
P P,P,P3,Pyfrom
optimal
to
OR 62 38 32 24 37 B
Machines
41 40 33 27 40 C
(3-1

market
15 39 21 11 required
Required P,transportation 34 36 30 21 28 D

shifting which
43 19 13 at 39 36 35 36 40
each it
supplies
costs,
market. plan
quantities from
to
(Using
(15) three
the
Q4 Q3 Q2 Hours
Time: 3
Q1 Note: (Please
write
your
BCAT-211
Paper
Code:

a) c) b) a) c) b) a) f)Explain
e) the d) c)Answer
b) a) Attempt
Write
Explain Consider
statemnents. Explain
Explain
ExplainWhat Palindrome
1, not.
Explain or programs.
Write
python? What ExplainEntryWriteExplain (i) i) e. d.L*2L= L+2
C.L= b. a. EXAMINATION
TERM
END
the L[0]
any five
L
L[1] THIRD Exam
Roll
No.)
the is Pass
a the Mutable the
is Istrip) a differenceupdate() = = = a fivequestions
it
Tuple? the
program python the Dynamic L[::-1]
following L{0]
with 50 list key Select SEMESTER
the
following difference following features
+ L= and
a script 2 following: question
fromone
code. How that (ii) between [10,
Immutable
Controlled Typingfunctions in BCA]
to functions between terms:
to copy) i) of all
UNIT-II reads Continue UNIT-I 20,
define swapcase() 2. print Python?
OR indexing
feature incudingSubject:
JANUARY-FEBRUARY
T-Z\\ with 30,
a Fibonacci
loops Data
and interactive
with string 40).
example.
of
and
Python types unit.
eachQ.No. Basics
access example. in Find
and slicing Exam
RollNo.
Pythonseries with
mode with the 1 of
the check which
MaxtmumMarks: 75
Python
for with example. 2023
and output
elements isspace) 3. with first example.
whether example. is
script Programming
the 20 of compulsory.
of elements.(4) following (5x5-25)
mode help
P.T.0. Tuple? it
(4a) is (34a)
(6) (5) (3) in (5) of
a
What is the output of the folowing cooe snippets? (4)
UATT IV
2= (3,6
3 = ti t2 Explain the foloing buit-in metbois of fe
riats Q8
2 d=ict
E) seek
(üTitelines)
prinaeijand ight or dighr] and dlef b List the advantages of NumPy Arays over nested phon is (32)
printia ieft]end di rght] an dright] and dfeftr jand d end ) Explain the folloaing functions with respect to Matpiotiib. [3)
Hos are Dictionaries different fomn Es? (2%) 1. barn0
0R 2. legendO
OR
5 What is Dictionary? What are the different ways to create al Explain the different fle opening modes with example (8)
Dicionarg? (5) Explain the foowing function with respect to NunPy (4)
(4)
b
b Explzin the foüowing methods of Lists with example:
2. inser) E) reshape)
1. eteng ( ndim)
Girea a tuple amely City storing cities names (tokoyo, Delhi,
Seoul, Jaipr, Pais, Lurembourg, Berlin', London, Mosoow)
as elenents. Witt a program to print names of the cities as well as
theii index in theindex range 2 to 6, both inclusive. (3+»)

What s function? Explain the different types of arguments in


function in Python. Hhstrate with the heip of programs. (6»)
Preict the outpt of the folowing code snippet: (2
def addla,b,c:
printýzy
c=add6,16,26]

Write a program to find factorial of a number using recursion. (4)


OR
Q7 What is the difference between Package and Module? What are the
ifferent ways to importa moduie in a program? (5)
bË Write a program that reads a number, then converts it into octal
and hezadecimal equivaent using buït-in functions of Python.
(3+a)
Differer:tiate between local and global variabies in python with the
(4)
heip of a program.

P.T.O.

BCAT2| BcAT-2I
Po

You might also like