You are on page 1of 769

[3880] 503

*3880503*

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2010


IT-53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 and Question 7 are compulsory.


2) Attempt any four questions from remaining.
1. As a RFID steering committee head, suggest a suitable RFID system
implementation for an electronic toll collection, monitoring and receipt printing
system for Maharashtra Government. The system will be implemented at 65 toll
plazas throughout the State of Maharashtra.
15
2. Explain E-Logistics and Supplier Chain Management.

10

3. What is E-Banking ? Explain various security techniques in E-Banking.

10

4. What is E-Learning ? Explain various models of E-Learning.

10

5. What is E-Governance ? Explain various strategies and tactics for implementation


of E-Governance.
10
6. Explain Knowledge Management and Knowledge Management SystemArchitecture.

10

7. Write short notes on (any three) :

15

a) Call Center Ethics


b) ERP Packages
c) Spatial objects
d) Palm devices.

B/II/10/2,805

[3880] 508

*3880508*

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2010


ITE 5 : CYBER LAW AND IT SECURITY (Elective)
(2008 Course)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 and Question 7 are compulsory.


2) Solve any three from remaining questions.
1. a) Explain object and scope of the IT Act.
b) Explain the encryption techniques.

10
10

2. Explain the technology behind the digital signature.

10

3. What is E-Governance ? Explain the application of E-Governance.

10

4. Explain the concept of domain name with reference to cyber law.

10

5. What are the offences related to digital signature certificate ?

10

6. What are the powers of adjudicating officer to impose penalty ?

10

7. Write short notes on (any four) :

(54=20)

a) Certifying authority
b) Genesis of cyber law
c) Framing
d) Spamming
e) Jurisdiction in trademark dispute
f) Types of certificate.

B/II/10/640

[3880] 509

*3880509*

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2010


IT 55 : ADVANCED INTERNET TECHNOLOGY (Elective)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 and Question 7 are compulsory.


2) Attempt any four questions from remaining.
1. What are JSP actions ? Explain error handling in JSP with example.

15

2. Write ASP program to accept name and birth date of the user and display calendar
of birth month in the clients browser.
10
3. What is thread safety in Servlets ? Write a Servlet which will display the count of
number of times a client has accessed it.
10
4. Write PHP code for displaying details of patients stored in the database. (Assume
suitable table structure).
10
5. Write a PERL program to accept name of text file from user. The file will contain
short listed candidate records. Each row has cand no. : name : qualification :
specialization. Display names of computer specialization candidate from the file. 10
6. Explain Session and Cookies in PHP.

10

7. Write short notes on (any three) :

15

a) HTTP Request and Response


b) E Commerce Architecture
c) CGI Architecture
d) Arrays in PHP.

B/II/10/2,805

[3880] 51

*388051*

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2010


IT-51 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2005 Pattern) (Old)
Time : 3 Hours
Instructions : 1)
2)
3)
4)
5)

Max. Marks : 70
Q. 1 and Q. 6 are compulsory.
Attempt any 3 from the remaining.
State assumptions if any.
Draw neat labeled diagrams where necessary.
Figures to right indicate marks.

1. Write a test plan with scope of testing, risks and contingencies, strategy, schedule,
staffing, and training, deliverables, item pass/fail criteria for a web based
E-learning application which facilitates in learning advanced courses based
on subject entered by student.
10
2. a) Explain path, statement, branch and decision coverage in structural testing.
Give suitable example for each.
b) Define quality. What is clean room software engineering ?

8
7

3. a) Software quality metrics helps to give quantitative view of software quality.


Comment.
b) Explain regression testing with suitable example.

7
8

4. a) Write test case for functional testing of book data entry screen that accepts
unique book id, title, authorname, publisher, ISBN No, price, edition.
b) Explain V model with reference to its advantages over waterfall model.

8
7

5. a) Compare functional testing and non-functional testing with examples.


b) Write the 7-8 point checklist for testing non-functional aspects of a JOB
PORTAL.
6. Write short notes on (any 3) :
i) BVA technique for black-box-testing
ii) Code coverage
iii) CAST
iv) Software review.

15

B/II/10/350

[3880] 102

*3880102*

M.C.A. (Semester I) (Management faculty) Examination, 2010


IT-12 : 102 : 'C'-PROGRAMMING
(2008 Pattern) (New)
Time : 3 Hours
Instructions : 1)
2)
3)
4)

Total Marks : 70
Question No. 1 is compulsory.
Solve any six from Q. No. 2 to Q. No. 9.
Use comments wherever necessary.
Figures to the right indicate full marks.

1. Find and explain output of the following :

10

A) int f( )
main( )
{
f(1);
f(1,2);
f(1,2,3);
}
f(int a, int b, int c)
{ printf ("%d %d %d", a,b,c);}
B) #define lee(a,b,c) avg (a,b,c) <=60
#define des(a,b,c,d) (d= =1 ? geq(a,b,c) : lee(a,b,c))
void main(void)
{
int num = 70;
char ch = '0';
float f = 2.0;
if des (num, ch, f, o) puts ("lee");
else puts ("geq");
}
P.T.O.

[3880] 102

-2-

*3880102*

C) Void main( )
{
int x = 01234;
int y = 05678;
x = x & 05678;
y = y | 01234;
x = x ^ y;
printf ("%x\t", x);
printf ("%x\t", y);
}
D) Void main ( )
{
char *s[ ] = {"Dharma", "Norton", "Simens", "ibm"};
char **p;
p = s;
printf ("%s", ++ *p);
printf ("%s", *p ++);
printf ("%s", ++ *p);
}
2. A) Write a program to compute the real roots of quadratic equation px2 + qx + R = 0.
The roots are given by equation x1 = q + sqrt (q2 4PR)/2p and
x2 = q sqrt (q2 4PR)/2p.

B) Write a program to accept integer numbers till user enters '0' and display how
many non-zero integers entered.

3. Write a program to accept five strings from user and display all those strings in
descending order.
10
4. Write a program, which will accept file name and string from command prompt
and append the string in given file.
10

*3880102*

-3-

[3880] 102

5. A) Write a note on Masking using bitwise operator.

B) Write a user defined function * strcmp (char * t1, char * t2) which compares
two strings t1 and t2.Do not use library functions.

6. Create structure Elect Bill having members consumer_no, name, no_of_units,


amt. Write a program to accept 10 records.
Calculate amt using following rate.
For no_of_units
less than 100 rate Rs. 1.50 per unit.
no_of_units
greater than 100 rate Rs. 6.50 per unit.
Display the records of largest and smallest amt.
10
7. A) Write a program to demonstrate fill color in circle.

B) Write a program to display the following pattern.


A1
B2, C3
D4, E5, F6
G7, H8, I9,
J10.

8. Write a program to display frequency of each character in a given file.

10

9. A) Write a program using function to print sum of digits of given number.


B) Write a program to count no. of sentences in a given file.

5
5

B/II/10/4,585

[3880] 104

*3880104*

M.C.A. (Semester I) (Management Faculty) Examination, 2010


(IT-13) 104 : OPERATING SYSTEM CONCEPTS
(2008 Pattern) (New)
Time : 3 Hours

Total Marks : 70

Note : 1) Q. 1 and Q. 7 are compulsory questions.


2) Attempt any four from the Q. 2 to Q. 6.
1. What is IPC ? Explain how IPC is implemented in client server system.

10

2. What is Memory Management ? Explain paging in detail.

10

3. What is Deadlock ? Explain critical section problem with example.

10

4. Explain free space management methods in detail.

10

5. Define centralized O.S. and distributed O.S. Explain advantages of distributed


O.S.

10

6. Explain different disk performance issues and also explain two disk scheduling
algorithms.

10

7. Write short notes on (any four) :


i) FAT
ii) NOS
iii) CPU schedular
iv) PCB
v) System calls.

20

B/II/10/4,100

[3880] 10C

*388010C*

M.C.A. (Mgt. Faculty) Examination, 2010


BME 5 : BUSINESS FINANCE
Time : 3 Hours

Max. Marks : 80

Instructions : a) Attempt any five questions.


b) All questions carry equal marks.
1. a) Explain Inter-Bank Call Money Market.
b) Discuss the role of Non-Banking Financial Institutions.
2. Briefly explain the role played by IDBI and IFCI in the development of economic
growth in India.
3. Discuss the functions and Operations of Money Market and Capital Market in
India.
4. Examine the role of Merchant Bankers, Managers, Brokers and Underwriters
in Primary Capital Market.
5. Describe the role of SEBI in controlling and regulating functions and operations
of Capital Market.
6. Explain the key role of RBI in regulating banking functions and operations.
7. Explain the concept of Credit Rating. What is the need and importance of
credit rating agencies ?
8. Write short notes on :
a) Clearing House
b) ICICI
c) Bank Rate
d) CRICIL

B/II/10/100

[3880] 13

*388013*

M.C.A. (Semester I) (Mgt. Faculty) Examination, 2010


IT-13 : COMPUTER ARCHITECTURE
(Old) (2005 Pattern)
Time : 3 Hours

Max. Marks : 70
Notes : 1) Q. No. 1 and Q. No. 7 are compulsory.
2) Solve any four questions from remaining.
3) Draw neat diagrams whenever necessary.

1. a) Compare 16-bit and 32-bit Architecture.

b) Compare RISC and CISC.

2. What is register ? Explain SISO Shift Register.

10

3. What is Addressing Mode ? Explain any four addressing modes in detail.

10

4. What is pipelining ? Explain RISC pipelining in detail.

10

5. Explain the working of A to D converter with the help of appropriate diagram.

10

6. What is Multiplexer ? Explain Demultiplexer in detail.

10

7. Write short notes on (any three) :

(35=15)

a) Master-slave JK FF
b) PCI Vs. MCA Bus
c) Instruction Cycle
d) CPU Performance
e) DMA Controller.

B/II/10/530

[3880] 15

*388015*

M.C.A. (Mgt. Faculty) (Sem. I) Examination, 2010


BM-12 : PRINCIPLES AND PRACTICES OF MANAGEMENT AND
ORGANIZATIONAL BEHAVIOUR
(2005 Pattern) (Old)
Time : 3 Hours

Marks : 70
N.B. : 1) Q. 1 is compulsory.
2) Solve any three from the remaining.

1. A) The manager elevates the status of the organization elaborate with the help
of essential skills and functions of a manager.
15
B) Role of decision making in increasing organization effectiveness Explain. 10
2. Define OB. Explain the foundations of OB. Explain in details the various
models in OB.

15

3. Define motivation. Describe the role of Meslows theory with its limitations.

15

4. Explain the process and steps planning in details Explain.

15

5. What is the contribution of Mr. Fayol in modern theory of management ?


Why is the theory time tested ?

15

6. Write short notes on (any 3) :

15

1) Decentralisation Vs. Centralisation


2) Systems Approach
3) Levels of management
4) Line and staff authority
5) Control Techniques.

B/II/10/185

*3880203*

[3880] 203

M.C.A. (Semester II) (Management Faculty) Examination, 2010


(IT-23) 203 : SOFTWARE ENGINEERING
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 7 are compulsory.


2) Attempt any three from Q. 2 to Q. 6.
1. a) A Library Management System (LMS) needs to be developed for an
Educational Institute to assist and manage a Library System efficiently. The
main objective of the LMS is to provide timely information for the users
(students as well as faculty members). The system should also keep track of
the following :
i) Issuing/Returning of books
ii) Purchase and maintenance of the books
iii) The amount of the fine to be collected from the students in case of late
return of the book.
Draw the context level diagram and first level data flow diagram for the above
case.
15
b) ABB Co. Ltd., decides to give Diwali bonus to all its employees for which the
management has divided the employees into three categories, namely,
Administrative Staff (AS), Office Staff (OS), Workers (W) and considered
the following rules.
i) If the employee is permanent and in the AS category the bonus amount is
three months salary.
ii) If the employee is permanent and in the OS category the bonus amount is
two months salary.
iii) If the employee is permanent and in the W category the bonus amount is
one month's salary.
iv) If the employees are temporary then half of the amount is given to them as
per the permanent employee's bonus amount.
Draw a decision tree to represent the above case.

5
P.T.O.

*3880203*

[3880] 203
2. Compare the classical Life Cycle and Prototyping models.

10

3. Explain the format and features of a good SRS.

10

4. Explain the types of maintenance and the methods of estimating maintenance


cost.

10

5. Explain the advantages and disadvantages of CASE tools.

10

6. Explain the features of a modern GUI form with a suitable example.

10

7. Write short notes on any four :

(45=20)

a) RAD
b) Data Dictionary
c) Web Engineering
d) Legacy systems
e) Code Design.

B/II/10/1,065

[3880] 24

*388024*

M.C.A. (Semester II) (Mgt. Faculty) Examination, 2010


IT-24 : DATABASE MANAGEMENT SYSTEM
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 is compulsory.
2) Solve any 5 from remaining questions.
3) State assumptions and draw well labelled diagrams wherever
necessary.
1. a) A company has set of departments. Each department has a set of employees,
a set of projects and a set of offices. Each employee has a job history (set of
jobs that employee has held). For each such a job the employee also has
salary history (set of salaries received while employeed on that job). Each
office has a set of phones. Normalize the above case upto 3-NF.
15
b) State Codd's rule.
5
2. What is data abstraction ? Explain data view levels. Also explain view and schema.

10

3. Explain M : N resolution of NDM, HDM and RDM.

10

4. Explain log based recovery.

10

5. Explain the following :


a) Object oriented d/b
b) Security and privacy of database.

10

6. Explain any two of the following :


1) Knowledge database
2) Datawarehouse schema
3) Aggregation.

10

7. Write short notes on (any two) :


1) Database users
2) Join and its types
3) 2-phase commit protocol
4) Transaction, properties and states.

10

B/II/10/205

*3880305*

[3880] 303

M.C.A. (Management Faulty) (Semester III) Examination, 2010


IT-33 : 303 : OBJECT ORIENTED PROGRAMMING USING C++
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 and 8 are compulsory.


2) Solve any four from Question No. 2 to 7.
3) Figures to the right indicate full marks.
1) I. Answer the following :

10

What will be the output of following program ?


a) #include<iostream.h>
#include<conio.h>
void main ( )
{
clrscr( );
char s[ ] = "OBJECT";
int i;
for(i = 0;s[i];i++)
cout<<"\n"<<s[i++]<<*(s+i++)<<*(i+s)<<i[s];
}
b) class base
{
private: int x;
protected: int y;
};
class derived:public base
{
protected:
int a, b;
void change( )
{
a=x;
b=y;
}
};
P.T.O.

[3880] 303

-2-

c) class test
{
static int count;
public:
static void showcount(void)
{
cout<<"count:"<<++count;
}
};
int test::count;
main( )
{
test t1,t2,t3;
t1.showcount( );
t2.showcount( );
t3.showcount( );
}
d) #include<iostream.h>
#include<conio.h>
public class A
{
int x=4;
};
private class B::class A
{
int x=20;
cout<<"x="<<x;
};
e) #include<conio.h>
#include<iostream.h>
#include<iomanip.h>
void main( )
{
int x=100;
float f=56.75;
cout<<hex<<x<<dec<<x<<endl;
cout<<setw(8)<<setfill('0')<<f;
}

*3880305*

*3880305*

-3-

[3880] 303

II) Explain new, delete and scope resolution operator.

2) a) Write a program to demonstrate overloading of constructor.

b) Explain pointer to data members using suitable example.

3) Write a program to overload increment and decrement operators.

10

4) a) What is virtual base class ? Explain with suitable example.

b) What is Namespace ? Explain nested namespace using a suitable example.

5) a) Write a function template to calculate area of circle.

b) Explain any five manipulators with suitable example.

6) Explain different types of inheritance with suitable examples of each type.

10

7) Write a program that reads the text file and replace all the occurrences of
vowels with '*' and copy the contents in new file. Also display the no. of
replacements made.
10
8) Write short notes on the following :

15

a) Exception Handling Mechanism.


b) New Style Cast.
c) Standard Template Library.

B/II/10/3,350

[3880] 305

*3880305*

M.C.A. (Semester III) (Management Faculty) Examination, 2010


(BM 31) 305 : MANAGEMENT SUPPORT SYSTEMS AND IS
SECURITY
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Notes : 1) Q. No. 1 and 7 are compulsory.


2) Attempt any four from Q. 2 to Q. 6.
3) Figures to the right indicate full marks.
1. Explain in detail information requirements for production function using systems
approach.
10
2. Explain the MIS structure based on organizational functions.

10

3. Explain the characteristics and limitations of human information processing.

10

4. Define DSS. Explain various components of DSS in detail.

10

5. Explain the Herbert-Simon model of decision making in detail. What are its
limitations ?

10

6. Define Expert System. Compare Expert System and DSS.

10

7. Write short notes on (any four) :

(45=20)

a) Coupling and decoupling of subsystems


b) Matrix organization structure
c) Quality of Information
d) Heuristic programming
e) Executive information system
f) Need for IS Auditing.

B/II/10/3,035

[3880] 31

*388031*

M.C.A.(Mgt. Faculty) (Sem. III) Examination, 2010


IT 31 : WEB SUPPORTING TECHNOLOGIES
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Solve any 3 questions from remaining.
1. Explain following tags with basic attributes :
a) <iframe>
b) <script>
c) <textarea>
d) <table>
e) <hr>

10

2. a) Design a calculator using Java Script, which will perform following operations :
i) Addition of 2 numbers
ii) Subtraction of 2 numbers
iii) Division of 2 numbers.
b) What is image mapping ? Explain client side image mapping with example.

10

10

3. a) Write a VB Script code for accepting email-id of user, from user before
submitting the form validate email-id with 3 different validations and provide
appropriate messages.
10
b) Explain array and string objects in Java Script.
10
4. a) Write XML-DTD to maintain 'Magazine'. Details like month, ISBN No., Title,
Publisher, Price.
10
b) What is style sheet ? Explain types of style sheet.
10
5. Write short note on any four :
a) Three Tire Web Architecture
b) XMLDSO object
c) Java Script DOM
d) Date object in VB Script
e) Web publishing.

20

B/II/10/215

[3880] 33

*388033*

M.C.A. (Semester III) (Mgt. Faculty)Examination, 2010


(IT-33) : MANAGEMENT SUPPORT SYSTEM
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Notes : 1) Q. No. 1 and 7 are compulsory.


2) Attempt any four from Q. 2 to Q. 6.
3) Figures to the right indicates full marks.
1. Explain in detail the information required in designing IT based MIS for handling
finance function.
10
2. Explain Newell-Simon model in detail.

10

3. What is MIS ? Explain its needs and objectives in a typical organization.

10

4. What is the use of sensitivity analysis ? Explain its types in detail.

10

5. Define DSS. Compare EIS and DSS.

10

6. Define Expert System. Compare Expert System and conventional system.

10

7. Write short notes on (any four) :

(45=20)

a) System concept
b) Matrix organization structure
c) Modeling process
d) Value of information
e) Information needs of managers at different levels
f) MIS Vs. Data Processing.

B/II/10/200

[3880] 403

*3880403*

M.C.A. (Semester IV) (Mgt. Faculty) Examination, 2010


IT-43:403 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 is compulsory.
2) Solve any five from remaining questions.
1. The university is in the process of up loading and updating the PhD guide list.
The process has following activities.
The guide uploads his academic details the guide selects his stream (i. e.
Engineering Management etc.) He also has to select the research centre where
he is associated or wants to associate. If the guide has vecancy, he can select the
students from the waiting list which is available at the research centre. The
guide can select Maximum upto 8 Ph.D. candidates and 4 M.Phil. candidates
for the about case.
a) Draw class diagram.

10

b) Draw use case diagram.

10

2. Explain RUP in detail.

10

3. a) Draw collaboration diagram for creating an e-mail account.

b) Draw sequence diagram for sending e-mail.

4. Explain various approaches for identifying classes.

10

5. Draw activity diagram for registering a billing complaint of your mobile phone.

10

6. Draw state transition diagram for digital watch.

10

7. Write short note on (any 2) :

10

a) Guidelines for preparing test plan


b) Types of pattern
c) Object persistence
d) OMT methodology.

B/II/10/945

*3880410*

[3880] 410

M.C.A. (Semester IV) (Management Faculty) Examination, 2010


BME 6:416 : ENTERPRISE RESOURCE MANAGEMENT
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three questions from Q. 2 to Q. 5.
3) Figures to right indicate full marks.
1. The Mudrika Group has selected INDIA-1 product to implement the ERP
system in their organization. They have opted for INDIA-1 for the following
reasons :
It fits with their requirements.
The Mudrika Group have confidence in the vendor.
It has the least technology.
It is a world-class product.
The implementation was started in 2009 and it was decided to do so in phases.
The first phase comprised financial, logistics HR and payroll activities. The
second phase was to cover production, quality control and fixed assets
management.
Some of the advantages of going in for the INDIA-1 are that the software
supported the implementation of the packaged solution without too many
changes having to be made in the software and provided competitive advantages
to the company by implementing effective and economical IT solutions.
Status of implementation : The phase comprising general ledger, purchase order
management system, payroll and sales order management systems at all the
locations is live.
The pitfalls encountered along the route implementation are :

Problems were encountered with first version release which took time to
stabilize.
Optimization of procedure took time.
ERP tuning complexity was underestimated.
Hardware requirements were underestimated.
P.T.O.

[3880] 45

*388045*

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2010


BM-E1 : MIS FRAMEWORK AND IMPLEMENTATION
(2005 Pattern) (Elective) (Old)
Time : 3 Hours

Max. Marks : 70

Notes : 1) Q. No. 1 and 7 are compulsory.


2) Solve any four questions from remaining.
3) Figures to the right indicates full marks.
1. Explain the impact of IT infrastructure in changing business environment.

10

2. Define MIS. Explain its features and limitations.

10

3. Explain the critical success factors for accounting information system.

10

4. How information technology changing the way finance function is performed ?

10

5. Explain the techniques of evaluating information technology investments.

10

6. What are common computer abuses that damage IT infrastructure ?

10

7. Write short notes on (any four) :

(45=20)

a) Characteristics of EIS
b) Threats to IT infrastructure
c) Objectives of Security Policy
d) Competitive Advantage
e) MIS as an instrument for organizational change
f) Expert System.

B/II/10/170

[3880] 46

*388046*

M.C.A. (Mgmt. Faculty) (Sem. IV) Examination, 2010


BME-2 : FOUNDATIONS OF DECISION PROCESS (Elective)
(2005 Pattern) (Old)
Time : 3 Hours
Instructions : 1)
2)
3)
4)

Max. Marks : 70
Question No. 1 is compulsory.
Solve any two questions from the remaining.
Figures to the right indicate full marks.
Use of Electronic Calculator is allowed.

1. a) Explain with suitable examples maximin, minimax and the regret criterion in
decision making.
10
b) A publisher is bringing out a book on Decision-Making. Its marketing
department has produced the following sales forecast covering next three
years.
Year
Demand of books
Probability

2000

3000

4000

5000

0.1

0.5

0.2

0.2

The contribution to the publishers fixed costs and profits for every book
sold is Rs. 90. If the book is not sold the publisher loses Rs. 40 per book. If
the publisher cannot meet the demand, he estimates he loses Rs. 10 per
book of demand not met, to cover the loss of goodwill and future sales.
Use different criterion of decision making. Determine the number of books
publisher should print in every criterion.
10
c) A businessman has two independent investments available to him, but he
lacks the capital to undertake both of them simultaneously. He can choose
to take A first and then stop, or if A is successful then take B, or vice versa.
The probability of success on A is 0.7 while for B it is 0.4. Both the
investments require an initial capital outlay of 20,000 and both return nothing
if the venture is unsuccessful. Successful completion of A will return
Rs. 30,000 (over cost) and successful completion of B will return Rs. 50,000
(over cost). Draw the decision tree and determine the best strategy.
10
P.T.O.

[3880] 46

*388046*

-2-

2. a) Explain two-person-zero-sum game. Illustrate with example.

10

b) What investment plan should he choose to maximize his expected utility ?


Assume that the rise or fall of either stock is independent of the other.
A dealer of boats has estimated the following distribution of demand for a
particular kind of boat.
0

Demand

0.14 0.27 0.27 0.18 0.09 0.04 0.01

Probability

Each boat costs him Rs. 7,000 and he sells them for Rs. 10,000 each. Any
boats that are left unsold at the end of the season must be disposed off for
Rs. 6,000 each. How many boats should be in stock so as to maximize his
expected profit ?
10
3. a) Solve the flowering game :

10

Player 2
Strategy

Player 1

b) A confectioner sells confectionary items. Past data of demand per week


(in hundred kilograms) is given below :
Demand

10

15

20

25

Frequency

11

21

Consider the following sequence of random numbers :


35, 52, 90, 13, 23, 73, 34, 57, 37, 83, 94, 56, 67, 66, 60
Using the above sequence, simulate the demand for next 15 weeks. Also
find the average demand per week.

10

*388046*

-3-

[3880] 46

4. a) A investor has Rs. 10,000 to invest in common stock. His selection is


between Companies A and B. He feels that for each of the investments, he
has a 0.7 probability for doubling his money and 0.3 probability of losing
half his money depending upon the companys stock rising or falling
respectively. His choices are :
10
i) Invest the entire money in A or B.
ii) Invest Rs. 5,000 in one company and not invest in order.
iii) Invest Rs. 5,000 in A and Rs. 5,000 in B.
If this utility values changes in assets are Rs. 10,000 = 1, Rs. 5,000 = 0.9,
Rs. 2,500 = 0.7, Rs. 0 = 0.4, Rs. 2,500 = 0.2, Rs. 5,000 = 0.
b) Write short notes on any two :
a) Various Queue Models
b) Simulation Techniques
c) Decision-making criterion.

10

B/II/10/170

[3880] 58

*388058*

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2010


ITE 4 : MOBILE COMPUTING
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and 6 are compulsory.


2) Attempt any three from the remaining questions.
1. a) Define the following terms (any five) :
I) MAC
II) WTP
III) Bitrate
IV) HLR
V) MMF
VI) VLR.
b) Explain functions of each layer in WAP architecture.

10

10

2. What are the database used in GSM network ? What are its functions ?

10

3. What is snooping ? Why it is used in TCP ?

10

4. How can DHCP be used for mobility and support to Mobile-IP ? Explain.

10

5. Describe the main steps in inter-BS hand off procedure.

10

6. Write short notes (any four) :

20

a) Features of WLAN
b) RTS-CTS protocol
c) Adhoc Network
d) Mobile agents
e) SIM
f) HIPER LAN.

B/II/10/135

[3880] 103

*3880103*

M.C.A. (Management Faculty) (Semester I) Examination, 2010


(BM-11) 103 : PRINCIPLES AND PRACTICES OF MANAGEMENT
AND ORGANISATIONAL BEHAVIOUR
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Solve any three of the remaining questions.
1. A) It is said that decision making is a crucial step for every manager- Justify.
And also explain decision making environment.
15
B) Define group dynamics. How effective teams play vital role in organizational
effectiveness ?
10
2. What are the causes of organisational conflicts ? Explain how the concept of
Johari window can be applied to resolve intrapersonnel and interpersonnel
conflicts.
15
3. What are the different managerial functions ? And explain staffing and directing
in details.
15
4. Explain McGregors theory X and theory Y.

15

5. What is organizing and state different structure of organization ?

15

6. Write short note on (any 3) :

15

1) Span of control and factors affecting it


2) Managerial skills
3) Delegation of authority
4) Team building
5) Leadership styles.

B/II/10/3,840

[3880] 10-D

*388010D*

M.C.A. (Mgt. Faculty) Examination, 2010


TAXATION PRACTICE (BME 6)
Time : 3 Hours

Max. Marks : 80

Instructions : 1) Attempt any five questions.


2) All questions carry equal marks.
1. Explain in detail the provisions under the Income Tax Act, 1961 regarding
short term and long term capital assets.
2. Explain in detail the provisions under the Income Tax Act, 1961 regarding
deduction of tax at source from payment to contractors and sub-contractors.
3. What are the conditions a partnership firm should fulfil under the Income Tax
Act, 1961 ?
4. What are the objects of the Central Sales Tax Act ? Also explain the provisions
therein for registration of dealers.
5. What are the different forms of salary ? Explain the basis of chargeability of
Salary Income.
6. Write a detailed note on deemed assets under the Wealth Tax Act.
7. Explain the meaning of the following terms under the Central Sales Tax Act :
i) Declared goods
ii) Deemed sale
iii) Ascertained goods
iv) Inter-state sale.
8. Write short notes on (any four) :
i) Belated return
ii) Importance of PAN
iii) Advance tax
iv) Deduction of unrealized rent from house property
v) Person under the Income Tax Act, 1961.

B/II/10/100

*388023*

[3880] 23

M.C.A. (Mgt. Faculty) (Semester II) Examination, 2010


IT-23 : INFORMATION SYSTEMS : ANALYSIS AND DESIGN
METHODOLOGIES
(2005 Pattern) (Old)
Time : 3 Hours

Total Marks : 70

Note : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three from remaining.
3) Figure to right indicate full marks.
1. a) Create a functional decomposition diagram for the video store whose
processes are described below :

10

A Video Store (AVS) runs a series of fairly standard video stores. Before a
video can be put on the shelf, it must be catalogued and entered into the
video database. Every customer must have a valid AVS customer card in
order to rent a video. Customers rent videos for three days at a time. Every
time a customer rents a video, the system must ensure that they do not have
any overdue videos. If so, the overdue videos must be returned and an
overdue fee paid before customer can rent more videos. Likewise, if the
customer has returned overdue videos, but has not paid the overdue fee, the
fee must be paid before new videos can be rented. Every morning, the store
manager prints a report that lists overdue videos; if a video is two or more
days overdue, the manager calls the customer to remind them to return the
video. If a video is returned in damaged condition, the manager removes it
from the video database and may sometimes charge the customer.
b) Income tax deduction is made in the month of March from the salary using
the following rules. Prepare the decision table and decision tree.
10
a) If the total income is less than Rs. 22,000, then no tax is deducted.
b) If the total income exceeds Rs. 22,000 but does not exceed Rs. 30,000,
then the deduction is 20% of the amount which exceeds Rs. 22,000.
c) If the total income exceeds Rs. 30,000 but does not exceed Rs. 50,000
then the deduction is Rs. 1600 + 30% of the amount which exceeds
Rs. 30,000.
P.T.O.

[3880] 402

*3880402*

M.C.A. (Semester IV) (Management Faculty) Examination, 2010


IT-42 : 402 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 7 are compulsory.


2) Solve any four from the remaining.
1. Write a test plan with scope of testing risks and contingencies, strategy, schedule,
staffing and training, deliverables, item pass/fail criteria for Online Library
System.
15
2. What is verification and validation ? Explain different types of verification
techniques with suitable examples.

10

3. a) Check the cyclomatic complexity for a program of adding 100 integers


with valid values and boundaries.

b) Process improvement is a vehicle for quality assurance comment.

4. Define Tester Workbench. Explain 11 steps of testing process life cycle.

10

5. Write test cases for member registration form with unique username, password,
retype password, name, address, contact no., email-id, date of birth fields. None
of the fields can be NULL.
10
6. Explain path, statement, branch and decision coverage in Structural Testing.
Give suitable examples for each.

10

7. Write short note (any 3) :

15

1) Integration Testing
2) CMM Model
3) CAST
4) Mc. Calls Quality Factors.

B/II/10/1,215

[3880] 405

*3880405*

M.C.A. (Semester IV) (Management Faculty) Examination, 2010


(BM-E1) 411 : MIS FRAMEWORK AND IMPLEMENTATION
(2008 Pattern) (New) (Elective)
Time : 3 Hours

Max. Marks : 70

Notes: 1) Q. No. 1 and 7 are compulsory.


2) Solve any four questions from remaining.
3) Figures to the right indicates full marks.
1. Explain the role played by IT infrastructure in Office Automation and
Transaction Processing System in an organization.

10

2. What is Expert System ? Explain components of Expert System.

10

3. Explain the basic elements of IT infrastructure. Also list and explain the IT
resources required to generate information.

10

4. How information technology changing the way marketing function is performed ?


Explain.
10
5. Explain the techniques of evaluating information technology investments.

10

6. What are common computer abuses that damage IT infrastructure ?

10

7. Write short notes on (any four) :

(45=20)

a) Characteristics of EIS
b) Features of MIS
c) Objectives of Security Policy
d) Competitive advantage
e) MIS as an instrument for organization change
f) Expert system.

B/II/10/650

*388043*

[3880] 43

M.C.A. (Management Faculty) (Semester IV) Examination, 2010


IT-43 : 403 : SOFTWARE ENGINEERING
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Notes : a) Q. 1 and Q. 7 are compulsory.


b) Solve any three from Q. 2 to Q. 6.
1. Joshi Caterers Pvt. Ltd. wants to develop the order processing and billing
software which presently works as under.
Company collects order from different corporate customers or individuals. The
customer fill up the order form describing various details like order details,
customer details, menu item details and number of thalies. 50% advance is
collected only from individual customers. Then after receiving the orders, Kitchen
Order Ticket (KOT), is issued to the kitchen and then kitchen issues the list of
raw material (excluded from available stock) to be purchased from the suppliers.
Purchase order is given and ordered material is received from the fixed suppliers
and forwarded further to the kitchen. After completion of the delivery of the
order, bill is issued to the customer on the basis of actual number of thalies or
ordered number of thalies whichever is more. Payment is accepted and receipt
is given to the customer.
Prepare SRS and system specification for the above system.
2. Explain inspection process, inspection team and defect loading in detail.

20
10

3. Explain various tools available for project management support in CASE tool. 10
4. Explain the relationship among software process, project and product. Elaborate
the need of software engineering for software projects.
10
5. What is the importance of documentation in software development ? Explain
various types of documentation in detail.
10
P.T.O.

*388043*

[3880] 43

6. Design the suitable data codification scheme for permanent registration number
for the students getting enrolled in the university for different courses from
different colleges in different years. Justify your design with suitable examples. 10
7. Write short notes on (any four) :

20

a) Web engineering.
b) Functional decomposition diagram
c) Reverse engineering
d) Physical Vs logical DFD
e) Types of review.

B/II/10/195

[3880] 48

*388048*

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2010


COLLABORATIVE MANAGEMENT (Old)
BME.4 : Elective (2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) Support your answers with relevant examples.
3) Figures to the right indicate full marks.
1. a) Describe BCG matrix.

b) Explain GE Nine Cell model. What is the advantage of GE Nine Cell over
BCG matrix ?

2. What do you understand by Mergers and Acquisitions ? What are various type
of mergers ? What are the issues in implementing merger strategy successfully ?
Cite latest Indian and Global examples relevant to the merger strategy.
14
3. State and explain the various issues involved in strategy implementation w.r.t.
a) Structural issues
b) Functional issues
c) Behavioural issues.

14

4. While the past has been about positioning the firm in its external environment,
today it is more about harnessing internal resources aimed at providing superior
benefits to customers. Is it that simple ? Comment.
14
5. How corporate strategies are developed using analysis of environmental appraisal ?
Explain.
14
6. Leadership style, corporate culture, values and ethics play a crucial role in effective
implementation of strategy. Comment.
14
7. Write short notes an any three :
a) Porters five forces framework
b) SWOT Analysis
c) Value chain
d) Mckinseys 7s frame work
e) Core competencies.

14

B/II/10/170

[3880] 50

*388050*

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2010


BME 6 : INVESTMENT TECHNOLOGY
(Elective) (2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) All questions carry equal marks.
1. What is portfolio theory ? Explain markowitz graphical portfolio analysis and
capital market theory in brief.
14
2. What is an equity share ? How earning and risk are estimated in this regards ? 14
3. Write short notes on any two :

14

a) Fundamental analysis
b) Behavior of share prices-technical analysis
c) Sources of investment information.
4. Are investors attracted to mutual funds due to risk in other investment
opportunities. Discuss on the background of present share market conditions.

14

5. What is Credit Rating ? How it is useful for investors ? Specify three popular
credit rating agencies in India.
14
6. Explain the concept fundamental analysis and technical analysis and also discuss
their utility for investors point of view.
14
7. How debts securities are valued ? How they are difficult from valuation of
warrants and convertibles ?

14

B/II/10/165

[3880] 501

*3880501*

M.C.A. (Management Faculty) (Semester V) Examination, 2010


IT-51 : HUMAN COMPUTER INTERFACE
(2008 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Question No. 1 is compulsory.
Answer any five from remaining.
Assume suitable data whenever necessary.
Figures at right hand indicates full marks.

1. Answer any four :

(54=20)

A) Explain any two golden rules of User Interface Design.


B) What is hyper media and hypertext ?
C) List and explain different types of expert reviews.
D) What do you mean by information visualisation ?
E) Explain different types of menus.
2. A) Describe the five measurable human factors.

(52=10)

B) Describe two important difference between STM Short Term Memory and
LTM Long Term Memory.
3. A) Explain three pillars of design.

(52=10)

B) Explain design guidelines for form-fill-in and dialog boxes.


4. Explain Object-Action Interface Model.

10

5. Explain with example computer supported co-operative work.

10

6. Explain six types tasks where pointing devices are application. Explain direct and
indirect control pointing devices.
10
7. Write short notes on (any two) :
A) LUCID methodology
B) Social and individual impact of user interface
C) Online manuals.

(52=10)

B/II/10/2,805

[3880] 504

*3880504*

M.C.A. (Management Faculty) (Semester V) Examination, 2010


(2008 Pattern)
ITE 1 : PROGRAMMING LANGUAGE PARADIGM (Elective)
Time : 3 Hours

Max. Marks : 70

Note: 1) Q. 1 and Q. 4 compulsory.


2) Attempt any four from remaining.
1. Explain stages from original syntax to executable form of typical compiler.

15

2. Explain layers of virtual computer for any program.

10

3. Explain syntactic elements of a language.

10

4. Differentiation between :

15

a) Vector and array


b) Interactive and batch processing environment.
5. Explain local data and local referencing environment.
6. Explain the role of programming language.

10

7. Explain stack and heap storage management.

10

B/II/10/2,095

[3880] 505

*3880505*

M.C.A. (Management Faculty) (Semester V) Examination, 2010


ITE-2 : ADVANCED UNIX (Elective)
(2008 Pattern)
Time : 3 Hours
Instructions : 1)
2)
3)
4)

Max. Marks : 70
Question one and seven are compulsory.
Solve any four from remaining.
Assume suitable data whenever necessary.
Figure at right hand indicates full marks.

1. Explain the following system calls/functions (any five) :


a) fork()
b) exit ()
c) wait()
d) fseek()
e) kill()
f) raise()

(52=10)

2. Describe the use of File and Record locking. And explain how to implement them.

10

3. What are message queues ? How they differ from pipes ?

10

4. What are pipes ? What happens when a pipe system is called ? Explain how they
are different from ordinary files.
(2+4+4)
5. What are the phases in signaling process ? Explain what is meant by the lifetime
of a signal.
(4+6)
6. What is shared memory ? What is the importance of it ? Explain in detail about
the process of Allocating a shared memory segment.
(3+2+5)
7. Write short notes on (any four) :
a) Semaphores Vs Record locking
b) Methods of Inter Process Communication
c) Process identifiers
d) Zombie process
e) Reading a message from the queue.

(54=20)

B/II/10/830

[3880] 507

*3880507*

M.C.A. (Management Faculty) (Semester V) Examination, 2010


ITE-4 : DISTRIBUTED DATABASE MANAGEMENT SYSTEMS (Elective)
(2008 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Q. No. 7 is compulsory. Solve any 5 from the remaining.
State assumptions wherever necessary.
Draw suitable diagram when needed.
Give suitable examples if required.

1. What is DDBMS ? Explain the components of DDBMS in detail.

10

2. Explain Peer-to-Peer distributed system architecture in detail.

10

3. Explain Top-Down design process for designing DDBMS.

10

4. What is query optimization ? Explain in detail join ordering in fragment queries. 10


5. Explain concurrency control for centralized database systems.

10

6. Explain the concept of mobile databases.

10

7. Write short notes on following (any four) :

(45=20)

a) Distributed Data Processing


b) Network topologies
c) Cold restart
d) Recovery protocols
e) Vertical fragmentation.

B/II/10/620

[3880] 57

*388057*

M.C.A. (Management Faculty) (Semester V) Examination, 2010


(2005 Pattern) (Old)
IT E3 : NETWORK SECURITY
Time : 3 Hours
Note: 1)
2)
3)
4)

Max. Marks : 70
Q. 1 and Q. 6 are compulsory.
Solve any three from Q. 2 to Q. 5.
Figures at right indicate marks.
Give appropriate examples wherever necessary.

1. a) Explain with example active and passive attacks on Networks.


b) Explain SSL encryption and how it is useful in web security.

10
10

2. Suggest model for internet security and justify its purpose.

10

3. Explain RSA algorithm in detail.

10

4. Explain Bell La-Pedula model for access control.

10

5. Explain various services provided by PGP for e-mail security.

10

6. Write short notes (any four) :

(45=20)

a) Non-repudiation
b) Digital signature
c) X.509
d) TLS
e) Cryptoanalysis
f) IDEA.

B/II/10/140

[3880] 61

*388061*

M.C.A. (Management Faculty) (Semester V) Examination, 2010


ITE 7 : PARALLEL COMPUTING
(2005 Pattern) (Old)
Time : 3 Hours
Instructions : 1)
2)
3)
4)
5)

Max. Marks : 70
Question No. 1 is compulsory.
Solve any four questions from 2 to 6.
Assume suitable data wherever necessary.
Draw suitable diagram wherever needed.
Figures to the right indicate full marks.

1. Discuss the following (any two) :

(25=10)

a) Gantt Chart
b) Hyper threading
c) Grain packing
d) Communication latency.
2. a) State and explain different fundamental parameters required for the analysis
of parallel algorithm.
b) Explain parallel virtual machine and list its salient feature.

3. a) Explain message passing with the issues decided by the system in the process
of message passing.
b) Explain pipeline processing and describe the architecture of pipeline
processing.
4. Differentiate between the following :

7
8

(7+8)

a) Tightly coupled system and loosely coupled system


b) Vector processing and scalar processing.
5. Explain the concept of thread with basic methods in concurrent programming
languages for creating and terminating of threads. Also give the advantages the
thread offers over other processes.
15
6. What is Flynns classification computer system ? List salient features of parallel
systems.
15

B/II/10/135

*[3880]201*

[3880] 201

M.C.A. (Semester II) (Management Faculty) Examination 2010


(IT-21) 201 : DATA STRUCTURE USING C
(2008 Pattern) (New)
Time : 3 Hours
Instructions :1)
2)
3)
4)
5)

Max. Marks : 70
Question 1 is compulsory.
Solve any 5 from 2 to 8.
Assume suitable data whenever necessary.
Draw suitable diagram whenever needed.
Figures at right hand indicate full marks.

1. A) A graph is implemented by Adjancency Matrix. Write non recursive algorithm


for depth first search.

B) Define Acyclic Graph

C) A integer Array is defined as x [100] [40] [40]. Find the address of cell
x [80] [30] [20]

D) Write short note on Applications of Graph.

2. Write a program for addition of two polynomials.

10

3. Write a program to implement priority queue using linked list.

10

4. Write a program to evaluate postfix expression.

10

5. Draw AVL Tree for the following :

10

Nita, Pratik, Priti, Ravan, Somu, Joggy, Amar, Parmeet, Naresh, Varun.
6. Write short notes on :

10

1) B tree
2) Expression tree.

P.T.O.

*[3880]201*

[3880] 201

7. A) Write an algorithm to insert and delete an element from a Queue.


B) Draw Binary search tree from the following data.

5
5

55, 60, 30, 25, 70, 10, 80.


Write postorder Traversal for the above tree.
8. A) Write a function to delete an element in B tree.
B) Explain space complexity and time complexity.

5
5

B/II/10/1,660

[3880] 204

*3880204*

M.C.A. (Mgmt. Faculty) (Sem. II) Examination, 2010


BM 21 204 : SOFT SKILLS (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. No. 1 and Q. No. 8 are compulsory.


2) Solve any four from Q. No. 2 to Q. No. 7.
3) Figures to the right indicate full marks.
1. Distinguish between non-verbal and verbal communication. Give examples.

15

2. What are the communication activities in educational organisation ?

10

3. You have visited your college library. Prepare a library usage instructions to be
put-up on notice board so that new students may use library with convenience
and ease.
10
4. You intend joining NewYork State University for further studies. A recommendation
letter need to be send to NewYork State University from your last academic
institution. Draft a letter from your Professor requesting him to give
recommendation letter. Probably he has forgotten you as your interaction was
very brief for one semester.
10
5. Discuss Listen to what is meant and not what is said.

10

6. What is the importance of listening and what are the barriers for effective listening ? 10
7. Explain the importance of Sign boards and Symbols in non-verbal communication. 10
8. Write short notes (any three) :

15

a) Eye Contact
b) Note taking habit
c) Voice mail
d) Minutes of meeting
e) Stress management.

B/II/10/960

[3880] 205

*3880205*

M.C.A. (Mgt. Faculty) (Semester II) Examination, 2010


MT 21 : 205 : PROBABILITY AND COMBINATORICS
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and question No. 4 are compulsory.


2) Solve any one from question nos. 2 and 3 and any one from
questions nos. 5 and 6.
3) Figures to the right indicate full marks.
4) Use of calculator and statistical table is allowed.
1. a) State and prove principles of Exclusion and Inclusion.

b) Solve the recurrence relation :

a n 7a n1 + 10a n2 = 0, for n = 2, given a0 = 0, a1 = 3.

c) An elevator starts at the basement with 8 people (excluding the elevator operator)
and discharges them all by the time it reaches the top floor, number 6.
i) In how many ways could the operator have perceived the people leaving
the elevator if all people look alike to him ?
ii) What if the 8 people consist of 5 men and 3 women and operator could tell
a man from a woman ?
d) Find the probability that in a group of 100 letters.
i) No letter is put into the correct envelope.
ii) Exactly 98 letters are put into correct envelope.
2. a) Find the number of positive integer solutions of equation x1 + x2 + x3 =15
subject to the conditions x1 5, x 2 6, x 3 8.

2n
n
2
b) i) = 2 2 + n

2
m + n
ii) n =

m n m n
m n
0 0 + 1 1 + ... + n n

P.T.O.

[3880] 205

*3880205*

-2-

3. a) Determine the discrete numeric function of generating function.

1 + z2
A (z) =
4 4z z 2

b) Find the coefficient of x6y6z5 in the expression of (2x2 3y3 + 5z)10.


4. a) Define following terms with illustration :

7
5

i) Exhaustive events
ii) Independent events
b) Suppose that a product is produced in three factories x, y and z. It is known
that factory x produces thrice as many items as factory y, and that factories y
and z produced the same number of items. Assume that it is known that 3
percent of the items produced by each of the factories x and z are detective
while 5 percent of those manufactured by factory y are defective.
All the items produced in the three factories are stocked, and an item of
product is selected at random.
What is the probability that this item is detective ?
c) The following table represents the joint probability distribution of discrete
random variable (X, Y).
Y

1
12

1
18

6
9
4

Find :
i) Marginal distribution of X and Y
ii) P (X = 1 Y = 1) .

3
0
1
2

15

5
5

*3880205*

-3-

[3880] 205

d) In a distribution exactly normal, 10% of the items are under 25 kilogram


weight and 90% of the items are under 70 kilogram weight. What are the
mean and standard deviation of the distribution ?

5. a) Obtain M.G.F. of binomial distribution, hence calculate mean and variance of


Binomial distribution.

b) The p.m.f. of a random variable X is


1

P ( X = x i ) = 15
0

for x i = 1, 2, 3, .... 15
otherwise

Find :
i) E(X)
ii) Var(X)
6. a) If the joint d.f. of (X, Y) is given by
F( X, Y) = (1 e x ) (1 e y ) ; x > 0, y > 0

= 0

otherwise

Find P(1 < X < 3, 1 < Y < 2).


b) State and prove memory-less property of exponential distribution.

8
7

B/II/10/2,900

[3880] 25

*388025*

M.C.A. (Management Faculty) (Semester II) Examination, 2010


MT 21 : PROBABILITY AND COMBINATORICS (Old)
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

N.B. : 1)
2)
3)
4)

Question No. 1 is compulsory.


Attempt any 2 from the remaining.
Figures to the right indicate full marks.
Use of calculator and statistical table is allowed.

1. a) State the Pigeonhole principle and solve the following problem :


Among 100 people, at least how many would have been born in the same
month ?

b) Determine the discrete numeric function of generating function


A (z) =

1
4 4z z 2

c) In a random arrangement of the letters of the word STATISTICS, find the


probability that all the vowels come together.

d) Obtain mean and variance of Binomial distribution.

e) A certain item is manufactured by three factories F1, F2, F3. It is known that F1
turns out twice as many items as F2 and that F2 and F3 turn out the same
number of items during a specified period.
It is also known that 2% of the items produced by F1 and F2 are defective,
while 4% of those manufactured by F3 are defective. One item is choosen at
random from the lot of items produced by those factories together and found
to be defective. Find the probability that it is produced by F1.

2. a) A monthly balance on the bank account of credit card holders is assumed to


be normally distributed with mean Rs. 5,000 and standard deviation Rs. 1,000.
Find the proportion of credit card holders with balance :
i) Over Rs. 6,500
ii) Between Rs. 4,000 and Rs. 6,000.

8
P.T.O.

*388025*

[3880] 25
b) Suppose the bivariate continuous r.v. (X, Y) has the joint p.d.f.
2 xy ; 0 X 1
x +
0Y2
f ( x, y) =
3

0
; o.w.
Compute :
i) P(Y < X)
ii) p (X + Y 1) .

c) Find the number of integer solution of equation x1 + x2 + x3 = 28 subject to


the conditions, 3 x1 9, 0 x 2 8, 7 x 3 17 .
3. a) Obtain mean and variance of Gamma distribution.

6
8

b) Following is the joint p.m.f. of (X, Y) :


X
1
2
3
Y
5
4
2
1
27
27
27
2

1
27

3
27

3
27

3
27

4
27

2
27

Find :
i) Marginal probability distribution of X and Y
ii) Conditional probability distribution of Y given X = 2
iii) Conditional probability distribution of X given Y = 3.

c) Find coefficient of x2y4z3 in the expansion of (x 2y + 3x)9.

4. a) If a random variable has p.d.f.


c
f (x ) =
; 1< x < 3
x
then find :
i) C
ii) E(X)

iii) Var(X).

b) Solve the recurrence relation,


a n + 2 + 2a n + 1 + a n = 9 2n
for n = 0 given a0 = 2, a1 = 4.

c) Define moment generating function and cumulant generating function with the
properties.

B/II/10/370

[3880] 301

*3880301*

M.C.A. (Sem. III) (Mgt. Faculty) Examination, 2010


(IT 31) 301 : WEB TECHNOLOGY
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 8 compulsory.


2) Solve any 5 from Question 2 to 7.
3) Figures to the right indicate full marks.
1. Describe features of XML ? Explain SOAP.

10

2. Explain ASP session object with examples.

10

3. Design a form to accept International Conference Registration details from


participants and validate any five fields using Java Script (Assume suitable
structure).

10

4. What is a style sheet ? Explain margin, font and background properties with
examples.

10

5. Write ASP code to accept visitors details along with in-time and out-time.
Assume suitable structure and insert information in database.

10

6. Explain array and date objects in VB script.

10

7. Explain (Java script) DOM object with suitable examples.

10

8. Write short notes on (any 2) :

10

a) Web Hosting
b) Embedded CSS
c) String object in Java Script.

B/II/10/3,170

[3880] 304

*3880304*

M.C.A. (Management Faculty) (Semester III) Examination, 2010


IT 34 : 304 : ADVANCED DATABASE MANAGEMENT SYSTEM
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No. 8 is compulsory.


2) Solve any five questions from 1 to 7.
3) Figures at the right indicate marks.
1. a) What is OLAP ? What are 3 types of OLAP servers ?
b) Outlier analysis in Data mining.
2. a) Explain various concurrency control approaches in DDBMS.
b) Explain deadlock handling in DDBMS.
3. a) Explain data warehouse architecture in detail.
b) Write note on Apriori algorithm.
4. a) Explain DTD with example.

(6)
(4)
(6)
(4)
(6)
(4)
(6)

b) What are various XML parsers ?

(4)

5. a) Compare RDBMS, OODBMS and ORDBMS.

(6)

b) Explain in brief Parallel database architecture.

(4)

6. a) Explain text mining with example.


b) Explain distributed catalog manager.
7. a) Compare with example homogeneous and heterogeneous databases.
b) Explain data cubes.

(6)
(4)
(6)
(4)

8. Write short note on (any four) :

(54=20)

a) XML name space


b) KBS
c) Machine learning
d) Mobile databases
e) Data preprocessing.
______________
B/II/10/2,995

[3880] 32

*388832*

M.C.A. (Semester III) (Management Faculty) Examination, 2010


IT - 32 : COMPUTER NETWORKS
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 7 are compulsory.


2) Solve any three from the remaining.
3) Draw neat diagrams wherever necessary.
1. a) Describe Ethernet in terms of standards, frame formats and specifications.
b) Explain different switching techniques in detail.

10
10

2. Compare the Go-Back N ARQ protocol with selective Repeat ARQ.

10

3. Explain DHCP in detail. Explain scope resolution in DHCP with example.

10

4. What is firewall ? Explain policies and rules of firewall.

10

5. Explain in detail the differences between POP 3 and IMAP 4.

10

6. Explain Guided and Unguided Media in detail.

10

7. Write short note on (any four) :

20

1) CSMA/CD
2) Application layer
3) Digital signature
4) IPv4 Vs IPv6
5) ATM
6) SMTP.

B/II/10/220

*388034*

[3880] 34

M.C.A. (Mgmt. Faculty) (Semester III) Examination, 2010


IT 34 : OBJECT ORIENTED PROGRAMMING USING C++
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Notes : 1) Q. 1 is compulsory.
2) Figures to right indicate full marks.
1. Explain the output of following (any five) :

(52=10)

a) int a = 10;
void main ( )
{
int a = 20;
{
int a=30;
cout < < a < < :: < < :: :: a;
}
}
b) Write C++ syntax for :
i) declaring a pointer to a struct
ii) boolean not
c) Explain the difference between ' \ n' and endl
d) char *p = "abcde";
char q [ ] = "ABCDE";
Then which is true and why ?
i) p = q;
ii) q = p;
P.T.O.

[3880] 34

-2-

*388034*

e) main( )
{
char s [ ] = man;
int i;
for ( i = 0; s[i]; i++)
cout < < \ n < < s[i] < < * (s + i) < < * (i + s) < < i[s];
{
f) #include<iostream.h>
void main()
{
char *p = hello;
char * q = p;
cout < < p < < endl < < q;
q = goodbye;
cout < < endl < < p << endl < < q;
}
2. Answer any four :

(45=20)

a) Explain scope resolution operator :: in c++ with suitable example.


b) What are the rules of overloading the operators ?
c) Explain friend with suitable example.
d) Write a short note on pointers to data members and pointer to objects.
e) What are containers ? Compare its type.
3. Answer any two :

(210=20)

a) Create a class cricket having data members player ID, player name, no. of
inning, total runs and number of time not out. Add necessary member
functions in it. Write a c++ program to accept the complete information of
player from the user. Calculate its average of runs and display all information.
Overload insertion << and extraction >> operators to accept and display
information. Create array object for 11 players of team.

*388034*

-3-

[3880] 34

b) Write a C++ program to read the text file character by character, check the
character if it is vowels then write it into the file VOWEL and if it is
consonants then write it into CONO, open these two files for write purpose.
c) Create a class student with data members Roll no., Name, Marks of 4 subjects.
Also ass proper member functions to it, to accept and display data. Calculate
the total marks, percentage and result of each student and write this complete
data for 10 students in the file STUD in binary format. Read the file STUD
and display the information.
4. Answer any four :

(45=20)

a) Define Exception. Write a program to accept the string and display length
of string. Handle following exception.
1) Zero length string
2) Excess length string
b) Explain difference between public, private and protected class with C++ code.
c) What is generic programming ? Write a program to swap two integer values
using template.
d) Write a program to design a class for addition of 2 objects using friend
function.
e) Write a program to demonstrate invocation of constructor and destructor.
______________
B/II/10/235

*388035*

[3880] 35

M.C.A. (Semester III) (Management Faculty) Examination, 2010


IT 36 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 is compulsory.


2) Answer any five from the remaining.
3) Mention the assumptions made for solving case study.
1. a) The University research cell publishes research papers on subjects like
mathematics, management and computers. Each paper may have more than
one author. Reviewers review the papers as per their subject specialization.
The selected papers are published in the journals. The journals are identified
by publisher details, title, volume and issue number. The publisher enters
his details along with the ISSN number of the journal. One issue of the journal
contains many papers on various subjects. The review report is sent by the
research cell to the authors giving the remarks from the reviewers. The publisher
sends the issue of the journal to the author in which his paper is printed.
i) Draw class diagram.
ii) Draw use case diagram.

(15)

b) Explain aggregation and composition with example.

(5)

2. Explain the four phases of RUP with suitable example.

(10)

3. a) Draw a sequence diagram for booking an air ticket for you and your friend. (5)
b) Differentiate between OOAD and SSAD.
4. Explain with the help of example Grady Booch's methodology for Object
Oriented Design.

(5)

(10)

P.T.O.

*388035*

[3880] 35
5. Draw the state transition diagram for vending machine.

(10)

6. Draw an activity diagram for arranging the college orchestra in your annual
gathering.
(10)
7. Write short notes on (any two) :

(10)

a) Categories of pattern
b) Multitiered architecture
c) CRC
d) Test cases guidelines.

______________
B/II/10/215

[3880] 401

*[3880]401*

M.C.A. (Management Faculty) (Sem. IV) Examination, 2010


(IT 41) 401 : JAVA PROGRAMMING
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Q. 1 and Q. 8 are compulsory.


ii) Solve any five from Q. 2 to Q. 7.
1. Solve the following questions :

10

a) Explain throw and throws clauses.


b) Explain Dynamic Method Dispatch.
c) What is Daemon Thread ?
d) Explain Action Listener.
e) What is Boxing and Unboxing ?
2. Write a Java socket program for client-server chatting application.

10

3. Write a JDBC application for registration of participation in National Level Seminar.


(Assume Suitable Table Structure).
10
4. Write RMI application to invoke sales commission calculation method. Accept
sales amount from client and display commission on server. If sales is between
5 50 lakh commission is 10% of sales amount. For above commission is 15%. 10
5. Write a program to accept senior citizen name and age. Store the contents in text
file. Throw invalid age exception for age below 60.
10
6. Write an applet to display scrolling image in an applet window using thread.

10

7. Design GUI based JDBC application to search and display employee details
from given empid. (assume suitable table structure)

10

8. Write short notes on any two :

10

a) MVC Architecture
b) Marshalling and Unmarshalling
c) Random Access File Class.

B/II/10/1,385

[3880] 404

*[3880]404*

M.C.A. (Management Faculty) (Semester IV) Examination, 2010


(MT-41) 405 : OPTIMIZATION TECHNIQUES (2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : i)
ii)
iii)
iv)

Question No. 1 is compulsory.


Attempt any two questions from the remaining.
Figures to the right indicate full marks.
Use of electronic calculator and statistical table is allowed.

1. a) The data regarding a project with activities A to I are given below :


Activity

Immediate
Predecessor

Time
(Weeks)

C, D

D, F

E,G,H

i) Draw the project network and find critical path.


ii) Also find total, free and independent floats for each activity.
b) Solve the integer programming problem by fractional cut method :

Max : Z = 5x1 + 7x2


Stc. :

2x1 + 3x2 6
6x1 + x2 30
x1, x2 0 and are integers.
P.T.O.

[3880] 404

-2-

*[3880]404*

c) On an average, 6 customers reach a telephone booth every hour to make calls.


Assuming that arrivals follow Poisson distribution with 4 customers in a
30-minute time period,
6
i) find the probability that the telephone booth will be idle.
ii) what is the probability that a caller has to wait for more than 5 minutes
outside the telephone booth ?
d) Solve the following assignment problem :
6
1

12

10

15

22

18

10

18

25

15

16

12

11

10

14

10

13

13

12

12

11

13

10

2. a) Solve the LPP by 2-phase simplex method.

Max : Z = 2x1 + 3x2 + 4x3


Stc. :

3x1 + x 2 + 6x 3 600
2x1 + 4x 2 + 2x3 480
2x1 + 3x2 + 3x3 = 540
x1, x2, x3 0.

b) A machine costs Rs. 500. Operation and maintenance costs are zero for the
first year and increase by Rs. 100 every year. If money is worth 5% every
year, determine the best age at which the machine should be replaced. The
resale value of the machine is negligibly small. What is the weighted average
of owning and operating the machine ?

c) Explain the inventory model with shortages.

*[3880]404*

[3880] 404

-3-

3. a) Obtain initial solution by VAM and find the optimal solution by MO-DI method
for the following transportation problem.

Depot
A

Tons

60

Manufacturing Q
centre
R

35

40

22

45

20

18

30

b) An aircraft uses rivets at an approximately constant rate of 5000 kg per year.


The rivets cost Rs. 20 per kg. and the company personnel estimate that it
costs Rs. 200 to place an order and the carrying cost of inventory is 10% per
year. Find :
i) Economic lot size
ii) Minimum annual inventory cost.

c) Explain different types of replacement policies.

4. a) The normal and crash duration with cost for various activities is given below :
Activity

Time (days)
Normal

Crash

Cost (Rs.)
Normal

Crash

12

4,000

12,000

13

3,000

6,000

24

2,800

4,000

34

12

9,000

11,000

46

10,000

13,000

56

4,900

7,000

35

1,800

5,000

57

11

6,600

12,000

67

10

4,000

8,400

[3880] 404

*[3880]404*

-4-

Indirect cost of the project is Rs. 2,000 per day.


i) Draw the network of the project.
ii) Find the normal duration and cost of the project.
iii) Find the optimum duration and cost of the project.
b) Express the following assignment problem as LPP :
Machine\ Job

J1

J2

J3

J4

J5

M1

11

M2

12

11

10

M3

M4

M5

11

c) Explain different time estimates in PERT with illustration.

B/II/10/ 1,435

[3880] 407

*3880407*

M.C.A. (Management Faculty) (Sem. IV) Examination, 2010


413 : INFORMATION SYSTEM AUDIT AND GOVERNANCE
(2008 Pattern) (New) (Elective)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question no. 1 is compulsory.


2) Attempt any 5 from Q. 2 to Q. 7.
1. Answer the following :

20

a) Explain physical access control in IS Audit.


b) Govt. of India planning to implement online voting system for any election of
our country.
As been an IT Auditor Identify the possible threats and input control for
such system.
2. What is e-Governance ?

10

3. What are different evidence collections techniques used by auditor ? Explain.

10

4. What are the risk involved in IT-system company ? How they will handle it ?

10

5. Explain role of DA and DBA in auditing.

10

6. Explain the term Network Audit with an example.

10

7. Write short note on (any two) :

10

a) ISACA standards
b) Digital signature
c) Security issues in e-commerce
d) Management control.

B/II/10/670

*3880408*

[3880] 408

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2010


BME-414 :Elective COLLABORATIVE MANAGEMENT (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) Support your answers with relevant examples.
3) Figures to the right indicate full marks.
1. a) Define strategy and strategic management.

14

b) Explain the following terms :


i) Vision,
ii) Mission,
iii) Objectives,
iv) Purpose and
v) Goals.
2. What is Environment Threat and Opportunity Profile (ETOP) ? What is its role in
strategic analysis ? Explain with relevant examples.
3. Write short note on any three :

14
14

a) Value chain.
b) Diversification.
c) Core competencies.
d) McKinseys 7s frameworks.
e) Porters five forces framework.
4. Write a detail note on the nature, importance of strategic evaluation.

14
P.T.O.

*3880408*

[3880] 408

5. What are stakeholders of an organization ? What roles do different stakeholders


play in strategic issue identification and resolution ?
14
6. Explain different types of growth strategies. Why many Indian companies are
acquiring global companies ? What are the issues involved in post acquisition
scenario ?
14
7. Write short notes on any two :

14

a) Synergy and dysergy


b) Project implementation
c) Symptoms of malfunctioning of strategy
d) GE 9 cell model.

B/II/10/660

[3880] 44

*388044*

M.C.A. (Management Faculty) (Semester IV) Examination, 2010


MT 41 : 404-OPTIMIZATION TECHNIQUES
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : i)
ii)
iii)
iv)

Question No. 1 is compulsory.


Attempt any two questions from the remaining.
Figures to the right indicate full marks.
Use of electronic calculator and statistical table is allowed.

1. a) The details of a project consisting of activities are summarized in table


below :
Activity

Immediate
Predecessors

(9)

Duration (days)
to

tm

tp

A, B

E, F

E, F

10

D, H

14

I, G

i) Draw the Project Network.


ii) Find the critical path and expected project duration.
iii) What is the probability of completing the project on or before 25 weeks ?
P.T.O.

[3880] 44

*388044*

-2-

1. b) Solve the Integer Programming Problem by Gomory's cutting plane method. (9)
Max : Z = 10x1 + 12x 2
Subject to : 5x1 + 2x2 3
x1 + 2x 2 2
x1, x2 0 and integers.
c) A television repairman finds the time spent on his jobs has an exponential
distribution with a mean of 30 minutes. If he repairs sets in the order in
which they came in, and if the arrival of sets follows a Possion distribution
approximately with an average rate of 10 per 8-hour day.
Calculate :
i) TV repairman's idle time each day.
ii) Expected waiting time for a TV in the shop.

(6)

d) A department has five employees with five jobs to be performed. The time
(in hours) each men will take to perform each job is given in the effectiveness
matrix. How should the jobs be allocated, one per employee, so as to
minimize the total man-hours ?

(6)

Jobs

Employees
I

II

III

IV

10

13

15

16

18

13

10

11

12

10

12

*388044*

[3880] 44

-3-

2. a) The following table shows the costs of transporting one unit from warehouse
to the customer. Find the transportation cost.
(9)
Warehouse
b

Supply

18

11

10

20

18

Demand

15

16

12

13

Customer

b) The following mortality rates have been observed for a certain type of fuse : (6)
Week

% failing by end of week

15 35 57

5
100

There are 1000 fuses in use and it costs Rs. 5 to replace an individual fuse. If
all fuses were replaced simultaneously it would cost Rs. 1.25 per fuse. It is
proposed to replace all fuses at fixed intervals of time, whether or not they
have burnt out and to continue replacing burnt out fuses as they fail. At what
interval the group replacement should be made ? Also suggest which policy,
individual or group replacement should be adopted ?
c) Define :
i) Degenerate solution
ii) Unbounded solution.
(5)
3. a) Solve by 2-phase, the following LPP :
(9)
Min : Z = 12x1 + 18x2 + 15x3
Subject to : 4x1 + 8x2 + 6x3 64
3x1 + 6x2 + 12x3 96
x1, x2, x3 0.
b) The production department for a company requires 3600 kg of raw material
for manufacturing a particular item per year. It has been estimated that the cost
of placing an order is Rs. 36 and the cost of carrying inventory is 25% of the
investment in the inventories. The price is Rs. 10 per kg.
(6)
Calculate :
i) Optimal lot size
ii) Frequency of order
iii) Minimum yearly total inventory cost.
c) Explain the replacement model where value of money changes and machines
worn out gradually.
(5)

[3880] 44

*388044*

-4-

4. a) Consider the details of the project shown below. The indirect cost of the
project is Rs. 130 per day. Find the crashed duration of the project with
optimal cost.
(9)

Activity

Immediate
Predecessors

Normal

Crash

Time

Cost

Time

Cost

600

750

400

450

1200

1650

1000

1360

10

500

550

C, E

800

910

1500

1660

b) Describe the elements of queuing system.

(6)

c) Express the following transportation problem in the form of LPP.

(5)

Source

Destination
D1

D2

D3

D4

Supply

O1

15

24

11

12

5000

O2

25

20

14

16

4000

O3

12

12

22

13

7000

Demand

3000

2500

3500

4000

______________
B/II/10/350

[3880] 49

*388049*

M.C.A. (Semester IV) (Mgt. Faculty) Examination, 2010


BME 5 : DECISION SUPPORT SYSTEMS (Elective)
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 8 are compulsory. Out of the remaining attempt


any 5 questions.
2) Full marks are indicated to the right of each question.
3) All questions carry equal marks.
1. Define DSS. Explain the characteristics of DSS.

10

2. Discuss Supply Chain Management (SCM) and its benefits.

10

3. Define ESS. Explain the characteristics and capabilities of ESS.

10

4. What are the various tools that are used for DSS development ? How would you
choose a DSS development tool ?
10
5. Explain the various component of DSS by giving a schematic view of DSS.

10

6. How do transactional systems differ from data warehousing systems.

10

7. Will businesses integrate EIS and DSS ? Explain the benefits/problems associated
with this.
10
8. Write short notes (any two) :

10

1) MRP
2) Business Intelligence
3) Knowledge Based Expert Systems.

B/II/10/200

[3880] 502

*3880502*

M.C.A. (Management Faculty) (Semester V) Examination, 2010


IT 52 : SOFTWARE IT PROJECT MANAGEMENT
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note: 1) Q. 1 and Q. 8 are compulsory.


2) Solve any 5 from Q. 2 to Q. 7.
1. a) You are required to give cost estimation for the project of size 32,000 LOC.
b) Define CPM/PERT.

6
4

2. Why change control is necessary ? Explain structured change control


process.

10

3. What is maintainability ? Discuss various maintainability metrices.

10

4. Testing is crucial phase in Project Comment.

10

5. a) Explain IT infrastructure management.


b) How FPA is useful for cost estimation ?

5
5

6. What do you mean by a project ? How S/W projects are unique in the
characteristics ?

10

7. User is very important in Project Management Comment.

10

8. Write short note on (any two) :


i) Items of S/W configuration Management.
ii) Tools for S/W Project Management.
iii) Activities in SQA.
iv) Acceptance testing.

10

B/II/10/2,805

*3880506*

[3880] 506

M.C.A. (Management Faculty) (Semester V) Examination, 2010


ITE 3 : MOBILE WIRELESS COMPUTING (Elective)
(2008 Pattern)
Time: 3 Hours

Max. Marks: 70

Instructions : 1) Question No. 1 and 7 are compulsory.


2) Attempt any three questions from the remaining questions.
1. a) Define the following terms (any five) :
i) BSS
ii) Frame Error Rate
iii) UMTS
iv) MSC
v) SIM
vi) WTP

10

b) What is WAP Gateway ? What are its functions ? Explain.

10

2. Explain case-of-address mechanism used in mobile IP.

10

3. Explain the features of wireless networks. What are the advantages and
disadvantages of wireless networking ?

10

4. What is handoff ? How do you perform handoff during roaming ? Explain.

10

5. a) Compare DSSS and OFDM

b) Explain RTS-CTS protocol

6. What is the basic purpose of DHCP ? Name and explain the entities of DHCP.

10

7. Write short notes (any four) :

20

a) HIPER LAN
b) Indirect TCP
c) BLUE Tooth
d) Mobile agents
e) VLR
f) SPIN.

B/II/10/725

[3880] 53

*388053*

M.C.A. (Semester V) (Management Faculty) Examination, 2010


IT 53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 7 are compulsory.


2) Attempt any four from remaining.
1. A deemed university want to implement e-learning model for distance learning
programmes. As a IT consultant do comparative analysis of various e-learning
models and suggest suitable e-learning model to university and justify your
suggestion.
(15)
2. Explain various electronic payment methods. How transactions are performed
in E-Banking ?
(10)
3. Explain various models of E-Governance. Which model is successfully
implemented in India ?

(10)

4. Explain various tools for Knowledge Management.

(10)

5. Explain supply chain management and E-Logistics.

(10)

6. Explain components of Embedded system with their functionality.

(10)

7. Write short notes (any three) :

(35=15)

a) RFID
b) GPS
c) ECS
d) Digital Signature
e) BCP.
______________
B/II/10/225

[3880] 54

*388054*

M.C.A. (Sem. V) (Management Faculty) Examination, 2010


BM 51 : SOFTWARE PROJECT MANAGEMENT
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Note : 1) Que. 1 and Que. 8 are compulsory.


2) Assume suitable data if required.
3) Solve any five from Que. 2 to Que. 7.
1. a) Explain the reasons for project failure.

b) Draw network diagram for the following project activities.


Activity

Predecessor

10

Duration (Days)

D, J

E, B

i) Find critical path.


ii) If activity D takes 5 days, what is impact on project schedule.
2. What do you mean by Resource Planning and explain different types of resource
used in S/W project.

3. Write objective of Formal Technical Review and what it includes.

4. What do you mean by repository and explain its role in software configuration
management.

8
P.T.O.

*388054*

[3880] 54

5. What are different software quality standard ? Explain in detail SEI-CMM and its
significance with the software industry.

6. Explain recruitment process of IT personnel.

7. Explain different types of testing and what its role in project.

8. Write short note on (any 3) :

15

a) User role in Project Management


b) Team Models
c) Change Control
d) MS-Project.

B/II/10/270

[3880] 55

*388055*

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2010


ITE 1 : DISTRIBUTED DATABASE MANAGEMENT SYSTEMS
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No. 7 is compulsory. Solve any 5 from remaining.


2) Figures to the right indicate full marks.
1. Discuss in detail the problem areas in DDBMS environment.

10

2. Explain peer-to-peer distributed systems architecture.

10

3. Explain various distribution design issues.

10

4. Explain the generic layering scheme for distributed Query processing.

10

5. What is Query optimization ? Explain the distributed query optimization Algorithms. 10


6. Explain concurrency control for distributed DBMS.

10
(4 5=20)

7. Write short notes (any 4) :


1) Deadlock management
2) Characteristics of transactions
3) Object clustering
4) Mobile DBMS
5) Reliability techniques and protocols
6) Vertical fragmentation.

B/II/10/140

*388056*

[3880] 56

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2010


ITE2 : ARTIFICIAL INTELLIGENCE
(2005 Pattern) (Old)
Time: 3 Hours
Instructions : 1)
2)
3)
4)

Max. Marks: 70
Q. 1 is compulsory.
Solve any five questions from Q.2 to Q.7.
Figures to right indicate full marks.
Draw neat and suitable diagram wherever necessary.

1. a) Define the term Artificial Intelligence (AI) and discuss it in detail with respect
to the traveling-salesman problem.
10
b) How the problem reduction and AND-OR graphs can be used as problem
solving tools ? Explain in detail with appropriate examples.
10
2. Explain in detail the min-max search procedure used in game playing along
with an appropriate example.
3. a) Formalize the monkey-banana problem using predicate logic.
b) Prove that the monkey can reach the bananas using resolution proof.

10
5
5

4. Represent the following statement using conceptual dependency model : India


challenged Australia with better performance in cricket.
10
5. Explain in brief the following sub-tasks involved in natural language
understanding :
i) Signal processing
ii) Syntactic analysis
iii) Semantic analysis
iv) Pragmatics

10

6. Construct a script for going to a movie, from the viewpoint of the movie goers. 10
7. Write short notes on any two of the following :

10

a) Forward Vs Backward reasoning


b) A* Algorithm
c) Architecture of an expert-system.

B/II/10/150

[3880] 60

*388060*

M.C.A. (Semester V) (Management Faculty) Examination, 2010


ITE6 : HUMAN COMPUTER INTERFACE
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 7 are compulsory.


2) Solve any three from remaining.
1. A company want to maintain customer data in CRM system. A data entry form
is to be design to acquire customer data. Design interactive data entry form.
Explain the design principles and methodology used, human factors considered
for this design. How usability will be tested for this design ?
(20)
2. Explain phase search and multimedia search design in a website.

(10)

3. Explain principles of documentation design. How printed manuals are designed ? (10)
4. a) Explain speech recognition devices. State problems associated with these
devices.
b) Explain participatory design process.

(5)
(5)

5. Explain importance of icons and images in dialog design. How presentation


sequence is important for icons and images ?
(10)
6. a) Explain guidelines for design of effective error messages.
b) Explain object action interface principles and rules.
7. Write short notes (any four) :

(5)
(5)
(45=20)

a) Accessibility tests
b) Virtual environments
c) On-line documentation design
d) Information virtualization
e) Hypertext and hypermedia.
______________
B/II/10/155

[3880] 63

*388063*

M.C.A. (Semester V) (Mgt. Faculty) Examination, 2010


ITE 9 : PROGRAMMING LANGUAGE PARADIGMS
(2005 Pattern) (Old)
Time : 3 Hours

Total Marks : 70

Note : 1) Figures to the right indicate full marks.


2) Q. No. 7 is compulsory.
3) Solve any 5 from remaining.
1. Explain Stack and Heap based storage management.

10

2. Discuss the process of program interpretation of execution.

10

3. Explain variations in sub-program control.

10

4. Write in detail syntactical elements of language.

10

5. Explain layers of virtual computer for any program.

10

6. What is Program Environment ? Discuss effect of environment language design. 10


7. Short notes (any 4) :

20

1) Attributes of good language


2) Firmware computer
3) Arithmatic and non-arithmatic expression
4) Embedded systems
5) Features of C++ Programming.

B/II/10/265

[3880] 7

*38807*

M.C.A. (Management Faculty) Examination, 2010


ITE 6 : IMAGE PROCESSING (2002 Pattern)
Time : 3 Hours
Instructions : 1)
2)
3)
4)

Max. Marks : 80
Solve any four questions from 1 to 5.
Assume suitable data wherever necessary.
Draw suitable diagram wherever needed.
Figures to the right indicate full marks.

1. a) Explain Dilation and Erosion morphological operators.

(10)

b) Discuss the adaptive median filter to restore an image in the presence of


noise only.

(10)

2. a) Explain smoothing frequency domain filters.

(10)

b) What is histogram of an image ? Explain histogram equalization.

(10)

3. What is the need for image segmentation ? Discuss any three segmentation
algorithm in detail.

(20)

4. Define Edge detection. Explain various edge detection techniques of an


image.

(20)

5. Write short notes on :

(54=20)

a) Geometric mean
b) Harmonic mean
c) Median
d) Directional smoothing.

______________
B/II/10/100

[3980] 15

*398015*

M.C.A. (Semester I) Examination, 2011


BM-12 : PRINCIPLES OF MANAGEMENT FUNCTION AND
ORGANIZATION BEHAVIOUR (Old)
(Mgt. Faculty-2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q. 1 is compulsory.


2) Attempt any three questions from the remaining questions.
3) Figures to the right indicate full marks.
1. a) Write a detail note on contribution of F.W. Taylor for the development of
Management.

10

b) Explain the basic functions of management. Do these functions vary from


industry to industry discuss.

15

2. What is Managerial Decision Making ? Explain Herbert Simons model in


detail.

15

3. Define leadership and state its importance along with different leadership styles. 15
4. Define and explain the concept of Organisation. Explain the process of organizing
in detail.
15
5. Elaborate on essential managerial skills and explain how these vary as per different
managerial level ?
15
6. Define and explain the term Constructive and Destructive Conflicts and discuss
various strategies to encourage constructive conflicts and discourage destructive
conflicts.
15
7. Write short notes on (any three) :
1) Team Building
2) Group and Group Dynamics
3) OB-Need and Importance
4) Various approaches to Management.

15

B/I/11/120

[3980] 403

*3980403*

M.C.A. (Semester IV) (Mgt. Faculty) Examination, 2011


IT-43:403 : OBJECT ORIENTED ANALYSIS AND DESIGN (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Answer any five from the remaining.
3) Mention the assumptions made for solving case study.
1. The university has arranged a project competition for which students of BE,
MCA, MCM, MCS College students can register online in a group. The panel of
judges are invited from colleges of other Universities. The rules of the competition
are as follows :
1) One college can send any number of groups.
2) One group can how minimum 2 and maximum 4 members.
3) One group can not develop more than one project .
4) One student can participate in only one project group.
5) One pannel of judges consist of minimum 2 and maximum 5 judges.
6) One pannel of judges can judge many project.
The University declares result passed on the points given by the pannel of Judges.
For the above case,
Draw
i) Use case diagram

10

ii) Class diagram

10

2. Explain RUP in detail.


3. a) Draw sequence diagram for sending E mail with attachment.
b) Draw collaboration diagram for forwarding SMS to your friend.
4. Draw activity diagram for online hotel room booking. Write your own assumptions.

10
5
5
10
P.T.O.

*3980403*

[3980] 403

5. Draw state transition diagram for a toy Robot, with following details/
10

functionalities.

1) When robot is switched on it greets you as per the day time


(morning, afternoon etc.) ?
2) As per your order walk straight, run and stop, it behaves accordingly.
3) Set time for the robot.
4) After 6 pm it switches on its own lights.
5) When the battery is down it gives an indication for charging it by saying
Battery down ? Similary after the charging is complete it says Battery full.
6. Explain Multitiered Architecture.
7. Write short notes on (any 2) :

10
(52=10)

1) Patterns and antipatterns


2) Test cases guidelines.
3) Inheritance.
4) CRC.

B/I/11/2,515

*3980410*

[3980] 410

M.C.A (Semester IV) (Mgt. Faculty) Examination, 2011


BME-6-416 : ENTERPRISE RESOURCE MANAGEMENT (New)
(2008 Pattern) (Elective)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three questions from Q. 2 to Q. 5.
3) Figures to right indicate full marks.

1. Write a detailed report about a service company, describing how the ERP system
implementation has improved the companys operations. Look especially for
improvements that have come as a result of better coordination between different
business functional areas.

20

2. a) List the ERP products available in the market according to the following
categories :

i) Small Scale Businesses


ii) Medium Scale Businesses
iii) Large Scale Businesses.
b) Discuss the architecture of a generic Executive Information System (EIS).
3. a) Explain the critical success factors for an ERP implementation.
b) Briefly discuss the following modules of ERP :

5
5
5

i) Inventory Control Module


ii) Sales and Distribution Module
.

*3980410*

[3980] 410

4. a) Discuss the criteria to select an appropriate ERP system for an organization.

5
5

b) What is Gap Analysis ? Explain in brief.

5. a) What is meant by the maintenance of an ERP system and how it is performed ? 5


b) A manufacturing organization is planning to opt for a non-integrated
information system. List potential problems that might result from such a
system. State your assumptions clearly.

6. Write short notes on any four of the following :

20

a) Management Information System (MIS)


b) Customer Relationship Management
c) Applications of Data Warehousing
d) Applications of On-Line Analytical Processing
e) Business Process Re-engineering.

_____________________
B/I/11/640

[3980] 55

*398055*

M.C.A. (Semester V) (Management Faculty) Examination, 2011


IT 1 : (Elective) DISTRIBUTED DATABASE MANAGEMENT
SYSTEMS
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q.No. 7 is compulsory. Solve any 5 from the remaining.


2) State assumptions, if any.
3) Draw suitable diagram when needed.
1. Explain features of Heterogeneous database. How they are different from
distributed database ?

10

2. Explain various types of fragmentation with suitable application examples.

10

3. Discuss the features of object model. Explain the term object clustering.

10

4. Analyse levels of distribution transparency for read only application. Consider


suitable example.

10

5. Explain Query Optimization, Query Execution with example.

10

6. Explain the following :

10

i) Two phase commit protocol


ii) Mobile database systems.
7. Write short note (any 4) :
a) Object migration
b) Operator tree of a query
c) Properties of transaction
d) Distributed deadlocks
e) Objectives of query processing.

(54=20)

B/I/11/100

*4180101*

[4180] 101

Seat
No.

M.C.A. (Mgt. Faculty) (Semester I) Examination, 2012


IT-11 COMPUTER ORGANIZATION AND ARCHITECTURE
(New 2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 7 are compulsory.


2) Solve any four questions from the remaining.
3) Draw neat diagrams wherever necessary.
4) Figures to the right indicates full marks.
1. a) Draw and explain 32-bit (80486) architecture in detail.

10

b) Define the term Software. Explain types of Softwares.

2. What is pipelinining ? Explain instruction pipelining in detail.

10

3. Convert the following :

(25=10)

a) (27.625)10 = (?)2
b) (4226)8 = (?)16
c) (FA3)16 = (?)10
d) (1011.11)2 = (?) 10
e) (175.125)10 = (?)8.
4. Explain Multiplexer and Demultiplexer in detail.

10

5. Draw memory hierarchy and explain all types of memory.

10

6. What is Interrupt ? Explain various types of Interrupts in detail.

10

7. Write short notes on following (any three) :

(35=15)

a) Parallel Processing
b) Full Adder
c) Compilers and Interpreters
d) DMA.

B/I/12/1265

[4180] 201

*4180201*
Seat
No.

M.C.A. (Semester II) (Management Faculty) Examination, 2012


IT21 : DATA STRUCTURE USING C
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Solve any 7 questions.
2) Figures to right indicate full marks.
3) Assume suitable data wherever necessary.

1. Write a C code for linked list implementation of stack with PUSH, POP and
DISPLAY functions.

10

2. Convert infix to postfix form. Represent operator in stack and expression at


each step.

10

A * (B + C D) E F * (G / H) #

3. Write a programme for INSERT and DELETE operations in circular queue.

10

4. Generate DFS, BFS for node E, adjacency matrix, adjacency list for following
graph. Also write algorithm for DFS & BFS.

10

5. a) Draw B tree of order 3 created by inserting the following data arriving in


sequence
92, 24, 6, 7, 11, 8, 22, 4, 5, 16, 19, 20, 78.
b) Write Pseudo code for creation of expression tree from infix expression.

5
5
P.T.O.

*4180201*

[4180] 201

6. Write a programme for traversal, insertion and deletion in Linear Single Linked
List.
10
7. Construct AVL tree for the following
8, 15, 1, 19, 16, 4, 25, 12, 23, 20, 17
Start with empty tree. Label rotations according to the type.

10

8. a) Draw binary search tree that result from inserting into an initially empty tree
records with the key given below in order.
E, R, S, Y, Q, U, E, S, T, I, O, N and then delete the queue. (Allow duplicate
nodes).
b) Write Pseudo code for insertion and deletion on priority queue.
9. Write short note on any two :

5
5
10

a) Sparse matrix
b) Post order traversal
c) Abstract Data type.

B/I/12/5,990

[4180] 202

*4180202*
Seat
No.

M.C.A. (Semester II) (Management Faculty) Examination, 2012


IT-22 : DATABASE MANAGEMENT SYSTEM
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note. :1) Q. No 1 is compulsory.


2) Solve any five questions from remaining.
3) State assumptions wherever necessary.
1. a) Normalize the following document to 3NF.

12

ABC Hospital
Patient Registration No. :

Bill No. :
Bill Date :

Name :
Address :
Date of Admission :

Discharge date :

Room No. :

Treated by Doctor :
Sr.
No.

Particulars

Quantity

Rate

Amount (Rs.)

Less advance (Rs.) :


Total amount (Rs.) :
Signature
b) Explain various characteristics of DBMS.

8
P.T.O.

[4180] 202

-2-

2. a) Explain various Database users.


b) Explain structure of relational database.

*4180202*
6
4

3. Explain E.F. Codds Rule in detail.

10

4. Explain various keys in relational data model.

10

5. Explain Log-based recovery techniques in detail.

10

6. What is a lock ? Explain the types of locks. Explain two-phase locking protocols
for concurrency control.
10
7. Write short notes on (any two) :

10

1) RAID
2) Database security
3) Functional dependencies
4) Encryption.

B/I/12/5,500

[4180] 301

*4180301*
Seat
No.

M.C.A. (Semester III) (Management Faculty) Examination, 2012


IT-31 : WEB TECHNOLOGIES
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Q. 1 and Q. 8 are compulsory.
2) Solve any 5 from Q. 2 to Q. 7.
3) Figures to right indicate full marks.

1. Explain cookies and session objects in ASP with suitable example.

10

2. Design a form to accept UID information from citizens and validate fields with
javascript. Assume suitable fields.

10

3. Store different background colors based on user choice into a cookie and change
it accordingly when user logs in (e.g user A-Background white, B-Background
Green etc.) using ASP.
10
4. What is CSS ? Explain border and font properties with suitable example.

10

5. Write DTD program for online information submission to PAN card application
(Take suitable elements)
a) Looking at DTD create XML file and
b) Convert XML file into HTML format with header and footer.
6. Explain SAX and DOM parsers with suitable example.
7. a) Explain HTTP, W3C & WWW.
b) Explain client-side & Server-side scripting.
8. Write short notes on (any 2) :

10
10
5
5
10

a) Global.asa
b) Math & Array objects in VBScript
c) <Frameset> & <Map>.

B/I/12/1,470

[4180] 303

*4180303*
Seat
No.

M.C.A. (Management Faculty) (Semester III) Examination, 2012


IT 33 : OBJECT ORIENTED PROGRAMMING USING C++
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1)
2)
3)
4)

Q. 1 is compulsory.
Solve any six from Q. 2 to Q.8.
Figures to right indicate full marks.
Make suitable assumption wherever necessary.

1. Write outputs with explanation :

(25=10)

a) Const int size = 5;


void print (int * ptr) {
cout << ptr [0];
}
void print (int ptr [ ]){
cout << ptr [0];
}
void main ( )
{
int a [size] = {1, 2, 3, 4, 5};
int *b = new int (size);
print (a);
print (b);
}
P.T.O.

[4180] 303

b) void main ( )
{
int a = 65;
int * const p = &a;
cout << char (*p);
*p = 66;
cout << char(*p);
(char*) p++;
cout << char(*p);
}
c) Class point
{
private :
int x, j;
Public :
Point (int i, int j);
};
Point :: Point (int i = 0, int j = 0)
{
x = i;
y = j;
cout << Constructor called;
}
Void main ( )
{
Point t1, *t2;
}

-2-

*4180303*

*4180303*
d) int & fun ( )
{
static int a = 10;
return a;
}
int main ( )
{
int & y = fun ( );
y = y+30;
cout << fun ( );
return 0;
}
e) Class sample
{
int a;
Public :
explicit sample (int i)
{
a = i;
}
Void Display ( )
{
cout << Value of A : <<a;
}
};
int main ( )
{
sample S = 25;
S.display ( );
return 0;
}

-3-

[4180] 303

[4180] 303

-4-

*4180303*

2. a) What is name conflict problem ? How can it be solved using namespaces ?

b) List the difference between set and map containers.

3. Design a class degree and Fahrenheit to store temperature in degree and


Fahrenheit. Both the classes should have member functions. So that use should
be able to write statement like d1 = f1 and f1 = d1 through C++ main ( ).
Where d1 is object of degree class and f1 is object of Fahrenheit class ?
(t = 32 + 1.8 C).
10
4. a) Draw a comparison between different casting operators.

b) What is polymorphism ? What is the difference between compile time and


runtime polymorphism ?

5. a) What is unexpected ( ) function ? Give an example.

b) What is the need of virtual base classes ? Give an example to illustrate the
need for virtual base class.

6. Create a class student (roll_no, name).Derive two classes science (maths,


physics, computer) and commerce (account, stuts). Accept details of 10 students
dynamically, they could be science or commerce students. Display
the details of all the student in same order of acceptance.
10
7. a) Write a program for bubble sort using templates.

b) Write a C++ program to read a text file and counts number of vowels (i.e. a,
e, i, o, u).
8. Write short notes on (any two) :

(25)

a) Constant pointer and pointer to constant


b) Static data member and member function
c) Friend function and Friend Class.

B/I/12/2040

[4180] 32

*418032*
Seat
No.

M.C.A. (Semester III) (Management Faculty) Examination, 2012


IT-32 : COMPUTER NETWORKS
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Q. 1 and Q. 7 are compulsory.


2) Solve any three from remaining.
1. a) What is DNS ? Explain Resource Records and SOA Records in DNS.

10

b) What are the different classes of transport layer ? Define and explain.

10

2. What is VPN ? Explain IP Sec protocols role in VPN communication.

10

3. Explain DHCP scope resolution with example.

10

4. Compare the following :


a) Connectionless and connection oriented networks.

b) Explain TCP is reliable protocol.

5. What is VSAT ? What is VSAT Networks ? What are the VSAT access
Technologies ?

10

6. Explain various components used in building LAN.

10

7. Write short notes (any four) :


a) ISDN
b) X.25 Network
c) Firewall
d) ATM Traffic Management
e) IP-Addressing
f) SNMP-Network Management
g) SMTP
h) HTTP.

20

B/I/12/240

[4180] 404

*4180404*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


MT-41 : OPTIMIZATION TECHNIQUES
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 is compulsory.


2) Solve any two questions from question numbers 2, 3 and 4.
3) Use of electronic calculator and statistical table is allowed.
1. a) The following table gives different activities and relevant data :
Duration (days)

Activity

Immediate
Predecessor

Most Likely

12

16

12

D, A

C, E, F

14

10

18

20

18

34

Optimistic Pessimistic

i) Draw PERT network for the project.


ii) Find expected project duration and variance.
iii) What is the probability that the length of the critical path does not exceed
60 days ?
b) Solve the following problem by using Gomory cutting plane method :
Maximize Z = 7x1 + 9x2
Subject to the constraints
x1 + 3x2 < 6, 7x1 + x2 < 35, x1, x 2 > 0 and integers.

9
9

c) A road transport company has one reservation clerk on duty at a time. He


handles information of bus schedules and makes reservations. Customers
arrive at a rate of 8 per hour and the clerk can service 12 customers on an
average per hour.

P.T.O.

[4180] 404

*4180404*

-2-

Find :
i) Average number of customers waiting for the service.
ii) Average time a customer has to wait before getting service.
iii) Average queue length.
d) The marketing director of a multi-unit company is faced with a problem of
assigning 5 senior managers to 6 zones. From past experience he knows that
the efficiency percentage judged by sales, operating costs etc., depends on
manager-zone combination. The efficiency of different managers is given
below :
ZONES

M
A
N
A
G
E
R

II

III

IV

VI

73

91

87

82

78

80

81

85

69

76

74

85

75

72

83

84

78

91

93

96

86

91

83

82

90

91

79

89

69

76

Find out which zone will be managed by a junior manager due to non-availability
of a senior manager.
2. a) Obtain optimum solution for the following transportation problem :
MARKET

W
A
R
E
H
O
U
S
E
DEMAND

II

III

IV

SUPPLY

22

15

12

6
9

*4180404*

[4180] 404

-3-

b) Define the following terms with illustration :

i) Feasible solution in LPP.


ii) Unbalanced Assignment Problem.
iii) PERT.
c) A machine owner finds from his past records that the costs per year of
maintaining a machine whose purchase price is Rs. 6,000 are as given below :
Year

Maintenance
:
Cost (Rs.)

1000

1200

1400

1800

Resale Price :

3000

1500

750

375

2300 2800 3400


200

200

200

8
4000
200

3. a) Solve the following Linear Programming Problem by two-phase method :

Maximize Z = 5x1 + 8x 2
Subject to the constraints
3x1 + 2x2 > 3, x1 + 4x2 > 4, x1 + x2 < 5 and x1, x2 > 0.
b) Describe the following queueing system :

(M/M/C) : (FCFS/ / )
c) A manufacturing company purchases 9,000 parts of a machine for its annual
requirements, ordering one month usage at a time. Each part costs Rs. 20.
The ordering cost per order is Rs. 15 and the carrying charges are 15% of the
average inventory per year.
Find :
i) EOQ
ii) Order interval.

[4180] 404

*4180404*

-4-

4. a) The time and cost estimates of different activities are given below :
Activity

Time (weeks)

Cost (Rs.)

Normal

Crash

Normal

Crash

12

8,000

9,000

13

600

1,000

35

10,000

12,000

36

4,000

10,000

25

13

10

3,000

9,000

24

5,000

5,000

45

1,200

1,400

56

3,500

4,500

46

700

800

Find : Project duration with minimum cost also draw the network diagram.
b) Formulate the given transportation problem as a Linear Programming Problem :
MARKET

W
A
R
E
H
O
U
S
E

Demand

Supply

22

15

12

17

c) Explain the following :


i) Running cost
ii) Item cost
iii) Present worth of money.

B/I/12/3,685

[4180] 46

*418046*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2012


BME 2 : FOUNDATIONS OF DECISION PROCESSES
(Elective) (2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions: i) Question No. 1 is compulsory.


ii) Solve any two from the remaining.
iii) Figures to the right indicate full marks.
iv) Use of electronic calculators is allowed.
1. a) A glass factory specializing in crystal is developing a substantial backlog
and the firms management is considering three courses of action : Arrange
for sub-contracting (S1), begin overtime production (S2) and construct new
facilities (S3). The correct choice depends largely upon future demand which
may be low, medium or high. By consensus, management ranks the respective
probabilities as 0.10, 0.50 and 0.40. A cost analysis reveals effect upon the
profits that is shown in the table below :

15
Course of Action

Demand

Probability

S2
S3
S1
(Sub-Contracting) (Begin Overtime) (Construct Facilities)

Low (L)

0.10

10

-20

-150

Medium (M)

0.50

50

60

20

High (H)

0.40

50

100

200

Show this situation in the form of decision tree and indicate the most preferred
decision and corresponding expected value.
P.T.O.

[4180] 46

*418046*

-2-

b) Explain the principle of dominance and solve the following game :

15

Player A

Player B
B1

B2

B3

B4

B5

A1

A2

A3

A4

2. a) Explain the MaxiMax, MaxiMin, Laplace and MiniMax Regret Criterions in


decision making process.

10

b) The management of a company is considering the problem of marketing a


new product. The investment or the fixed cost required in the project is
Rs. 25,000/-. There are three factors that are uncertain-selling price, variable
cost and the annual sales volume. The product has a life of only one year.
The management has the past data regarding the possible levels of the three
factors.
10
Unit Selling
Price (Rs.)

Probability

Unit Variable
Cost (Rs.)

Probability

Sales Volume
Probability
(units)

40

0.30

20

0.10

3000

0.20

50

0.50

30

0.60

4000

0.40

60

0.20

40

0.30

5000

0.40

Using Monte-Carlo simulation technique determine the average profit from the
said investment on the basis of 20 trials. Use the following random numbers.
73

60

10

65

37

93

63

46

25

47

26

54

84

40

24

67

12

20

59

*418046*

[4180] 46

-3-

3. a) Discuss the Monte-Carlo method of solving a problem illustrating it by outlining


a procedure to solve a specified problem of your choice by the same.
10
b) A warehouse has only one loading dock manned by a three person crew.
Trucks arrive at the loading dock at an average rate of 4 trucks per hour and
the arrival rate is Poisson distributed. The loading of a truck takes 10 minutes
on an average and can be assumed to be exponentially distributed. The
operating cost of a truck is Rs. 20 per hour and the members of the loading
crew are paid @ Rs. 6/- each per hour. Would you advise the truck owner to add
another crew of three persons ?
10
4. a) A retailer purchases every morning at Rs. 50 a case and sells them for Rs.
80 a case. Any case remaining unsold at the end of the day can be disposed
of next day at a salvage value of Rs. 20 per case (thereafter they have no
value). Past sales have ranged from 15 to 18 cases per day. The following is the
record of sales for the past 120 days.
10
Cases sold

15

16

17

18

Number of days

12

24

48

36

Find how many cases the retailer should purchase per day to maximize his
profit ?
b) Explain the characteristics of Single Server Waiting Line Models.

10

B/I/12/145

[4180] 502

*4150502*
Seat
No.

M.C.A. (Semester V) (Management Faculty) Examination, 2012


IT-52 : SOFTWARE IT PROJECT MANAGEMENT
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Q. No. 1 is compulsory.


ii) Solve any five from Q. No. 2 to 7.
1. a) Draw network diagram for the following and calculate CPM. Also indicate
critical path.
Activity
A

Predecessor

Duration
1

17

70

10

30

25

20

25

G, H

20

I, J

25

b) List out the different cost estimation technique. Explain Cocomo Model in
detail.

10

10

2. Explain risk Management in detail.

10

3. Explain documentation standard in detail.

10

P.T.O.

*4150502*

[4180] 502
4. Explain Defect Management in detail.

10

5. Explain difference between :


i) QC and QA
ii) SCM and CM.

10

6. Explain IT infrastructure Management in detail.

10

7. Write a short note on following (any 2) :

10

i) F TR
ii) MS project
iii) User role in team management.

B/I/12/885

[4180] 506

*4180506*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2012


ITE 2 Elective : PROGRAMMING LANGUAGES PARADIGMS (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 & Q. 8 are compulsory.


2) Solve any four from remaining.
1. Explain different paradigms of programming language with example.

15

2. Explain General Syntactic Criteria.

10

3. Explain synthesis of object programme with diagram.

10

4. Explain implicit and explicit sequence control.

10

5. Explain implementation of recursive function call.

10

6. Explain the role of compiler, interpreter and assembler.

10

7. Explain different methods for transmitting parameters by calling procedure.

10

8. Write short note on (any three) :

15

a) Type checking and type conversion


b) Composite data type
c) Non-Arithmetic Expression
d) Heap storage management
e) Features of C++.

B/I/12/390

[4180] 509

*4180509*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


ITE5 Elective : DISTRIBUTED DATABASE
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Full marks are indicated to the right of each question.
2) Draw suitable diagram when needed.
3) Give suitable examples if required.
4) Whenever necessary state assumptions.
5) Q. 7 is compulsory. Solve any 5 from remaining.

1. Explain the distributed DBMS architecture.

10

2. Explain the factors governing query optimization.

10

3. Write definition of transaction and explain the properties of transaction.

10

4. Explain distributed object management model with suitable example.

10

5. Explain data recovery techniques in case of data failures.

10

6. Explain the concept of mobile database systems.

10

7. Write short notes (any 4) :

20

1) Central and distributed databases


2) Role of DBA
3) Advantages of DDBMS
4) Deadlock prevention and recovery
5) Log for database recovery.

B/I/12/250

[4180] 52

*418052*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


IT-52 : ADVANCED INTERNET TECHNOLOGY
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Q. 1 is compulsory.
2) Solve any 3 questions from remaining questions.

1. What are the types of e-commerce ? Explain with examples. What are the
benefits of e-commerce ?

10

2. a) Write ASP code to accept student details for online examination registration
and store it in student table. (Assume suitable table structure).
10
b) Explain JSP implicit objects with examples.
3. a) Explain CGI architecture and various features of PERL.

10
10

b) Write JSP code to accept product details and store in database table. If the
product is already inserted, display the appropriate message to insert another
product. (Assume suitable table structures).
10
4. a) Write PHP code to display employees belong to sales department and age is
between 30-40 and store found records in another table. (Assume suitable
table structures).
10
b) Explain error handling in ASP with example.
5. a) Explain JSP actions with example.
b) Explain superglobals in PHP.

10
10
10

B/I/12/275

[4180] 60

*418060*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester V) Examination, 2012


Elective IT6 : HUMAN COMPUTER INTERFACE
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 is compulsory.
2) Solve any five from remaining.
3) Figures to right indicate full marks.
1. Answer any four :

(54=20)

a) Explain the concept of Direct Manipulation Programming.


b) Describe any two specification methods in detail.
c) Explain Display. State the various display technologies.
d) Compare online help with offline help.
e) Explain Object Action Interface model for website design.
2. Comment use of Natural languages in computing.

10

3. What are 8 Golden rules as Interface design. Explain implementation of any


three with proper example.

10

4. Describe usability testing. Also explain the steps involved in usability testing.

10

5. Explain various guidelines for form filling.

10

6. Explain three Pillars of Interface Design.

10

7. Write short note on the following (any 2) :

10

a) Need of item presentation sequence


b) Windows Manager
c) Quality of services.

B/I/12/130

*4180102*

[4180] 102

Seat
No.

M.C.A. (Semester I) (Mgmt. Faculty) Examination, 2012


IT 12 : C PROGRAMMING
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 is compulsory.


2) Solve any 6 (six) questions from Q. 2 to Q.8.
3) Assume suitable data wherever necessary.
1. Find and explain output of following programme.

10

i) Void main ( )
{
static int x[ ] = {50, 60, 70, 80, 90};
static int *y[ ] = {x, x+1, x+3, x+4, x+2};
int ** P;
p = y;
**p++;
Printf( % d % d % d, P Y, *p x, **p);
}
ii) int main(void)
{
unsigned int y = 10;
int x = 4;
if (x > y)
Printf(x is greater);
else
Printf (y is greater);
getch ( );
return (0);
}
P.T.O.

[4180] 102

-2-

*4180102*

iii) void main( )


{
char str[ ] = Anna Hajare;
int i ;
for (i = 0; str[i]; i++)
Printf (% C% C% C, str[i], *(str + i), i[str]);
}
iv) # define CUBE (x) (x*x*x)
void main ( )
{
int a, b = 3, c = 4 ;
a = CUBE (b++ *++C);
Printf(\n % d % d % d, a, b, c);
}
2. a) Accept a number from user and display the same by skipping zeros

Ex: Suppose number is 50330


After skipping zero number should be 533.
b) Write a program to convert given number to word

Ex: If input is 653 then output will be six five three.


3. a) Write a program which read number and print prime devisor or prime factor.

b) Write a program to accept a number and display its equivalent binary number.

4. a) Write a program to compare two strings without using built in string function.

b) Write a program to calculate series.

( ) ( ) ( ) ( )

1 + 1 + 1 + 1 ... 1
1!
3!
5!
7!
n! .

*4180102*

-3-

[4180] 102

5. Create a structure of bank account holder as account number, name, balance,


write only one function for withdrawing and depositing the amount and display
balance.
10
6. Write a program to read the source file and calculate the occurrence of given character
in the file. Accept source file calculate the occurrence of given character in the
file. Accept source file name and character through command line argument.
10
7. Write a C program that fills 55 matrix as follows :
Upper left corner with +1s
Lower left corner with 1s
Right to left diagonal with 0s

10

8. a) Write a program which draw concentric circles.

b) Write short notes on preprocessor directives.

B/I/12/3,300

[4180] 103

*4180103*
Seat
No.

M.C.A (Semester I) (Management Faculty) Examination, 2012


BM-11 : PRINCIPLES AND PRACTICES OF MANAGEMENT AND
ORGANIZATIONAL BEHAVIOR
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 is compulsory.


2) Attempt any 3 from the remaining.
3) Figures to the right indicate full marks.
1. A) Define OB. Explain the Foundations of OB. Discuss in details the emerging
challenges in OB with reference to Globalization and its impact on people
management ?
15
B) Leadership is the most intangible phenomenon. Discuss with reference to
the qualities of a successful leader.

10

2. Explain the pyramid of level of management. Which level according to you


needs to be closely connected to vision and mission of the organization ?

15

3. Decision making is a essential function of management. Discuss the steps of


decision making process.

15

4. Motivation of employees is the most critical need of the industry today : explain
with reference to IT industry. Discuss Meslows need hierarchy theory.
15
5. Define group dynamics ? How effective teams play vital role in organisational
effectiveness.

15

6. Short notes (any three) :

15

1) Managerial Skills
2) Levels of management
3) McGregors X and Y theory
4) Line and staff organization
5) Ego states.

B/I/12/1,275

[4180] 104

*4180104*
Seat
No.

M.C.A. (Semester I) (Management) Examination, 2012


IT-13 : OPERATING SYSTEM CONCEPTS
(2008 Patterns) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q.1 and Q. 6 are compulsory.


2) Solve any three from remaining.
3) Draw neat diagram wherever necessary.
1. a) What is the need of synchronization ? Explain n-process solution for critical
section problem, giving the proof that it satisfies all the three necessary
condition for synchronization.
10
b) Explain NOS architecture in detail.

10

2. Explain Deadlock algorithm in detail.

10

3. Explain any two disk scheduling algorithm with example and proper diagram.

10

4. What are various scheduling criterias ? Explain one non preemptive and one
preemptive scheduling algorithm with example.

10

5. Given memory partitions of 250 K, 50 K, 100 K, 300 K and 400 K (in order). How
would each of the first fit, worst fit and best fit algorithm places processes 40 K,
212 K and 400 K.Specify which algorithm makes the most efficient use of
memory and how much amount of memory is wasted in each algorithm.
10
6. Write short notes on (any four) :
a) Context Switching
b) RAID
c) Virtual machine
d) Demand Paging

20

e) System Calls.

B/I/12/2,000

*4180105*

[4180] 105

Seat
No.

M.C.A. (Semester I) (Management Faculty ) Examination, 2012


MT 11 : DISCRETE MATHEMATICS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Question no.1 is compulsory.


2) Attempt any two questions from Question no. 2, 3, 4 and 5.
3) Figures to the right indicate full marks.
1. a) Test the validity of the following arguments :
If I like Mathematics, then I will study either I dont study or I pass Mathematics.
If I dont graduate, then I didnt pass Mathematics.

If I like Mathematics, then I will graduate.


b) Let A = {1, 2, 3, 4, 5} R = { <1, 1>, <1, 2>, <2, 1>, <2, 2>, <3, 4>, <4, 3>, <3, 3>,
<4, 4>, <5, 5> }. Is R an equivalence relation ?

6
6

c) The Kernel of a homomorphism g from a group (G, ) to (H, ) is a subgroup


of (G, ) .

d) Verify whether the following graphs are isomorphic or not.

6
6

P.T.O.

[4180] 105

-2-

*4180105*

e) Show that the following statements are equivalent or not by using Truth Tables :
i) (P Q ) (R Q ) (P R ) Q
(P Q ) (P R ) T .
ii) P (Q R )

2. a) Obtain the principle disjunctive normal form (PDNF) of

( P R ) Q P

b) Find the converse and inverse of the following statement :

If it is cold weather, then I wear swetter.


c) Prove that (x )(P( x) Q(x )) (x ) P(x ) (x ) Q(x ) .

d) Without constructing truth table, determine whether the conclusion C follows


logically from the premises H1, H2 and H3.

H1 : P Q H2 : Q R H3 : R C : P

3. a) Let R be a relation on A = {1, 2, 3, 4} with


0
1
MR =
0

0
0

Find the relation R and the matrix of transitive closure by Warshalls method.
b) Let R = { <1, 2>, <3, 4>, <2, 2> } and S = { <4, 2>, <2, 5>, <3, 1>, <1, 3> }.
Find
i) R (S R)
ii) S S.

c) Let f : A B a function and A = {1, 2, 3, 4}, B = {a, e, i, o} and f = {(1, a), (2, i),
(3, e), (4, 0)}. Is f1 a function ?

d) Let X = {2, 3, 6, 12, 24, 36} and the relation be such that X Y if X divides Y.
Draw the Hasse diagram of < X, >.

*4180105*

-3-

[4180] 105

4. a) Determine the code words generated by the following parity check matrix :
1
H = 1

0
0

How many errors will be detected by this code word ?


b) Show that (N, ) is a semigroup where x y = min {x, y} for any x, y N . Is

(N, ) a monoid ?

c) Let G be a group with identity e. Show that if x2 =x for some x in G, then x = e.

6
6

5. a) Define :
i) Bipartite graph
ii) Regular graph with examples.

b) Check whether the graph is Euler or not.

c) Obtain the adjacency and incidence matrix for the following graph :

[4180] 105

-4-

d) For the given tree below find :

*4180105*
5

i) Distance
ii) Pendant vertices
iii) Children of V2
iv) Root vertex.

B/I/12/1960

[4180] 11

*418011*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester I) Examination, 2012


ITII : INFORMATION TECHNOLOGY AND PROGRAMMING
METHODOLOGIES
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Note : i) Q. 1 and Q. 6 are compulsory.


ii) Attempt any three from the remaining.
1. a) What is an OS ? Explain various types of OS.

10

b) Solve the following :

i) (BABA)16 (762)8 = ( ) 8
ii) (27)8 (89FC)16 = ( ) 8
c) What is binding ? Explain its types.

2. Explain different types of memories used in computers.

10

3. Draw Parse tree for the equation A = B+CA and explain whether H is ambiguous
grammar or not.
10
4. Discuss various file organisations and accessing techniques.

10

5. Write definition of algorithm and flow chart. Draw flowchart calculate factorial
of any given number.

10

6. Write short notes on (any four) :


a) Computer virus
b) De Morgans Theorem and Duality theorem
c) Fire walls

(45=20)

d) Compiler Vs Interpreter
e) Modem.

B/I/12/160

[4180] 203

*4180203*
Seat
No.

M.C.A. (Semester II) (Mgt. Faculty) Examination, 2012


IT 23 : SOFTWARE ENGINEERING
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and 6 are Compulsory.


2) Attempt any three from the remaining.
1. Front office of Star Inn Hotel is responsible for room reservations, room allocations
and final settlement of bills. Any company or person can reserve rooms for their
future stay. They have to indicate the period for which they need the room and
the number of rooms required. Sometimes the reservations could be cancelled
or the dates or number of rooms changed. For reservation; cancellation or
modification of rooms, customer receives an acknowledgement from the hotel.
a) Prepare SRS and system specification for the above system.

10

b) Draw context level and first level DFD for the above case.

10

2. Explain maintenance and the methods of estimating maintenance cost.

10

3. Describe the phases of SDLC in detail.

10

4. Design a GUI form for opening a saving account in a bank.

10

5. What are CASE Tools ? Explain its advantages and disadvantages.

10

6. Write short notes on (any 4) :

(45=20)

a) Prototyping
b) Reverse engineering
c) Agile process
d) Role of System Analyst
e) Structured charts.

B/I/12/5,490

[4180] 204

*4180204*
Seat
No.

M.C.A. Management Faculty (Semester II) Examination, 2012


BM 21 : SOFT SKILLS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Q.No. 1 is compulsory.


ii) Solve any 3 (Three) from Q. 2 to Q. 6.
iii) Figures in the brackets indicate marks.
1. a) Write a covering letter and resume in response to the following position
advertised in the Times of India dated 13th March 2012. You are Ms. Anitha Patil. 15
Company : Wintech systems, 473, Wilson Garden, D.P.Road, Pune 411007
requires.
Java Programmes :

Java/ J2EE, JSP/ Servlets, XML, XSLT,

Webservices.
Work Experience : 1 Yr. 3 Yrs.
Qualifications :

MCA/ BE (Comp.)

b) Write a brief note on the following meeting documents.


i) Notice
ii) Agenda
iii) Minutes.

10

2. What is the difference between hearing and listening process ? Write down the
steps for listening process with few tips for effective listening.
3. Explain the principles of communication.

15
15
P.T.O.

*4180204*

[4180] 204

4. Distinguish between formal and Informal communication. How and why do they
occur ?

15

5. What is Body Language ? Describe giving suitable examples.

15

6. Write short notes on (any three) :

15

a) Time Management.
b) Written communication Advertisement.
c) Public speaking.
d) Telephone manners.
e) Negotiations.

B/I/12/5,260

[4180] 205

*4180205*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester II) Examination, 2012


MT 21 : PROBABILITY AND COMBINATORICS
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and Question No. 4 are Compulsory.


2) Solve any one from questions 2 and 3 and any one from
question No. 5 and 6.
3) Figures to the right indicate full marks.
4) Use of calculator and statistical table is allowed.
SECTION I
1. Solve the following :
a) State and prove principle of Inclusion exclusion for n sets.

b) Find the number of arrangements of the letters of the word PASSWORD so


that

i) Two As are together


ii) Vowels occupy even positions.
c) 10 gentlemen check their coats at the gatekeeper while entering a hall. The
gatekeeper mixes the tokens and returns the coats at random. In how many
ways gentlemen will get their coats such that exactly 4 of them get their
correct coats.

d) Find coefficient of x4y3z6 in the expansion of (x2 3y + 4z3)7.

2. Attempt the following :


a) Prove the following binomial identities using combinatorial arguments.



i) n0 + n1 + . . . + nn = 2n

ii) n + 1 = n + n
r r r 1
b) Find the number of integer valued solutions of x1 + x2 + x3 = 24 subject to
x1 0, x 2 > 2, x 3 5 .

7
P.T.O.

[4180] 205

-2-

*4180205*

3. Solve the following :


a) Find discrete numeric function corresponding to the following generating
function.
A( z ) =

1 + 2z 2
12 7z + z2

b) Solve the following recurrence relation


an 6an1 + 9an2 = 3.4 n ; a0 = 1 a1 = 3

SECTION II
4. Attempt the following :
a) Define the following terms.

i) Classical definition with illustration.


ii) Probability density function.
b) Following is the joint probability mass function of r.v. (X,Y)
Y

2k

3k

3k

2k

2k

4k

3k

Find : i) P (X+Y 1)

ii) E(X)

c) The p.d.f. of univariate random variable X is f(x) = c x2


Find variance of X.

; 1 x 1.

1 1 3
respectively. Probability
d) Probability that A, B, C becomes manager is , ,
5 2 10
that certain policy will be introduced if A, B, C became manager is 2%, 5%
and 4% respectively.The policy was introduced find the probability it was
introduced by manager B.

*4180205*

-3-

[4180] 205

5. Solve the following.


a) Prove that Poisson distribution is a limiting case of Binomial distribution.
Also find M.G.F. of Poisson distribution.

b) Joint p.d.f. of bivariate random variable is f (x, y) = C[x2 + 2xy] ; O x 1


1 y 2.
Find :

i) C
ii) Marginal p.d.f. of X.

6. Attempt the following :


a) Find mean and variance of Gamma distribution.

b) Average number of units of a product sold by a shop per day is 69 with


variance 9. Find the probability that sale of the product in units on a particular
day is between 64 and 75. Also find the probability that on a particular day the
sale is less than average sales. (Assume sales follow normal distribution).

B/I/12/5875

*4180302*

[4180] 302

Seat
No.

M.C.A. (Management Faculty) (Semester III) Examination, 2012


IT 32 : DATA COMMUNICATION AND COMPUTER NETWORKS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q 1 and Q 8 are compulsory.


2) Attempt any four from remaining.
1. a) Justify (not more than 60 words) with true or false :

i) The Physical Layer of network, controls error detection and correction.


ii) 5-4-3 rules specifies not more than five repeaters.
iii) Loop back address is to test LAN.
iv) Domain name system is a distributed data base.
B) Explain Email procedure using message structure, addressing, Sending and
receiving.

2. Define physical layer wiring standards of following : 10 Base 2, 10 Base 5,


100 Base F and 1000 Base T.

10

3. Explain internet layer of TCP/IP Protocol Model.

10

4. What are the advantages of using virtual path in ATM. Explain traffic Mgmt. in
ATM.

10

5. Draw and explain IP address Format for Class A, Class B, Class C, Class D
using suitable example.

10

6. What is Fire Wall ? What are different types of Fire wall ? Explain policies and
rules of Fire wall.

10

P.T.O.

*4180302*

[4180] 302

7. A) Define VPN. Explain point to point tunneling protocol (PDTP).


B) Define and explain proxy server.
8. Write short notes (any three) :

5
5
15

i) IPV6
ii) Topologies
iii) SOA Records
iv) SNMP problem
v) Wireless LAN.

B/I/12/2,400

[4180] 304

*4180304*
Seat
No.

M.C.A. (Semester III) (Management Faculty) Examination, 2012


IT-34 : ADVANCED DATABASE MANAGEMENT SYSTEMS
(New) (2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any 3 from remaining.
1. A) Describe the web based architecture with suitable example.

10

B) What do you understand by OODBMS ? Explain the features of OODBMS.

10

2. How is concurrency managed in distributed database management system?

10

3. What do you understand by term Machine learning. Elaborate with proper


example ?

10

4. Why do we need to preprocess the data in data warehouse ? Explain the steps
in data preprocessing.
10
5. Explain the features of XML and also differentiate XML with HTML.

10

6. Write short notes (any 4) :

20

1) Spatial databases
2) I/O parallelism
3) Expert database management system.
4) K means algorithm
5) Descriptive dataming
6) OLAP.

B/I/12/1,620

[4180] 305

*4180305*
Seat
No.

M.C.A. (Semester III) (Mgt. Faculty) Examination, 2012


BM-31 : MANAGEMENT SUPPORT SYSTEM AND ITS SECURITY
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and 7 are compulsory.


2) Attempt any four from the remaining.
1. Explain in detail information requirements for personnel function using systems
approach.
10
2. Explain the application of law of requisite variety with a business example.

10

3. Define MIS and explain structure of MIS based on management functions.

10

4. Explain the characteristics and limitations of human information processing.

10

5. Simulation is imitation of reality. Justify.

10

6. Discuss how ESS/EIS can help senior managers make better decisions.

10

7. Write short notes on (any 4) :

(45=20)

a) MIS Vs. DSS


b) Value of information
c) DSS characteristics (any 5)
d) Need of IS Auditing
e) Static and Dynamic models.

B/I/12/1060

[4180] 31

*4180-31*
Seat
No.

M.C.A. (Semester III) (Management Faculty) Examination, 2012


IT-31 : WEB SUPPORTING TECHNOLOGIES
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Solve any four from remaining.
3) Figures to the right indicate full marks.
1. What is parser. Explain XML SAX and DOM parser.
2. a) Write a code for creating following external style sheet.
i) Text having arial font, font-size 20, Italic style
ii) Border of paragraph must be blue color
iii) Set hyperlink without underline
iv) Character spacing 10 pixels.
b) Explain Javascript Dom in Detail.
3. a) Design HTML code for Ration card form. Write Javascript code to validate
any four elements.
b) Explain string and date objects of Javascript.
4. a) Design given form using HTML with validation and perform the appropriate
operation on click event of respective buttion [Hint : Use VB Script]

10
8

7
8
7
8

Enter No .1 :
Enter No. 2 :
Result
+

b) Explain Error handling in VB Script.

7
P.T.O.

*418031*

[4180] 31
5. a) Explain following tags with example.

i) < Frameset >


ii) < Textarea >
iii) < Select >
iv) < Form >
b) Differentiate between DTD and schema.
6. Write short notes (any 3 ) :

7
15

a) Server side image mapping


b) Web publishing
c) SOAP
d) Classes in CSS.

B/I/12/225

[4180] 33

*418033*
Seat
No.

M.C.A. (Semester III) (Mgt. Faculty) Examination, 2012


BM 33 : MANAGEMENT SUPPORT SYSTEM
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q.1 and 7 are compulsory.


2) Attempt any four from remaining.
1. Explain in detail information requirements for production function using systems
approach.
10
2. What do you mean by feedback control ? Explain the application of negative
feedback with an example.

10

3. Define MIS. Explain structure of MIS based on management activity.

10

4. Define Expert System. Differentiate between expert system and conventional


system.

10

5. List and describe the stages in decision-making.

10

6. Define DSS. Explain various components of DSS in detail.

10

7. Write short notes (any 4) :

(45=20)

a) Value of information
b) Types of systems
c) Simulation
d) Sensitivity analysis
e) MIS Vs Data processing.

B/I/12/215

[4180] 34

*418034*
Seat
No.

M.C.A. (Semester III) (Mgt. Faculty) Examination, 2012


IT-34 : OBJECT ORIENTED PROGRAMMING USING C++
(2005 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Q1. is compulsory.
Solve any six from Q. 2 to Q. 8.
Figures to right indicate full marks.
Make suitable assumptions wherever necessary.

1. Explain output of the following programs If errors, correct it.

(25=10)

1) # include <iostream.h>
# include <conio.h>
int m = 10;
main ( )
{
int m = 20;
{
int k = m ;
int m = 30;
cout << k= <<k<<\n;
cout <<m= <<m<< \n;
cout <<::m= <<::m<<\n;
}
cout << m= <<m<<\n;
cout << ::m= << ::m <<\n;
}
P.T.O.

[4180] 34

-2-

2) # include <iostream.h>
# include < conio.h>
class base
{
Public :
void base ()
{
cout << A;
}
void ~base ()
{
cout << B;
}
};
void main ()
{
clrscr ();
base ();
}
3) # include < iostream. h>
class Base
{
Public :
Base () {cout << In creating Base... ; }
~ Base () { cout << In Deleting Base...; }
};
class Derived : Public Base
{
Public :
Derived () {cout <<Increating Derived...; }
~ Derived () { cout << In Deleting Derived...; ?
};
int main ()
{
Derived Di;
Derived *dptr = new Derived
Base *bptr = new Derived;
delete bptr;
return 0;
}

*418034*

*418034*

-3-

4) # include <iostream.h>
# include <string.h>
void main( )
{
Char str [30]= Object oriented;
int m = strlen (str);
int n = sizeof (str);
cout << m;
cout << n;
}
5) # include < iostream.h>
class base
{
private: int i ;
};
class derived : public base
{
private :int j;
};
void main ()
{
cout <<endl << sizeof (derived) << endl<<< sizeof (base);
derived dobj
base bobj ;
cout << endl<< sizeof(dobj) << endl << sizeof (bobj);
}

[4180] 34

[4180] 34

-4-

*418034*

2. a) What is parameterized constructor ? Explain mechanism of passing


parameters to the base class constructor in multilevel inheritance. Explain
with example.

b) Write a program to display the number of objects created using static data
member.

3. Design a string class and overload.

10

1) + operator to concat two strings


2) < and > to compare two strings.
4. Write a program which reads a text file and copies every alternate character in
another file using command line arguments.

10

5. Write a program to demonstrate the use of friend function to swap the private
data members of two classes.

10

6. Write a program for implementation of a Queue. Write suitable exception handling


routine when Queue is empty or full.
10
7. a) What is RTTI ? Explain dynamic _cast and reinterpret-cast in detail.

b) Write a generic program for implementation of stack class using templates.


8. Write short notes on (any 2) :

(25=10)

1) Named and Unnamed Namespaces.


2) Standard Template Library
3) Managing output with manipulators.

B/I/12/250

*418035*

[4180] 35

Seat
No.

M.C.A. (Mgmt. Faculty) (Semester III) Examination, 2012


IT 36 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : a) First question is compulsory.


b) Solve any 5 out of remaining.
c) Figures to right indicate marks.
1. a) A Ticket Vending Machine (TVM) dispenses tickets to passengers at a railway
station. Passengers use the front panel to specify their Boarding and
destination place, details of passenger (number of adults and children) and
date of travel. The machine displays the fare for the requested ticket. The
passenger then deposits cash in the bin provided and presses accept cash.
The machine checks the cash, if it is more, the balance cash is paid out.
And the ticket requested is printed. The system is also used by the operator
who might want to know the cash held in the machine, the break-up of small
change available in the machine, withdraw or deposit cash when needed.
And the report options also include the detailed report of transactions,
summary report of the number of tickets sold for each destination, opening
balance, cash collected, cash dispensed and current balance in the machine.
Draw the use case and class diagram for the above case study.
15
b) Discuss Benefit of pattern.

2. Explain various approaches for identifying classes.

10

3. Explain Object Modeling Technique.

10

4. a) Draw a sequence diagram for Storing contacts to your friend.


b) Explain Object Persistence.

5
5
P.T.O.

[4180] 35

-2-

*418035*

5. Draw the activity diagram and class diagram for various operations done using
ATM.
10
6. Explain RUP process in detail.

10

7. Write short notes on (any two) :

10

a) Requirement Engineering
b) Booch methodology
c) White Box Testing
d) CRC.

B/I/12/230

104 ]0814[

*1040814*
taeS
.oN

2102 ,noitanimaxE )ytlucaF tnemeganaM( )VI retsemeS( .A.C.M


GNIMMARGORP AVAJ : 14-TI
)nrettaP 8002(
07 : skraM .xaM

sruoH 3 : emiT
.yroslupmoc 8 dna 1 noitseuQ )i

: snoitcurtsnI

. 7 o t 2 n o i t s e u q m o r f evif yna e v l o S ) i i

01

: noitseuq gniwollof eht rewsnA .1


? noitazinorhcnys daerhT si tahW )a
.sdrowyek repus dna siht neewteb etaitnereffiD )b
? sessalc retpada era tahW ) c
.elpmaxe htiw esualc sworht nialpxE )d
? noteleks dna buts si tahW )e
enohpeleT rof sliated stnialpmoc devloser yalpsid ot noitacilppa CBDJ a etirW .2

01

.)erutcurts elbat elbatius emussA( .etad nevig rof tnemtrapeD


ot eman elif a sdnes dna tneilc no snur taht margorP tekcoS ava J a etirW )a .3
yb denruter egassem etairporppa yalpsid dluohs margorp ehT .revres

.revres
morf eman elif stpecca ,revres no snur taht margorP tekcoS avaJ a etirW )b

.tneilc ot stnetnoc elif snruter dna stsixe elif skcehc fo tneilc

01

.raloD ot seepuR morf noisrevnoc ycnerruc rof noitacilppa IMR etirW .4

.O.T.P

*1040814*
01

104 ]0814[
.elpmaxe htiw gnildnah tneve ,mret eht nialpxE .5

sretcarahc fo rebmun yalpsid ,resu morf eman elif tpecca ot margorp a etirW .6
01
5
5
)01=52(

.senil dna sdrow


.tnemetats deraperp nialpxE )a .7
.) ( nioj dna ) ( evilA si sdohtem daerht nialpxE )b
: )owt yna( no seton trohs etirW .8
tuoyal wolF )a
drowyek citatS )b
.seitreporp snaeB ) c

057,3/21/I/B

[4180] 402

*4180402*
Seat
No.

M.C.A. (Semester IV) (Management Faculty) Examination, 2012


IT-42 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three from the remaining.
1. Write a detailed test plan for University result declaration system, which provides
the facility to view students result (sem/year) wise, system should have facility
to apply for rechecking/re-evaluation with payment. Your plan should include the
desired test documents, test cases and test strategies.
20
2. Explain how V-V model ensure the correctness of a software product.

10

3. Define Testers Workbench. Explain 11 steps of testing life cycle in brief.

10

4. Explain different types of reviews involved in static testing.

10

5. Write a 7-8 point checklist for testing non-functional aspects of on-line shopping
website.
10
6. Write short notes (any 4) :

(45)

1) SEI-CMM
2) Quality Factors
3) CAST
4) Static Testing
5) Clean Room Software Development.

B/I/12/3,625

*4180403*

[4180] 403

Seat
No.

M.C.A. (Semester IV) (Mgmt. Faculty) Examination, 2012


IT 43 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q.1 is compulsory.


2) Solve any five from remaining.
1. A system is to be designed for a Medical Store. Different suppliers supply
medicines to this store. The customer purchases different medicines prescribed
by the doctor. The system should check the manufacture date, expiry date etc.
If the expiry date is over the medicines are sent back to the supplier. For each
medicine the customer has to pay (4% of) local tax extra. The system should
keep the record of all medicines. It should also check for re-order level, danger
level. The customer gets bill which is generated by the system.
Draw the following diagrams for above case :
a) Use case diagram

10

b) Class diagram.

10

2. Explain any two object oriented methodologies.


3. a) Draw sequence diagram for ordering an item through online shopping system.
b) Draw collaboration diagram for searching an item.

10
5
5

4. Explain in detail guidelines for preparing test plan.

10

5. Draw activity diagram for uploading college details for approval on AICTE website.

10

College representative should register online. AICTE intimates username and


password. College details, faculty details, student and non teaching details, lab
and library details etc are uploaded after login. Related documents are scanned
and uploaded and AICTE verifies them and shows non-compliance details.
P.T.O.

*4180403*

[4180] 403

6. Draw the state transition diagram for vacuum cleaner. The cleaner can operate
in two modes dry and wet. In dry mode it can be set to high or low sucking
capacity. If the cleaner is overloaded with dust alarm is fired and switched off. 10
7. Write short notes on (any 2) :

10

a) RUP phases
b) CRC
c) Object persistence
d) Layered approach to s/w development.

B/I/12/3625

[4180] 405

*4180405*
Seat
No.

M.C.A. (Semester IV) (Management Faculty) Examination, 2012


BME 1 Elective : MIS FRAMEWORK AND IMPLEMENTATION
(2008 Pattern)
Time : 3 Hours
Instructions :

Max. Marks : 70
1) Q. 1 and Q. 7 are compulsory.
2) Attempt any 4 questions from Q. 2 Q. 6.
3) Figures to right indicate full marks.
4) Draw neat labelled diagrams wherever necessary.

1. Discuss with suitable example, role of security in implementing IT projects.

10

2. Elaborate different benefits IT applications can provide through office


automation.

10

3. In the phase of recession, it is crucial to justify investments in IT. Explain how


information systems can help in justifying investments in IT.
10
4. Design and discuss a MIS Framework for e-learning applications.

10

5. Discuss role of DSS to gain competitive advantage in volatile scenario in


businesses.

10

6. Explain various socio-economic issues associated with implementation of on line


banking.
10
7. Write short notes on (any 4 ) :

20

a) CSFs in IT applications.
b) Experts systems.
c) Difference in MIS and EIS.
d) Collaborative systems.
e) Components of DSS.

B/I/12/530

[4180] 406

*4180406*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2012


BME 2 : FOUNDATION OF DECISION PROCESS
(Elective) (2008 Pattern)
Time : 3 Hours
Instructions : 1)
2)
3)
4)

Max. Marks : 70
Q. No. 1 is compulsory.
Solve any two questions from the remaining.
Figures to the right indicate full marks.
Use of electronic calculator is allowed.

1. a) Explain different criteria of decision making.

10

b) Arrival rate of telephone calls at a telephone booth are according to Poisson


distribution with average time of nine minutes between two consecutive arrivals.
The length of telephone call is assumed to be exponentially distributed with
mean 3 minutes.
1) Determine the probability that a person arriving at a booth will have to
wait.
2) Find the average queue length.
3) The company will install a second booth when convinced that an arrival
would expect to have to wait at least four minutes for the phone. Find
increase in flow of arrival, which will justify a second booth.
10
c) A retailer deals in a perishable commodity. The daily demand and supply are
variable. The data for past 500 days show the following demand and supply.
Supply
Availability (kgs)
10
20
30
40
50

Demand
No. of days
40
50
190
150
70

Demand (kgs)
10
20
30
40
50

No. of days
50
110
200
100
40

The retailer buys the commodity at Rs. 20 per kg and sells it at Rs. 30 per kg.
Any commodity remaining at the end of the day has no saleable value. More
P.T.O.

[4180] 406

*4180406*

-2-

over, the loss on any unsatisfied demand is Rs. 8 per kg. Given the following
pairs of random numbers, simulate six days sales, demand and profit.
(31, 18) (63, 84) (15, 79) (07, 32) (43, 75) (81, 27)
The 1 st random number in the pair is for supply and the 2nd random number
is for demand.
10
2. a) Discuss single channel, single server queuing model.

10

b) Shruti Ltd. has developed a sales forecasting function for its products and the
products of its competitors, Purnima Ltd. There are four strategies S1, S2, S3
and S4 available to Shruti Ltd. and 4 strategies P1, P2, P3 and P4 to Purnima
Ltd. The pay-offs corresponding to all the combinations of the strategies are
given below. State what would be optimal strategies for both the players ?
What is the value of game ? Is the game fair ?
The following pay-off matrix is shrutis pay -off matrix
Purnimas Strategies

Shrutis Strategies

P1

P2

P3

P4

S1

S2

S3

S4

10

3. a) An Oil drilling company considering the purchase of mineral rights on a property


of Rs. 100 lakhs. The price includes tests whether the property has type A
geographical formation or type B geographical formation. The company will
be unable to tell the type of geographical formation until the purchase is
made. It is known, however that 40 percent of the land in this area has type A
formation and 60 percent type B formation. If the company decides to drill on
the land it will cost Rs. 200 lakh. If the company does drill it may hit an oil
well; gas well or a dry hole. Drilling experience indicates that probability of
striking an oil is 1.4 on type A and 0.1 on type B formation. Probability of
hitting gas is 0.2 on type A and 0.3 on type B formation. The estimated
discount cash value from an oil well is Rs. 1000 lakh and from gas well is
Rs. 500 lakh. This includes everything except cost of mineral rights and cost
of drilling. Use the decision tree approach and recommend whether the
company should purchase the mineral rights.
10

*4180406*

[4180] 406

-3-

b) In a city, only two brands of Cola are sold AA and BB. If buyer bought cold AA
last time, there is 0.75 chance that he would buy the same cola in the next
purchase. Similarly it is known that if a buyer bought brand BB last time, the
probability for him to buy the brand AA next time is 0.40.
a) Using this information develop the transition probability matrix.
b) Find proportion of customer after two and three periods of two brands. If the
current market shares of two are as follows Cola AA : 60%, Cola BB : 40%.
10
4. a) The manager of a firm has two alternatives to choose from for the next quarter.
i) To take a contract to supply an item to a company which would result in a
sure profit of Rs. 20,000.
ii) To make and introduce a new product in the market. The likely profit /loss
possibilities along with the likely probabilities are also given. Also shown
are the utility values associated with the various profit levels.
Profit/loss :

20,000

20,000

40,000

Probability :

0.1

0.2

0.3

0.3

0.1

0.50

0.45

0.70

1.20

Utility (Utils) :

80,000

Determine which course of action would be prefered by the manager when he


wanted to maximize :
1) The EMV, and

2) the expected utility.

10

b) Write short notes on (any two) :


1) Monte -Carlo Simulation.
2) Elements of queuing system.
3) Dominance method and Algebraic method for solving Game theory problem. 10

B/I/12/920

[4180] 407

*4180407*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


BME-3 : Elective : INFORMATION SYSTEM AUDIT AND GOVERNANCE
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three from Q. 2 to Q. 5.
1. As being an external auditor, perform the auditing of a network firm. You have to
explain various physical and logical network controls implemented by the firm
for handling network issues. Prepare your report with list of evidences.
20
2. Explain Audit standards in detail.

10

3. What is code of professional ethics ? Explain.

10

4. Explain various steps involved in Risk Assessment Process.

10

5. Discuss in brief various IT crimes along with security and privacy issues.

10

6. Write short notes on (any four) :

(45=20)

a) BCP
b) HR Policies
c) e-governance
d) Managerial Controls
e) Performance Measurement Tools.

B/I/12/515

[4180] 408

*4180408*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


BME-4 : Elective (2008 Pattern)
COLLABORATIVE MANAGEMENT
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) Support your answers with relevant examples.
3) All the questions carry equal marks.
1. Collaborative management is used to describe various management techniques
that promote a sense of unity and teamwork among managers and supervisors
within a business organization. Elucidate the statement.
2. Discuss the assessment of Profiles of products/businesses and the development
cycles of products through BCG matrix.
3. Leadership style, corporate culture, values and ethics plays crucial role in effective
implementation strategy. Comment.
4. One plus one makes three: this equation is the special alchemy of a merger or
an acquisition. State the features of merger and acquisition.
5. A value chain is a chain of activities for a firm operating in a specific industry.
Explain the concept and discuss its competitive advantages.
6. Elaborate Porters five forces framework with the help of suitable examples.
7. Write short notes on any two :
a) SWOT Analysis.
b) Value chain.
c) Mckinseys 7s frame work.
d) Core competencies.
e) Symptoms of malfunctioning of strategy.

B/I/12/500

[4180] 409

*4180409*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2012


BME-5 (Elective) : DECISION SUPPORT SYSTEM (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No. 1 and 7 are compulsory.


2) Solve any four from the remaining.
1. Give a short overview of DSS and diagrammatically depict the structure of Model
Base Management Subsystem.
10
2. Explain Enterprise Support System with an example and enumerate ESS
characteristics and capabilities.

10

3. Differentiate between MIS and DSS across applications, decision capabilities,


type of information generated, database and highest organisational level served
with the help of an example
10
4. Explain traditional system development life cycle and state alternative
development methodologies.

10

5. Explain with help of examples how Data Mining can be helpful in identifying
business opportunity to create sustainable competitive advantage.

10

6. Discuss Enterprise Resource Planning and its benefits.

10

7. Short notes on (any four) :

(45=20)

a) Data Marts
b) Intelligent DSS
c) OLAP
d) GIS
e) Supply Chain Management.

B/I/12/2010

*418041*

[4180] 41

Seat
No.

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2012


IT-41 : JAVA PROGRAMMING
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 is compulsory.
2) Solve any 4 from Q. 2 to Q. 6.
1. Answer the following with justification.

10

1) Differentiate between method and constructor.


2) Explain the concept of overloading.
3) Explain Run Time Exceptions.
4) Give the life cycle of Java Servlet.
5) Explain wrapper classes.
2. a) Write an applet program to display smiling face after every 5 second change
in crying face.

b) Explain random access file class.

3. a) Write a client-server-socket programme client programme will accept


message from user and send it to server. Server will send current date and
time to the client.
b) Explain RMI architecture.

8
7

4. a) Write a JDBC application using servlet for project tracking system. Display
the completed projects by date. Assume suitable table structure.

b) Explain with suitable example two ways of thread creation.

5. a) Write a java program to 1 concatenate two text files sequentially into single
file. Accept file name from command line arguments.
b) Explain four types of JDBC Drivers.

8
7
P.T.O.

[4180] 41

-2-

6. Write short notes on (any 3) :

*418041*
15

a) Java beans
b) Inner classes
c) Session tracking in servlets
d) Garbage collection.

B/I/12/280

[4180] 410

*4180410*
Seat
No.

M.C.A. (Semester IV) (Management Faculty) Examination, 2012


BME 6 : ELECTIVE :ENTERPRISE RESOURCE PLANNING (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three questions from 2 to 5.
3) Figures to right indicates full marks.
1. Write detailed report on integration of various business modules by using ERP
system. Also explain functional technical modules and sub-modules.
2. a) What do you mean by integrated software ? Discuss in detail need of integrated
software.
b) What is BPR ? Discuss in detail significance in ERP system.

20
5
5

3. a) What is CRM ? Give the importance of CRM in business organisation.


b) What is data mining ? How OLAP is useful for the data analysis.

5
5

4. a) Explain critical success factors for ERP implementation.

b) List and explain various factors for vendor selection.

5. a) Explain the ERP implementation methodology in brief.

b) Explain end-uses training and going live stage of ERP implementation.


6. Write short note (any four ) :
a) Data warehousing
b) ESS
c) GAP analysis.
d) ERP vendor
e) ERP Training.

5
(54=20)

B/I/12/1,050

[4180] 42

*418042*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2012


BM-41 : SOFT SKILLS
(2005 Pattern)
Time : 2 Hours

Max. Marks : 50

Instructions : i) Q. No. 1 is compulsory.


ii) Solve any three from Q. 2 to Q. 7.
iii) Figures in the bracket indicate marks.
1. Write short notes on (any two) :
a) Time management.
b) Rapid Reading skills.
c) Silence as a mode of communication.
d) Electronic media of communication.

14

2. Define communication. Explain any four principles of communication giving suitable


examples.
12
3. Distinguish between written and oral communication.

12

4. Group discussion is a technique of involving and evolving. Discuss.

12

5. What is the importance of listening and what are the barriers to effective
listening ?

12

6. Write a covering letter and resume in response to the following advertisement in


Indian Express dated 13th March, 2012. You are Ms Asha Patel
Company : Planet Technologies, Karve Road, Pune.
Post : JAVA Programmers.
Work experience : 0 2 yrs.
Qualification : MCA/BE.

12

7. Explain the role of sign boards and symbols in Non-verbal communication.

12

B/I/12/230

[4180] 43

*418043*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2012


IT-43 : SOFTWARE ENGINEERING
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and 6 are compulsory.


2) Attempt any 3 from the remaining.
1. a) Centralized purchase system collects requisitions from other departments.
Suppliers send their quotations according to the requirements given supplier
is short listed and purchase order is released on him.
As a consultant prepare SRS and system specification for the above system.

20

2. Explain object oriented methodology.

10

3. Explain maintenance and the methods of estimating maintenance cost.

10

4. Explain the role of CASE Tools with its advantages throughout software
development life cycle.

10

5. Design a GUI form for opening a saving account in a bank.

10

6. Write short notes on (any four) :

(45=20)

a) Inspection process
b) Agile process
c) Legacy system
d) Re engineering
e) Structured charts.

B/I/12/245

[4180] 44

*418044*

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2012


MT-41 : OPTIMIZATION TECHNIQUES
(2005 Pattern)
Time : 3 Hours

Max. Marks : 80

Instructions :i) Solve any four questions.


ii) All questions carry equal marks.
iii) Figures on right indicate full marks.
iv) Use of Electronic calculators and Statistical tables is allowed.
1. a) Solve the following LPP by two phase method.
Min z = 4x1 + x 2
subject to
3x1 + x2 = 3
4x1 + 3x2 > 6
x1 + 2x2 < 3
2x1, x2 > 0.
b) Explain dual Simplex method for an LPP.

10
10

2. a) Solve the following :


Max z = 200 x1 + 300 x2
subject to
2x1 + 4x2 < 17
3x1 + 3x2 < 15
x1, x2 > 0 and integer.

10

P.T.O.

[4180] 44

*418044*

-2-

b) Find out the initial solution of the following transportation problem using
1) North west corner method
2) Least cost method
3) Vogels approximation method.

10

Destination
1

Supply

10

400

12

10

300

11

12

300

Demand

200

300

500

Sources

3. a) Describe EOQ and economic lot size models for the economic lot site model.
Production rate is finite. Both models do not allow shortages.
10
b) A manufacturer uses 45,000 units of an item annually. No shortages are
allowed and supply is instantaneously. Cost of ordering is Rs. 50/- per
order and inspection cost of items is Rs. 15/- per order. The holding cost is
Rs. 0.65 per unit per year
Calculate
i) EOQ
ii) Order interval.
iii) If the lead time is 5 days, calculate the reorder level. Assume year of
300 days.
10
4. a) Describe the characteristic of the queuing model given below.
(M/M/C) : (FCFS/ / )

10

Giving the formula for relevant quantities.


b) Assume that at a bank teller window, customer arrives at a rate of twenty per hour
according to a poisson distribution. Assume also that the bank teller spends an
average of two minutes per customer to complete a service and service time is
exponential. Customers are served on first come first serve basis and there is no
limit on queue length.
1) What is the expected waiting time in the system per customer ?
2) What is the mean number of customers waiting in the system ?
3) What is the probability that there is no customer in the system ?
4) Utility factor of system.
10

*418044*

[4180] 44

-3-

5. a) Describe different replacement models for the system that deteriorate with
time.
10
b) An electronic assembly contains 1600 units of a particular component failure
of any of them stops from the functioning of that assembly and hence the
failed components need immediate replacement when failure occurs.
The mortality pattern of these components based on past data is as follows
Month end :
1
2
3
4
5
6
% failure by month end 5
25
45
70
85
100
The individual replacement cost is Rs. 10 and group replacement cost is
Rs. 7 per unit. Find if it is better to have group replacement.
10
6. a) Bring out the differences between the following pairs
i) PERT and CPM.
ii) Critical path and critical activity.
iii) Earliest start and latest start.

10

b) The following table gives data of time and cost. Solve the following to find
minimum duration of the project and the cost of project
Activity

Duration

10

Cost

Normal

Crush

Normal

Crush

12

300

450

23

75

75

24

200

300

25

120

120

34

100

190

46

90

130

56

60

110

B/I/12/280

[4180] 45

*418045*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2012


(Elective) (BME 1)
MIS FRAMEWORK & IMPLEMENTATION
(2005 Pattern)
Time : 3 Hours
Instructions : 1)
2)
3)
4)

Max. Marks : 70
Q. 1 and Q. 7 are compulsory.
Attempt any 4 questions from Q. 2 Q.6.
Figures to right indicate full marks.
Draw neat labelled diagrams wherever necessary.

1. Explain with suitable example, how information systems influence organizational


planning and control functions.
10
2. What are Expert systems ? Compare and contrast Expert systems with DSS and
EIS.
10
3. How information systems can provide competitive advantage in the era of global
business ? List down any five visible effects of this competitive advantage.
10
4. How need and format of information differs for managers at different levels ?

10

5. Explain components of DSS with suitable diagram.

10

6. What are critical success factors ? Explain the same with reference to
e-Governance applications.

10

7. Write short notes on (any 4) :

20

a) Information Technology Policy.


b) Significance of MIS.
c) Executive Information Systems.
d) Socio-Economic factors in MIS framework.
e) IT infrastructure.

B/I/12/150

[4180] 47

*418047*
Seat
No.

M.C.A. (Semester IV) (Mgmt. Faculty) Examination, 2012


Elective BME-3 : INFORMATION SYSTEM AUDIT
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Question No.1 and 6 is compulsory.


2) Attempt any 3 questions from Q.2 to Q.5.
1. a) Describe major steps involved in IS Audit.
b) Explain BCP process in detail.
2. Explain the role of data base in Audit process.

10
10
10

3. Explain the performance measurement tools used by auditor for auditing an ERP
system.
10
4. Explain audit process in detail.

10

5. Explain auditors responsibilities for long term and short term plan.

10

6. Write short notes on (any 4) :

20

1) IT crimes
2) Segregation of duties
3) Validation controls
4) Audit charter
5) Hardware and software procurement.

B/I/12/145

[4180] 48

*418048*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


BME-4 Elective (2005 Pattern)
COLLABORATIVE MANAGEMENT
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) Support your answers with relevant examples.
3) All the questions carry equal marks.
1. The Mckinseys 7s frame work model is most often used as a tool to assess
and monitor changes in the internal situation of an organization. Elaborate.
2. Write an essay on merger and acquisition.
3. Explain BCG matrix. How is the GE nine Cell different from BCG matrix ?
4. Environmental Threat and Opportunity Profile provides a clear picture to the
strategist about which sectors and different factors in each sector have a favorable
impact on the organization. Elucidate the statement.
5. Explain the features of collaborative management with the help of suitable
examples.
6. What are the various types of Leadership style ? How do these styles play a
crucial role in effective implementation of strategy ? Comment.
7. Write short notes on any two :
a) Synergy and dysergy
b) Project implementation
c) Symptoms of malfunctioning of strategy
d) Core competencies.

B/I/12/165

[4180] 49

*418049*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2012


BME - 5 : DECISION SUPPORTS SYSTEMS (Old) (Elective)
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

N.B. : 1) Question No. 1 and 7 are compulsory.


2) Solve any four from the remaining.
1. Explain prototyping. Discuss why prototyping is used as a methodology for
DSS development.

10

2. List the major components of DSS and briefly define each of them.

10

3. Discuss Enterprise Resource Planning (ERP) and its benefits.

10

4. Explain the database organisation and structures used in DSS.

10

5. Compare and contrast value chain and supply chain also give the major problems
that could develop along the supply chain.
10
6. Explain Enterprise Support System and enumerate its characteristics and
capabilities.
7. Write short notes on (any four) :

10

(45=20)

a) OLAP
b) Data Mining
c) Business Intelligence
d) Data Visualisation
e) Knowledge Based Expert System.

B/I/12/180

[4180] 50

*418050*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2012


Elective : BME 6
INVESTMENT TECHNOLOGY
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions from Section.


2) All questions carry equal marks.
1. Mutual fund provides stability to share prices, safety for investors and resources
to prospective entrepreneurs Discuss.
2. Explain in detail the different tools of information technology available to the
investors in India.
3. What are ventures capitals funds ? What are the different stages in funding by
these funds ?
4. Explain in details the Treynor Jenson measures used in portfolio theory.
5. Is fundamental analysis is more important than technical analysis ? Explain in
detail.
6. What are the factors to be considered while building an investment portfolio ?
7. Write short notes on any two :
a) Usefulness of credit rating
b) Kinds of mutual funds
c) Concept of estimating earning and risk
d) Martingle methods
e) Capital market money.

B/I/12/165

[4180] 501

*4180501*

M.C.A. (Semester V) (Management Faculty) Examination, 2012


IT-51 : HUMAN COMPUTER INTERFACE
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1)
2)
3)
4)

Question No. 1 is compulsory.


Answer any five from the remaining.
Assume suitable data wherever necessary.
Figures at right hand indicate full marks.

1. Answer any four :

20

a) Explain the Pillars of User Interface Design.


b) What are the benefits and problems of voice recognition input ?
c) Explain the different characteristics of good Web Page design.
d) Describe the concept of Direct Manipulation Programming.
e) Explain the different form filling guidelines.
2. Explain the various interaction styles with their drawbacks and benefits.

10

3. What five methods might be used as part of an expert review ? Describe any 3
methods in brief.

10

4. List down in 5 phase frame work to clarify user interfaces for textual search.
Explain each of them in detail.

10

5. Explain 8 Golden rules of Interface design with example of each rule.

10

6. State various video input devices. Explain response time and display rate
importance in video input.

10

7. Write short notes on any 2 of the following :

10

a) Online Vs Printed Manuals.


b) Error Messages Guidelines.
c) Short Term and Long Term memory.

B/I/12/1055

[4180] 503

*4180503*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester V) Examination, 2012


IT-53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question No. 1 and 7 are compulsory.


ii) Attempt any four from remaining.
1. Diamond University has its Head Office at Pune. It has 20 branches spread
across Asia, America, Europe and Africa. All branches and Head Office are
connected to each other through a sound and stable network. As a network
consultant, suggest a suitable BCP assuming the occurance of threats to the
branch offices and the Head Office in near future.
15
2. Explain various electronic payment methods. How transactions are performed in
E-Banking ?
10
3. Explain Knowledge Management and Knowledge Management-tools.

10

4. What is Embedded System ? Explain components and its various advantages.

10

5. What is Knowledge Management ? Explain Knowledge Management Architecture.

10

6. What is GIS ? Explain various standards and its implementation.

10

7. Write short note on (any three) :


a) Knowledge Management Cycle
b) Types of E-Learning
c) Palm Devices
d) Warehouse Management

15

e) E-Agriculture.

B/I/12/740

*4180504*

[4180] 504

Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


IT 55 ADVANCED INTERNET TECHNOLOGY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Question 1 and 5 are compulsory.
2) Solve any 2 questions from remaining questions.
3) Figures to right indicate full marks.

1. a) Why e-commerce ? Explain benefits of e-commerce.

b) Explain HTTP request and response messages.

2. a) Write a servlet code to do the following :


i) Get user ID and password parameters from Login.html file and set or
create cookies of it.
ii) Retrive these set cookies and verify the user validity from the table.
(Assume suitable table structure).

10

b) Write a JSP code to search a student placement details from the placement
database by student.Id. (Assume suitable table structure).

10

3. a) Explain CGI architecture. Write a PERL program to create a file and insert
data in it.

10

b) Explain S-REQUEST super global. Write PHP code to demonstrate


S-SESSION.

10

P.T.O.

*4180504*

[4180] 504

4. a) Write PHP code to accept name of the file from user. Store all the details of
the file like file type, location etc. to the database table. (Assume suitable
table structure)

10

b) Explain JSP actions with example.


5. Write short note on (any four) :

10
20

i) E-check
ii) Compare CGI and servlet
iii) Default objects in JSP
iv) PHP error handling
v) Servlet life cycle.

B/I/12/960

[4180] 505

*4180505*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


CYBER LAW AND IT SECURITY (IT-E 1) (Elective)
(2008 Pattern)
Time : 3 Hours
Instructions :

Max. Marks : 70
1) Que. 1 and Que. 7 are compulsory.
2) Solve any three from remaining questions.

1. a) Explain the Encryption technique in detail.

10

b) Explain use of IT Act 2000 in E-Commerce.

10

2. What is digital signature ? How the digital signature is use for security purpose ?

10

3. What are the powers of adjudicating officer to impose penalty ?

10

4. What are different types of certificates ?

10

5. Explain the concept of domain name with the reference to cyber law.

10

6. Explain the scope of IT Act 2000.

10

7. Write short notes on any four :

(5 4=20)

a) Cyber Squatting
b) Reverse Hijacking
c) Framing
d) Spamming
e) Power of Controllers
f) RSA algorithm.

B/I/12/260

[4180] 507

*4180507*
Seat
No.

M.C.A. (Semester V) (Management Faculty) Examination, 2012


ITE 3 : ADVANCED UNIX (Elective)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q.1 and Q. 7 are compulsory.


2) Solve any four from remaining.
3) Draw neat diagrams where necessary.
1. Explain the following system calls :

(52=10)

a) malloc ()
b) link ()
c) chdir ()
d) fork ()
e) stat ().
2. Explain the concept of semaphore. Describe the various system calls related to
semaphores.
10
3. What are signals ? How are they generated ? Explain signal handling in detail.

10

4. Write a program to create a file with a hole.

10

5. Explain the term Environment variables. Describe the functions to access


and manipulate them.

10

6. What is Race condition ? How can it be avoided ?

10

7. Write short notes (attempt any four) :

(54=20)

a) Record Locking
b) Zombie Processes
c) Real User ID and effective User ID
d) File types
e) Buffering.

B/I/12/280

[4180] 508

*4180508*
Seat
No.

M.C.A. (Semester V) (Mgt. Faculty) Examination, 2012


(Elective) ITE4 : MOBILE WIRELESS COMPUTING
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and 6 are compulsory.


2) Attempt any three from remaining.
1. a) Define the following terms (any five) :
i) BSS
ii) SIM
iii) 802.11
iv) Bitrate
v) HLR
vi) VLR.

10

b) Explain functions of each layer in WAP architecture.

10

2. Describe the main steps in inter BS hand off procedure.

10

3. Explain indirect TCP with its advantages.

10

4. What is MAC ? Compare and Contrast different types of MAC with examples.

10

5. Explain the importance of framing and logical channels in GSM.

10

6. Write short notes on (any four) :


a) PUSH-PULL
b) Features of WLAN
c) Quality of Service in wireless network

20

d) Access Technologies
e) AdHoc networks
f) Mobile Agents.

B/I/12/255

[4180] 51

*418051*
Seat
No.

M.C.A. (Semester V) (Mgmt. Faculty) Examination, 2012


IT 51 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q.1 and Q. 6 are compulsory.


2) Solve any three from remaining.
1. a) Write a test plan with scope of testing, risks, strategy, schedule, pass/fail
criteria for a online shopping system.
b) Describe SQA activities.

15
5

2. Explain V & V model in detail, with suitable diagram.

10

3. Differentiate (any two) :

(52)

a) Alpha vs Beta Testing


b) Functional vs Non Functional Testing
c) Static vs Dynamic Testing.
4. Explain bug life cycle in detail.

10

5. Define need of reviews in testing process, explain different types of reviews


with suitable examples.

10

6. Write short notes (any four) :

(45)

1) Performance testing
2) Cyclomatic complexity
3) CMM
4) CAST
5) Equivalence partitioning.

B/I/12/240S

[4180] 53

*418053*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester V) Examination, 2012


IT-53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No. 1 and 7 are compulsory.


2) Attempt any four from remaining.
1. A co-operative Bank has Head Office and 7 branches in the city. All the branches
and Head Office are computerized and connected to each other through network.
As a system consulting suggest suitable BCP.
15
2. What is E-banking ? What are the different securities required in E-banking ?

10

3. What is E-Governance ? Explain various strategies and tactics for implementation


of E-Governance.
10
4. What are the various E-learning models ? Explain in detail.

10

5. Explain supply chain management and E-logistics.

10

6. What is GIS ? Explain various standards and its implementation.

10

7. Write short note (any three) :

15

a) Knowledge management
b) RFID
c) Embedded systems
d) E-commerce
e) ATM.

B/I/12/200

[4180] 54

*418054*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


BM 51 : SOFTWARE PROJECT MANAGEMENT
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 7 is compulsory.
2) Solve any five from Q. No. 1 to 6.
1. Explain different type of cost estimation. Explain FPA in detail.

10

2. What is maintenance ? Explain different types of maintenance.

10

3. Describe the factors that influence the quality of software product.

10

4. Explain recruitment process of IT personnel.

10

5. Explain Ms-Project in detail and difference between CPM/PERT.

10

6. What is the difference between software engineering and SPM ? Explain PDLC
in detail.
10
7. Write short note (any 4) :

20

i) Gantt chart
ii) Version control
iii) LOC
iv) Quality standards
v) Software configuration management.

B/I/12/200

[4180] 55

*418055*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2012


IT-1 : DISTRIBUTED DATABASE MANAGEMENT SYSTEMS
(2005 Pattern) (Elective)
Time : 3 Hours
Note : 1)
2)
3)
4)
5)

Max. Marks : 70
Full marks are indicated to the right of each question.
Draw suitable diagrams when needed.
Give suitable examples if required.
Whenever necessary state assumptions.
Q. 7 is compulsory. Solve any five from remaining.

1. Explain how concurrency control is managed in distributed data bases.

10

2. What are the different types of fragmentation ? Explain with suitable examples
on allocation criteria.

10

3. Explain architecture of distributed database management systems.

10

4. Explain the salient feature of DDBMS.

10

5. Explain query optimization, query execution and access plan with suitable
example.

10

6. What is transaction, and its various types.

10

7. Write short notes on any four :

(54=20)

a) Types of failures in DDBMS.


b) Fundamental object management issues.
c) Distributed Database Administration.
d) 2-Phase commit protocol.
e) DBMS and DDBMS.

B/I/12/130

[4180] 56

*418056*

M.C.A. (Semester V) (Management Faculty) Examination, 2012


(2005 Pattern) Elective (IT 2)
ARTIFICIAL INTELLIGENCE
Time : 3 Hours
Instructions :1)
2)
3)
4)

Max. Marks : 70
Q. 1 is compulsory.
Solve any five questions from Q.2 to Q.7.
Figures to the right indicate full marks.
Draw neat and suitable diagram wherever necessary.

1. a) Define AI. Explain various AI applications.

10

b) Describe in detail tower of Hanoi.

10

2. a) Explain depth first search algorithm with the help of suitable example.

b) What is problem decomposition ? Explain.

3. a) Explain the problem spaces and search.

b) List and explain problem characteristics of heuristic search.

4. a) How parse tree helps in understanding language ? Discuss with an example.


b) What is knowledge management ? Discuss various approaches of knowledge
representation.
5. a) Illustrate the branch and bound with example.

7. Write short note (any two) :

5
5

b) What is expert system ? Give the importance of expert system in business


organisation.
6. Illustrate Mini-Max search for the tic-tac-toe game, with initial position.

5
10

(25=10)

a) Fuzzy Logic.
b) Frame
c) Robotics.

B/I/12/130

[4180] 57

*418057*
Seat
No.

MCA (Management Faculty) (Semester V) Examination, 2012


Elective IT 3 : NETWORK SECURITY
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three from Q. 2 to Q. 5.
3) Give appropriate examples wherever necessary.
1. a) Explain how Chinese Wall Policy is different than Clark-Wilson Access Control
Model.
10
b) Explain Digital Signature and Digest. How nonrepudiation can be provided in
digital signature.
10
2. Explain IPSec as IP encapsulating security protocol.

10

3. Differentiate between SSL and TLS Web Security protocols.

10

4. Explain working of packet-filter firewall with suitable example.

10

5. Explain with example Encryption, Decryption and Restriction in RSA cryptography. 10


6. Write short notes (any four) :

(45=20)

a) International Data Encryption Algorithm (IDEA)


b) Passive and Active attacks
c) Cryptanalysis
d) ACL in Proxy
e) HRV
f) Secure Hash.

B/I/12/150

*418058*

[4180] 58

Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


Elective IT-4 : MOBILE COMPUTING
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Question No.1 and 7 are compulsory.


2) Attempt any three from the remaining questions (2-6).
1. a) Define the following terms (any five) :

10

i) Wireless TCP
ii) Frame Error Rate
iii) Visitor Location Register
iv) Mobile Management Function
v) UMTS
vi) GSM.
b) Explain the features of wireless network. What are the advantages and
disadvantages of wireless networking ?
2. i) What is cell breathing ?

10
3

ii) List and explain any four functions of base station controller used in GSM.

iii) What is Hidden node problem and how it is resolved in 802.11 ?

3. What is a WAP gateway ? What are its functions ? Explain.

10

4. i) Why cells are in hexagonal shape and what are its advantages ?

ii) For GSM explain importance of framing and logical channels.

5. How can DHCP be used for mobility and how it support to mobile IP ? Explain.

10

P.T.O.

*418058*

[4180] 58

6. i) What is Handoff ? How do you perform Handoff during roaming ?


ii) Compare DSSS and OFDM.
7. Write short notes (any four) :

5
5
20

a) SIM
b) Distributed computation
c) CDMA
d) RTC-CTS protocol
e) IMT-2000
f) Adhoc-network.

B/I/12/130

*418059*

[4180] 59

Seat
No.

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2012


(2005 Pattern)
Elective IT 5 : VISUAL PROGRAMMING USING C++
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Que. 1 is compulsory.


2) Attempt any three questions from the remaining Que.
3) Figures to the right indicate full mark.
1. a) Design a class employee having empid, name and salary are the data
members. Write a menu driven programme to do following task using the
concept file i/o in C++.
10
1) Add employee record
2) View employee record
3) Delete employee record
b) Write a programme to demonstrate pointer arithmetic.

10

c) What is EDI ? What are EDI objects available in SDK.

2. a) Define a class time with suitable constructor method. Write a member function
to swap two time objects. Write a function to validate the time.
10
b) What is virtual function ? Explain with suitable example.
3. a) Design C++ class to implement singly linked list.
b) Write short note on MDI and SDI.

5
10
5
P.T.O.

[4180] 59

-2-

*418059*

4. a) What is Function overloading ? Write C++ program to overload a function


named substraction. The substraction function take following parameters.

10

1) Two integer
2) Two values
3) Two string
b) Write Note on Scope Operator.
5. a) Design C++ class string and overload < and > operator.
b) Explain abstract class with suitable example.

5
10
5

B/I/12/130

[4180] 61

*418061*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


Elective I T-7 : PARALLEL COMPUTING
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Question No.1 is compulsory.


2) Solve any five from Q. 2 to Q. 8.
1. Discuss the following (any four) :

(54=20)

a) Grid Computing
b) Gantt chart
c) Cluster Computing
d) Parallel Virtual Machine
e) Multithreading
f) Communication latency.
2. State and explain different fundamental Parameters required for the analysis of
Parallel algorithm.

10

3. What is pipeline processing. Draw and explain the architecture of pipeline


processing.

10

4. Explain Tightly coupled and loosely coupled system with examples.

10

5. Write a program for PVM (Parallel Virtual Machine), to give listing of the Slave
or Spawned program.
10
6. Differentiate between control flow computing concept and data flow computing
concept with example.

10

7. What is Flynns classification ? Explain different parallel systems with example.

10

8. Differentiate : vector processing and scalar processing concept.

10

B/I/12/150

[4180] 62

*418062*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester V) Examination, 2012


Elective IT 8 : ADVANCED UNIX
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q.1 and Q.6 are compulsory.


2) Solve any three from remaining.
1. A) Explain memory management routines in UNIX.

10

B) Explain in detail about the structure of UNIX operating system.

10

2. What are message queues ? How do they help in message transmission ?

10

3. Explain the various ways by which a process can be terminated.

10

4. Explain pipes. How to create a pipe ? Explain with suitable example.

10

5. Explain the different system calls associated with file I/O.

10

6. Write short notes (attempt any four only) :

(54=20)

a) Semaphores
b) Orphan process
c) File permissions
d) Signals
e) Sessions.

B/I/12/150

[4180] 63

*418063*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


Elective IT-9 : PROGRAMMING LANGUAGES AND PARADIGMS
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70
Note :

1) Q. 8 is compulsory.
2) Attempt any five from remaining.

1. Explain the attributes of good language.

10

2. Write down evaluation of C language.

10

3. Explain abstraction and encapsulation with example.

10

4. What is translator ? Explain stages in translation with block diagram.

10

5. Explain syntatic elements of language.

10

6. Distinguish between Sequential and Direct Access Files.

10

7. Explain structured sequence control with example.

10

8. Write short note on (any four) :

(54=20)

a) Composite data types.


b) Vector and arrays.
c) Static scope.
d) Variable size elements in storage management.
e) Call by value, call by reference.
f) Recursive sub program control.

B/I/12/150

*43801002*

[4380] 1002

Seat
No.

M.C.A. (Semester I) (Management Faculty) Examination, 2013


IT 12 : 102 - C PROGRAMMING
(2012 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 is compulsory.


2) Attempt any 6 from remaining.
1. Find and explain output of following (any four) :

10

a) Void main ( ) {
int fun (int);
int i = fun(10);
printf(%d\n, i);
}
int fun(int i) {
return(i ++);
}
b) Void main( ) {
int i = 4, j = 1, k = 0, w, x, y, z;
w = i || j || k;
x = i && j && k;
y = i || j && k;
z = i && j || k;
printf(%d %d %d %d\n, w, x, y, z);
}
P.T.O.

[4380] 1002

-2-

*43801002*

c) Void main( ) {
unsigned in res;
res = (64 > > (2 + 1 2)) & (~(1 < < 2));
}
d) Void main( ) {
char str[ ] = {70, 97, 105, 116, 104, 0};
printf(%s\n, str);
}
e) # define A 50
# define B A + 100
void main( ) {
int i, j;
i = B/20;
j = 500 B;
printf(i = %d, j = %d\n, i, j);
}
2. Write a C program to count and display total number of alphabets, numeric
characters, special characters, number of words and number of lines in a file.
3. a) Write a C program to get transpose of given matrix in same matrix.
b) Write a program to find sum of this series upto n terms.

10
5
5

1 + 1 + 1 + 1 + 1 + ...
2 4 9 16

4. Write a C program to read runs scored by a batsman in last 5 innings. Display bar
chart showing batsmans last five performances.
10

*43801002*

-3-

[4380] 1002

5. a) Write a function for performing case sensitive string comparison. [use pointers]
b) Write a program to print following pattern for n number of lines.
For n = 5

2 2

3 3

5
5

1 1 1
2

6. Write a C program to accept 100 records of employee. The structure contents


name, age and basic salary. Also calculate total salary of employee as

10

total salary = Basic + D.A. + HRA


where DA is 10% of Basic and
HRA is 5% of Basic
Display name, age and total salary of employees in descending order on the
basis of total salary.
7. a) Write recursive program to print Fibonacci series for n terms.
b) Write a function to reverse the given number.
8. Write short note on :

5
5
10

a) Malloc( ) and free( )


b) Bit fields.

B/I/13/2,255

[4380] 105

*4380105*
Seat
No.

M.C.A. (Management Faculty) (Semester I) Examination, 2013


MT 11:106 : DISCRETE MATHEMATICS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question No. 1 is compulsory.


ii) Attempt any 2 from Questions 2, 3 and 4.
iii) Figures to the right indicate full marks.
1. a) Obtain the PDNF for the given formula : (P (( Q R) (R P)) .

b) Let A = {1, 2, 3, 4} and R = {<x, y>|x is greater than or equal to y}. Check
whether the given relation R is equivalence relation or not.

c) Let A = {2, 3, 4, 6, 12, 18, 24, 36}. A partial order < defined as a divides b.
Draw the Hasse diagram.

d) Define Semigroup and Monoid.

e) Draw a simple and complete graph with 4 vertices.

f) Draw the truth table for the following :

i) (P Q)
ii) (R ( Q P)
2. a) Let A = {1, 2, 3, 4, 6}; aRb if and only if a is multiple of b. Find.
i) R
ii) Matrix of the relation R
iii) Diagraph of R.

b) Express the contrapositive, converse and inverse forms of the conditional


statement given below: If x is rational, then x is real.

c) Show that the proposition ((P Q) ( P ( Q R))) is tautology or not.

P.T.O.

[4380] 105

*4380105*

3. a) Find the group codes generated by

1 1 0 1 1 0 0

H = 1 0 1 1 0 1 0 .
1 1 1 0 0 0 1

b) Let A = {1, 2, 3, 4} and let R = {(1, 1), (1, 2), (1, 4), (2, 4), (3, 1), (3, 2), (4, 2),
(4, 3), (4, 4)}. Find transitive closure by using Warshalls algorithm.

c) Let R {<a, a>, <a, b>, <b, a>, <b, b>, <c, a>} and S = {<a, a>, <a, c>, <b, c>,
<c, c>}. Find R R, R (S R) .

4. a) Check whether the following graphs are isomorphic or not.

b) Check <I, *> is a binary operation, where I is set of integers and * is defined
as : x*y= x+y xy.
c) Define :
i) Tautology
ii) Contradiction
iii) Connected Graph.

6
6

B/I/13/565

[4380] 2005

*43802005*
Seat
No.

M.C.A. (Management Faculty) (Semester II) Examination, 2013


205 -IT 24 : ENTERPRISE RESOURCE PLANNING
(2012 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question No. 1 and Question No. 6 are compulsory.


ii) Solve any three questions from question Nos. 2, 3, 4 and 5.
iii) Figures to the right indicate full marks.
1. The Institute of Corporate Planning is well reputed institute providing higher
education in the field of Management and Computer Science. Presently, the
institute is using manual system for administrative work which resulting in data
inconsistency and time consuming. So to overcome this problem the institute
decided to develop the integration of various departments for office automation,
being You as ERP consultant discuss the pre-implementation and postimplementation key success factors. Also prepare the detail report about the
ERP implementation.
20
2. a) Explain the need and importance of ERP system.

b) Discuss the modules and sub modules in Human Resource Management.

3. a) Explain the modules in production planning and production control in ERP


systems.

b) Explain the role of management in ERP implementation.

4. What is BPR ? Discuss BPR lifecycle in detail with suitable diagram.

10

5. Explain ERP implementation methodology in brief.

10

6. Write a short note on (any four) :


1) OLAP
2) ERP Vendors
3) Data Warehousing
4) CRM
5) ERP market.

20

B/I/13/5,275

[4380] 201

*4380201*
Seat
No.

M.C.A. (Semester II) (Management Faculty) Examination, 2013


IT-21 : 201 : DATA STRUCTURES USING C
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Question 1 is compulsory.


2) Solve any five from Q. 2 to Q. 8.
3) Assume suitable data wherever necessary.
4) Draw suitable diagram wherever necessary.
5) Figures to right indicate full marks.
1. A) A graph is implemented as adjacency list of N nodes. Write a non-recursive
function for Depth first search traversal.

B) Define Data structure.

C) A float array is defined as float no [50] [60] [70] [80]. Find the address of
element no [20] [30] [40] [50].

D) Write a note on Abstract Data type.

2. Write a program to multiply two polynomials.

10

3. Write a program using function create ( ), insert ( ), delete ( ), display ( ) for


doubly Linear linked list.

10

4. Convert the following in fix expressing into its equivalent postfix and prefix form.
Show contents of stack in table format.
10

( A + B) C D / E F
5. Draw an AVL tree for the following. Nanded, Pokhran, Pune, Revasa, Solapur,
Jamkhed, Amravati, Parner, Mumbai, Yavatmal.

10

P.T.O.

[4380] 201

-2-

*4380201*

6. Write short notes on :

10

A) DEQUEUE
B) Generalized Linked list.
7. A) Write an algorithm for Non-recursive preorder traversal of Binary search tree.
B) Draw a Binary search tree for the following data

5
5

70, 80, 50, 90, 10, 20, 65, 100


Write preorder and postorder traversals for the above tree.
8. A) Write a function to insert node in threaded binary tree.
B) Explain Applications of Queue.

5
5

B/I/13/1,560

[4380] 305

*4380305*
Seat
No.

M.C.A. (Semester III) (Mgmt. Faculty) Examination, 2013


BM 31 : 305 : MANAGEMENT SUPPORT SYSTEMS AND IS SECURITY
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q. 1 and 7 are compulsory.


2) Attempt any four from Q. 2 to Q. 6.
3) Figures to the right indicate full marks.
1. Explain in detail the information required in designing IT-based MIS for handling
personal function.
10
2. Explain the use of heuristic programming in decision making.

10

3. Define organisation and explain the various types of organisation structure.

10

4. Explain the significance of value of information and explain different types of


information.

10

5. Define DSS. Explain various components of DSS in detail.

10

6. Explain in detail about the security aspects of Information Systems.

10

7. Write short notes (on any four) :

(45=20)

a) Static and Dynamic Models


b) Characteristics of EIS
c) Types of Systems
d) Negative Feedback
e) Conventional Systems Vs Expert Systems.

B/I/13/1,490

[4380] 404

*4380404*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2013


MT 41 : OPTIMIZATION TECHNIQUES
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i)
ii)
iii)
iv)

Question No. 1 is compulsory.


Solve any two questions from question nos. 2, 3 and 4.
Use of Scientific Calculator and Statistical Tables are allowed.
Figures to the right indicate full marks.

1 a) A project consists of different activities and relevant data as follows :

Duration (days)

Activity

Immediate
Predecessor

B, D

B, D

C, F

11

G, I

Optimistic Most Likely Pessimistic

i) Draw PERT Network of the project.


ii) Find the expected duration of the project and variance.
iii) Find the probability that the project will be completed before 18 days.

P.T.O.

[4380] 404

*4380404*

-2-

b) Solve the following Integer Programming Problem :

Max : Z = 4x1 + 6x2


Subject to :
x1 + 3x2 < 6
6x1 + x2 < 24
x1, x2 > 0 and integers
c) In a super market, handled by one cashier, customers expected to arrive 6 in
an hour. The cashier takes 6 minutes to handle a customer. Find :

i) the probability that the customer need not wait.


ii) expected number of customers waiting for the cashier.
iii) the average time spent by the customer in the supermarket.
d) Solve the problem of job assignments to minimize the cost :

Technicians

Jobs
J1

J2

J3

J4

J5

J6

T1

T2

T3

T4

T5

2. a) Find the optimum solution for the given transportation problem :

Factory
Plants

Warehouses

Supply

10

12

500

14

12

600

14

10

200

10

12

14

700

700

550

450

300

Demand

*4380404*

[4380] 404

-3-

b) The following are the failure rates of certain type of capacitors.

Week :

Percent of failing at end of week :

20

45

70

100

There are 500 such capacitors present in the machine. The cost of replacing
individually a failed capacitor is Rs. 5. If all the capacitors are replaced at
fixed interval, whether they are working or not working, it would cost Rs. 2
per capacitor. What policy the maintenance manager should follow between
individual replacement policy and group replacement policy, if group policy is
adopted, at what interval of time he should replace all capacitors ?
c) Explain the terms :

i) Degeneracy in transportation problem


ii) Unrestricted variable
iii) Constraint
iv) Arrival rate
v) Infeasible solution
3. a) Solve the following LPP by 2-phase simplex method :

Min : Z = 5x1 + 9x2


Subject to :
3x1 + 2x2 > 3
1x1 + 4x2 > 4
x1, x2 > 0
b) A companys demand for a particular item is 40000 in a year. The cost to the
company to place an order is Rs. 400 and the company spends Rs. 2 per item
per year to store the item. Find :

i) The optimum lot size


ii) The time interval between the orders
iii) Total inventory cost
c) Explain the various queuing models.

[4380] 404

*4380404*

-4-

4. a) The time and costs of a certain project is given in the following table:
Normal

Activity

Crash

Time

Cost

Time

Cost

12

1400

1900

13

2000

2800

23

1100

1500

24

800

1400

34

35

900

1600

46

10

2500

3500

56

500

800

The indirect cost of the project is Rs. 300 per day. Draw the project network
and find the normal duration and cost. If the activities are systematically
crashed, then what would be the optimum duration and cost of the project ?
b) Explain the following assignment problem as LPP :
A

II

III

IV

c) Describe the inventory model instantaneous supply and without shortages.

B/I/13/5,470

[4380] 407

*4380407*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2013


BME3 : Elective : 413 : INFORMATION SYSTEM AUDIT AND
GOVERNANCE
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three from Q. 2 to Q. 5.
1. Perform the auditing of an educational organization having computerization for
admission process, examination process including result process. Prepare a
detail audit report covering the auditing objectives, audit charter, five logical
threats and corresponding controls, five major evidences and their relevancy
with objectives.
20
2. What is the importance of evidences ? Explain any two evidence collection
techniques in detail.

10

3. Explain the Performance measurement tools used by auditor for auditing an


ERP system implemented by an educational institute XYZ ?

10

4. Explain BCP process in detail.

10

5. Define and explain the role of auditor during SDLC phases.

10

6. Write short notes on (any four) :

(45=20)

a) IT Crimes
b) HR Policies
c) Steering Committee and their Role in Auditing
d) Audit Standards
e) Risk Assessment Process.
______________

B/I/13/415

[4380] 503

*4380503*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester V) Examination, 2013


IT-53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Question 1 and 7 are compulsory.


2) Attempt any four from remaining.
1. An autonomous management institute has started distance learning CCNA
programme for working network professional. Institute is interested in conducting
online admission process, virtual teaching and exam. As a IT consultant suggest
various models of e-learning and justify your suggestion.
15
2. Define BPO and explain the laws of BPO.

10

3. What is e-banking and explain various security techniques in it.

10

4. What are the different models of E-Commerce ? Explain in details.

10

5. What is knowledge management ? Explain different tools.

10

6. Explain supply chain management and E-logistics.

10

7. Write short note (any three) :

15

a) E-Governance Models
b) GPS
c) RFID
d) Embedded System
e) Content Management System.

B/I/13/680

[4380] 506

*4380506*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2013


I TE-2 : Elective : PROGRAMMING LANGUAGE PARADIGMS (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 8 are compulsory.


2) Solve any four from remaining.
1. Explain analysis of source program and synthesis of object program with suitable
block diagram.
15
2. Explain binding time classes and its significance in programming language.

10

3. Explain layers of virtual computer for web application.

10

4. Explain attributes of data control.

10

5. What are the different elements requiring storage management ?

10

6. What are the attributes of good programming language ?

10

7. Explain the Implicit and Explicit Sequence Control.

10

8. Write short note on (any three) :

15

a) Firmware computer
b) Features of Java
c) Compiler and Assembler
d) Scalar Data Type
e) Heap storage Management.

B/I/13/580

[4380] 509

*4380509*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


ITE5 Elective : DISTRIBUTED DBMS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Q. 7 is compulsory.
2) Solve any five from remaining i.e. Q. 1 to Q. 6.
3) Draw suitable diagram when needed.
4) Whenever necessary state assumption.
5) Give suitable example if required.

1. What is DDBMS ? Explain its advantages and disadvantages.

10

2. Explain Top-Down design process for designing DDBMS.

10

3. Explain distributed object management model with suitable example.

10

4. Explain concurrency control for centralized database.

10

5. What is query optimization ? Explain in detail join ordering in fragment queries.

10

6. Explain generic layering scheme for distributed query processing.

10

7. Write short notes (any 4) :

20

1) Mobile database system


2) Object clustering
3) Cold restart
4) Network Topologies
5) Distributed deadlocks
6) Horizontal Fragmentation.

B/I/13/245

[4380] 51

*438051*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


IT-51 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q. No. 1 is compulsory.


2) Solve any five from the remaining.
1. a) A train and air Reservation Agency is in process of implementing their newly
designed online reservation system. The system allows the user to login,
check the flight and train status, booking history, cancellation with due charges,
view the route, reservation availability, timings etc.
Design a test plan stating scope, strategies, risk, schedules, control procedures,
environment etc. and other desired details.

15

b) Design the test cases for all test Paths for a code to get the first 10 even
numbers.

2. Explain in detail with suitable example about different White Box Testing
techniques.
3. Explain following terms with suitable example :

10
(25=10)

a) Walkthrough
b) Statement coverage and Branch coverage
c) Software quality factors
d) Six sigma
e) System Testing.
P.T.O.

[4380] 51

-2-

*438051*

4. Define the need of testing. Explain V & V life cycle in detail.

10

5. What do you mean by testing strategies ? Explain each strategy in detail.

10

6. Explain in detail the necessary requirements and steps involved for testing an
object oriented application.

10

7. Write short notes on (any two) :

(25=10)

a) CAST
b) Clean room engineering
c) Black Box Testing.

B/I/13/100

[4380] 54

*438054*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


BM-51 : SOFTWARE PROJECT MANAGEMENT
(2005 Pattern)
Time : 3 Hours

Max. Marks :70


Note : 1) Q. 1 and Q. 8 are compulsory.
2) Solve any five from Q. 2 to Q. 7.

1. Draw network diagram for the following project activities and find the critical
path.

S. No.

Activities

Precedence

Days

E, F, G

10

2. What are the various Cost Estimation Techniques ? Explain COCOMO Model in
detail.
10
3. What is meant by Risk Management ?

10

4. Discuss the role of Quality Assurance during Software Development.

10

5. Discuss Managing Customer Expectation.

10
P.T.O.

*438054*

[4380] 54
6. Explain Software Configuration Management.

10

7. What are the characteristic of performance management in IT Team ?

10

8. Write a note on (any 2) :

10

a) User Acceptance Testing


b) Role of User in Software Project Management
c) MS-Project
d) Baseline.

______________

B/I/13/100

[4380] 61

*438061*
Seat
No.

M.C.A. (Semester V) (Management Faculty) Examination, 2013


Management Elective : ITE-7 : PARALLEL COMPUTING
(2005 Pattern)
Time : 3 Hours

Max. Marks :70

Instructions : 1) Question No. 1 is compulsory.


2) Solve any four questions from 2 to 6.
3) Assume suitable data wherever necessary.
4) Draw suitable diagram wherever needed.
5) Figures to the right indicate full marks.
1. Discuss the following (any two) :

(25=10)

a) Grid Computing
b) Parallel Virtual Machine
c) Gantt Chart
d) Communication Latency
2. a) State and explain different fundamental parameters required for the analysis
of parallel algorithm.

b) What are the primary attributes used to measure the performance of a parallel
computer system ?
3. a) Compare Vector Processing and Array Processing.

8
7

b) Explain pipeline processing and describe the architecture of pipeline


processing.

P.T.O.

*438061*

[4380] 61

4. a) Write a shared memory program for parallel systems, to add elements of an


array using two processors.

b) Differentiate between tightly coupled system and loosely coupled system.

5. Explain the concept of thread with basic methods in concurrent programming


languages for creating and terminating threads. Also give the advantages the
thread offers over other processes.

15

6. What is Flynns classification computer system ? List salient features of parallel


systems.

15

______________

B/I/13/100

[4380] 63

*438063*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


Management Elective : IT-9 : PROGRAMMING LANGUAGES AND
PARADIGMS
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 8 are compulsory.


2) Solve any four from the remaining.
1. Explain the major components involved in organization of conventional computer.

15

2. Explain the syntactic criteria of good programming language.

10

3. Distinguish between programmer and system control storage.

10

4. Explain compiler structure showing all its stages from original syntax to executable
code.
10
5. Explain Layers of virtual computer for web application.

10

6. Explain the implicit and explicit sequence control.

10

7. Explain sequencing with non-arithmetic expressions.

10

8. Write short note on (any three) :

(53=15)

a) LISP overview
b) Binding time classes
c) Scalar data types
d) Type conversion
e) PDA.

B/I/13/100

[4380] 1001

*43801001*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester I) Examination, 2013


IT 11 : 101 : COMPUTER ORGANIZATION
(New) (2012 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q. 1 and Q. 7 are compulsory.


2) Solve any four questions from the remaining.
3) Draw neat diagrams whenever necessary.
1. a) Draw and explain 32-bit (80486) architecture in detail.
b) Explain Compiler and Interpreter.
2. Convert the following :

10
5
(25=10)

a) (22.5)10 = (?)2
b) (3234)8 = (?)16
c) (AF2)16 = (?)10
d) (1010.01)2 = (?)10
e) (150.125)10 = (?)16.
3. What is Interrupt ? Explain the types of Interrupts.

10

4. Differentiate between RISC and CISC.

10

5. What is Register ? Draw and explain any one shift register in detail.

10

6. What is DMA ? Explain DMA transfer modes in detail.

10

7. Write short note on the following (any three) :

(35=15)

a) Performance of Processors
b) 1s and 2s complement
c) Decoder
d) Features of 64-bit architecture.

B/I/13/1,595

[4380] 1003

*43801003*
Seat
No.

M.C.A. (Semester I) (Management Faculty) Examination, 2013


(2012 Pattern)
IT-13 : 103 : SOFTWARE ENGINEERING
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q. 1 and Q. 7 are compulsory.


2) Attempt any three from Q.2 to Q.6.
3) Draw neat diagrams.
1. New B Bazar need to be designed for a departmental store dealing in consumer
items. Members enjoy credit facility and can purchase items as and when he or
she needs them. Store has several counters and one can almost get all kinds of
consumer items after visiting these counters. He/She becomes members by
paying initial membership amount and get the credit cards. He/She has to pay
his outstanding on quarterly basis system generate alert to these members.
Defaulters are not allowed to purchase items until the default amount is cleared.
Consider the different aspects of the above problem and model them appropriately.
10
a) Draw context and 1st level DFD.
b) Prepare SRS (scope, objective, function/non functional requirements, system
specification) for the above system.
10
2. Design a data entry screen with validation for inquires at Rohit advertisement for
their Hoarding display boards which are available on various location in the city. 10
3. Describe the phases of SDLC in detail.

10

4. Explain CASE tools with its components.

10

5. Explain the features of a modern GUI form with a suitable example.

10

6. Explain the role of documentation in maintenance and types of documentation.

10

7. Write notes on (Attempt any four) :


a) Data Dictionary
b) Reverse engineering
c) Code Design
d) JAD
e) Functional decompozition diagram
f) Agile process
g) Structured English.

20

B/I/13/1680

[4380] 1004

*43801004*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester I) Examination, 2013


BM-11 104 : PRINCIPLES AND PRACTICES OF MANAGEMENT AND
ORGANIZATIONAL BEHAVIOR
(2012 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question No. 1 is compulsory.


ii) Attempt any 3 from the remaining.
iii) Figures to the right indicate full marks.
1. a) Explain the concept of management and discuss managerial functions in
detail.

15

b) Critically evaluate the statement, Innovation distinguishes between a leader


and a follower.
10
2. Explain how motivation helps to achieve success in an IT industry with the help
of Maslows need hierarchy theory.
15
3. Explain OB and state the important elements of the behavioural approach.

15

4. Define organisation and discuss different organizational structures.

15

5. Explain the contribution of Henry Fayol in the evolution of management thoughts.

15

6. Write short notes (any three) :

15

a) Theory X Vs Theory Y
b) Johari window
c) Team Building
d) Decision making tools
e) Managerial skills.

B/I/13/1,365

*43801005*

[4380] 1005

Seat
No.

M.C.A. (Management Faculty) (Semester I) Examination, 2013


MT11 : 105 DISCRETE MATHEMATICS
(New) (2012 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question No. 1 is compulsory.


ii) Solve any two questions from question Nos. 2, 3 and 4.
iii) Use of scientific calculator and Statistical Tables are
allowed.
iv) Figures to the right indicate full marks.
1. a) Show the following equivalence :

((P Q ) (R Q ) (P R) Q

b) Obtain PCNF of the following :

(P Q ) ( P R ) (Q R )

c) Prove following binomial identity by combinatorial arguments :

2n
n
= 2 + n2
n
2

d) Find number of way of seating 5 boys and 5 girls around a circular table such
that boys and girls sit on alternate seats.

e) Define abelian group.

f) Define equivalence relation. Give example.

P.T.O.

-2-

*43801005*

2. a) Write the following in symbolic form :

[4380] 1005

If Tina marries Rahul, she will be in Pune. If Tina Marries Ram, she will be in
Mumbai. If she is either in Pune or in Mumbai, she will be definitely settled in
life. She is not settled in life. Thus she did not marry Rahul or Ram.
b) Find the coefficient of the term x6y6z5 from the expansion of
(2x2 3y 3 + 4z)10.

c) Prove that the conclusion S is valid from the statements :

P, (P Q) R, S R, Q

d) Define : Universe of Discourse, Universal Quantifier, Existential Quantifier.


3. a) Find the transitive closure for the relation

5
5

R = {< a, a >, < a, b >, < b, a >, < b, d >, < c, c >, < c, d >, < d, b > }

defined over the set A = {a, b, c, d}.


b) For the given relation matrix, find the relation set and draw its digraph.
1
0

MR = 0

1
0

1
1
0
1
0

0
0
1
0
1

0
1
0
0
1

0
0
0

0
1

c) Let R = {<x, x>, <y, x>, <z, z>} and S = {<x, x>, <x, y>, <y, z>, <z, y>}.
Find R S, (R R) S and S2.

d) Find whether the given function f(x) = x(x3 5) for all positive integers of x is
bijective or not.

4. a) Find the number of non negative integer solutions for x1 + x2 + x3 = 31 where


x1 4, x 2 > 7 and x3 10 .

b) Find the code words generated by the parity check matrix

7
7

1 1 0 1 1 0 0

H = 1 1 1 0 0 1 0
1 0 1 1 0 0 1

c) State and prove derangement formula.

B/I/13/1,775

[4380] 101

*4380101*
Seat
No.

M.C.A. (Management Faculty) (Semester I) Examination, 2013


IT-11 : 101 : COMPUTER ORGANIZATION AND ARCHITECTURE
(New) (2008 Pattern)
Time : 3 Hours
Note :1)
2)
3)
4)

Max. Marks : 70
Q. No. 1 and 7 are compulsory.
Solve any four questions from the remaining.
Draw the neat diagrams wherever necessary.
Figures to the right indicates full marks.

1. a) Draw and explain 16-bit architecture in detail.

10

b) Define Software. Explain system Softwares and Application Softwares.

2. Explain system bus and its characteristics.


3. Convert the following :

10
(25=10)

a) (11011.001)2 = (?)10
b) (527.12)8 = (?)16
c) (FA2B.16)16 = (?)2
d) (175.3125)10 = (?)8
e) (FA2.B4)16 = (?)10
4. What is counter ? Explain any one counter in detail.

10

5. What is DMA ? Explain DMA technique using different DMA transfer modes.

10

6. What is pipelining ? Explain instruction pipelining in detail.

10

7. Write short note on following (any three) :

(53=15)

a) Memory Hierarchy.
b) Parallel Processing.
c) Multiplexer and Demultiplexer.
d) Compilers, Interpreters and Assemblers.

B/I/13/375

*4380102*

[4380] 102

Seat
No.

M.C.A. (Semester I) (Management Faculty) Examination, 2013


IT 12 : 102 : C PROGRAMMING
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 is compulsory.


2) Solve any six questions from Q.2 to Q.8.
3) Assume suitable data wherever necessary.
1. Find and explain the output of following (any four) :

10

a) main ( )
{
int i = 10 ;
i = ! i >14 ;
printf (i = %d, i) ;
}
b) # include <stdio.h>
int main ( )
{
void fun (char ) ;
char a[100];
a[0] = A; a [1] = B;
a[2] = C; a [3] = D;
fun (&a[0]);
return 0;
}
void fun(char a)
{
a++ ;
printf (%C, a);
a++;
printf (%C, a);
}
P.T.O.

[4380] 102

-2-

c) #include <stdio.h>
# define SWAP (a, b) int t; t = a; a = b; b = t;
int main ( )
{
int a = 10, b = 12;
SWAP (a, b);
printf (a=%d b = %d \n, a, b);
return 0 ;
}
d) # include <stdio.h>
# include <string.h>
void main ( )
{
struct {
int m ;
float f;
char mess [50];
} m;
m.num = 1;
m.f = 3.14f;
strcpy (m.mess, Everything is possible);
printf (%d %d %d \n, &m.num, &m.f, &m.mess);
printf (%d %f %s\n, m.num, m.f, m.mess);
}
e) void main ( )
{
int x;
x = 3 4% 6 /5 ;
printf (x = %d\n, x);
}

*4380102*

*4380102*

-3-

[4380] 102

2. a) Write a C program to find the reverse of a given string (use recursive function).

b) Write a C program to print following pattern for n number of lines. Read n


from user, e.g. If n = 4.

3. a) Write a C program to find sum of digits of a given number. Read number by


using command line argument.
b) Write a C program to find all prime numbers within range of 5000 15000.

5
5

4. Write a C program to store information of books for a Book store like title,
author, publisher and price. Print the details of books having price more than
Rs. 450/- (use array of structure).
10
5. Write a C program to read a file and find the frequency of a given word in the file.

10

6. Write a C program to draw following objects. Fill bat with yellow color and ball
with red.

10

7. Write short note on followings :

10

a) Preprocessor directives
b) Advantages/disadvantages of union over structure.
8. a) Write a C program to find whether a given number is odd/even using bitwise
operator.

b) Write a function to compare two strings by using pointers (Dont use library
functions).

B/I/13/1205

[4380] 103

*4380103*
Seat
No.

M.C.A. (Semester I) (Management Faculty) Examination, 2013


BM11 : 103 PRINCIPLES AND PRACTICES OF MANAGEMENT AND
ORGANIZATIONAL BEHAVIOR
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 is compulsory.


2) Attempt any 3 from the remaining.
3) Figures to the right indicate full marks.
1. A) Classify different structures of organisation with examples. What type of
structure suits companies like Tata motors ?

15

B) Planning is the blood line of any organization. Explain in detail with reference
to the importance, steps and limitations of planning.
10
2. Transactional analysis is an excellent tool of conflict management discuss with
reference to the ego states.
15
3. How far effective decision making plays a vital role in the growth of the organization ?
What are different environments of decision making ?
15
4. Do you agree that monitory benefits is the most effective means of motivating
employees ? Explain with reference to the various aspects of Mc Gregors theory
of motivation.
15
5. Define Conflict. What is the difference between functional and dysfunctional conflict ?
Discuss how competition is different from conflict.
15
6. Write short notes (any 3) :
1) Line Vs Staff
2) Centralisation Vs Decentralisation
3) Qualities of leader

15

4) Skills of manager
5) Team building.

B/I/13/380

[4380] 104

*4380104*
Seat
No.

M.C.A. (Management Faculty) (Semester I) Examination, 2013


IT 13 : 104 : OPERATING SYSTEMS CONCEPT (2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question Nos. 1 and 7 are compulsory.


2) From the remaining questions solve any 4.
1. What is Deadlock ? Explain how deadlock can be detected and recovered with
the help of examples.
10
2. What is distributed operating system and how it different from the centralized
system.

10

3. Explain any two disk scheduling algorithms using example.

10

4. Consider the following snapshot of the system.

10

Process

Burst Time

Arrival Time

Priority

P1

3 (Highest)

P2

P3

1 (Lowest)

Compute average Turnaround Time and Average Waiting Time for Preemptive
Priority Scheduling Algorithm.
10
5. Explain the concept of paging with example and use of TLB.

10

6. Explain the various levels of RAID structures.

10

7. Write short notes on (any four) :

20

1) File Allocation Table FAT


2) Demand Paging
3) System Calls
4) Process States
5) Critical Section Problem.

B/I/13/520

*43802001*

[4380] 2001

Seat
No.

M.C.A. (Management Faculty) (Semester II) Examination, 2013


IT 21 : 201 : OBJECT ORIENTED PROGRAMMING USING C++
(2012 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No.1 is compulsory.


2) Solve any six from question no. 2 to 8.
3) Figures to the right indicate full marks.
1. Explain the output of following program :
a) namespace xyz
{
int x = 10 ;
}
void main ( )
{
int y = 200 ;
int x = 100 ;
cout <<endl << x << x;
using namespace xyz;
cout << endl<< x << x;
cout <<endl<< y= << y;
}

10

b) void main ( )
{
int a, b = &a;
int c = &b;
a=2;
c = 4;
b = (int ) c;
cout <<A= <<a<<endl;
cout <<B= <<b;
}
P.T.O.

[4380] 2001

-2-

*43802001*

c) void main ( )
{
cout << set w (10) << setfill (#);
cout.setf (ios :: internal, ios :: adjustfield);
cout <<setiosflags (ios :: showpoint);
cout << setprecision(5);
cout <<11.432 <<endl;
cout << setiosflags (ios :: showpos);
cout << 15.4;
}
d) void main ( )
{
b001 b1, b2;
b2 = true;
int a = 10, b = 20;
b1=a=b;
b001 b3 = b1 || b2;
if (b3)
cout << good;
else
cout << very good;
}
2. A) Explain static member function and static data member.
B) Explain with example Dynamic constructor.

5
5

3. A) Write a program to overload + operator to concatenate two strings.

B) Explain with example, conversion from class type to built in type.

*43802001*

-3-

[4380] 2001

4. A) What is user defined manipulator ? Write a single user defined manipulator to


provide following output specifications.
1) Column width 10
2) Right justification
3) Trailing zeros
4) Fill unused spaces with .
B) Explain virtual function with suitable example.

5
5

5. Write a program that accepts the filename using command line arguments, and
counts number of characters, number of words and number of lines.
10
6. Write a program to pass parameters to the base class constructor in multilevel
inheritance.
7. A) Write a function template swap ( ) to swap two elements.
B) What is exception ? How certain exceptions are restricted in C++ ?
8. Write short notes on (any two) :

10
5
5
10

A) Standard Template Library (STL)


B) Namespaces.
C) Run Time Type Identification (RTTI).

B/I/13/5275

[4380] 2002

*43802002*
Seat
No.

M.C.A. (Semester II) (Management Faculty) Examination, 2013


IT 22 : 202 : DATABASE MANAGEMENT SYSTEM
(2012 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. No. 1 is compulsory.


2) Solve any five questions from remaining.
3) State assumptions wherever necessary.
1. An Educational institute wants to computerize its student management system.
The details are as follows :
1) Institute has departments.
2) Department conducts various full time courses.
3) Department has various teachers teaching subjects of various courses.
4) Course has subjects with unique code.
5) Student appear for an exam for which he gets result.
For the above case, draw the E-R diagram and normalized (3NF) file layout.

20

2. Explain E.F. Codds rules.

10

3. Explain the concept of deadlock. Explain how it is detected and prevented.

10

4. Explain log-based recovery techniques in detail.

10

5. Explain the architecture of DBMS.

10

6. Explain RAID in detail.

10

7. Write short notes on (any two) :

10

1) Database security
2) Non-SQI database
3) Types of keys in database
4) Generalization and specialization.

B/I/13/5,275

[4380] 2003

*43802003*
Seat
No.

M.C.A. (Management Faculty) (Semester II) Examination, 2013


IT 23 : 203 : OPERATING SYSTEM CONCEPTS (2012 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Question 1 is compulsory.
Solve any 5 from remaining.
Black figures to the right indicate full marks.
Draw neat diagrams wherever necessary.

1. a) Consider the following snapshot of a system.

Process

Allocation

Maximum

10

Available

P0

P1

P2

P3

Check
1) The system is in safe state
2) If a request of resources (0,4, 2) arise from Process P3, can the request be
granted immediately ?
b) Explain the various scheduling criteria.

c) Compare any two preemptive scheduling algorithms.

2. a) Suppose the R/W head is at track 67, moving towards track number 512.
The disk queue contains request for 77, 17, 167, 189, 90, 100, 75, 77, 200,
430, 212, 1999, and 500. Find the total number of head movements to satisfy
the request using
a) SSTF
b) C-SCAN

5
P.T.O.

*43802003*

[4380] 2003

b) Assume a page size of 4 words. Logical memory and page table information
is given below :

Page No.

Offset

Content

Page
Number

Offset

Calculate the physical address for g and k.


3. a) Explain NOS Architecture in detail.
b) Explain thrashing.

5
7
3

4. a) Define page fault.


b) Calculate the number of page fault for the following reference string for 3
frames for LRU and Optimal Page replacement algorithm.
7, 0, 1, 2, 0, 3, 0, 4, 2, 3, 0, 3, 2, 1, 2, 0, 1, 7, 0, 1

5. a) Explain free space management in brief.


b) Explain RAID structure.

3
7

6. Explain various process operations handled by OS.

10

7. Write short notes on (any two) :


a) Features of Android
b) Monitor
c) Virtual Machine

10

B/I/13/5,275

[4380] 2004

*43802004*
Seat
No.

M.C.A. (Semester II) (Management Faculty) Examination, 2013


BM 21 : 204 MANAGEMENT INFORMATION SYSTEM AND BUSINESS
INTELLIGENCE
(New) (2012 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q.7 is compulsory.


2) Attempt any 5 questions from Q.1 to Q.6.
1. Define the term B.I. Explain its needs. Draw and explain B.I. Architecture.

10

2. Define D.S.S. Explain various components of D.S.S. in detail.

10

3. Define Information. Explain the factors in deciding quality of Information.

10

4. Define M.I.S. Explain the MIS structure based on organizational functions.

10

5. Explain the Herbert-Simon model of decision making in detail. What are its
limitations ?

10

6. Explain the concept of Data Warehousing. Discuss the needs of Data mining in
modern business.
10
7. Write short note on following (Any 4) :

(45=20)

a) Expert system
b) Simulation
c) Law of requisite variety
d) Data Marts
e) EIS Vs DSS
f) OLTP Vs OLAP.

B/I/13/5,275

[4380] 202

*4380202*
Seat
No.

M.C.A. (Semester II) (Management Faculty) Examination, 2013


IT-22 : 202 : DATABASE MANAGEMENT SYSTEM
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Q. No. 1 is compulsory.
2) Solve any five questions from remaining.
3) State assumptions whenever necessary.

1. a) Normalize the following upto 3NF.

12

Application Serial No.


First Name
Surname
Middle Name
Address
City
Pin Code
Phone No.
E-mail
Course Name
Application date
Academic year
Form Fee Receipt No, form fee receipt date,
Form fee amount
Payment mode
DD/Cheque number.
b) Explain various characteristics of DBMS.

8
P.T.O.

[4380] 202

-2-

2. a) Explain various database users.


b) Explain structure of relational database.

*4380202*
6
4

3. What is deadlock ? How deadlock is detected and prevented ?

10

4. Explain log-based recovery techniques in detail.

10

5. Explain object oriented DBMS concept in detail.

10

6. Explain different relational notation used in relational algebra.

10

7. Write short notes on (any two) :

10

1) RAID
2) Encryption
3) Data independence
4) Types of locks.

B/I/13/790

[4380] 203

*4380203*
Seat
No.

M.C.A. (Semester II) (Management Faculty) Examination, 2013


IT 23 : 203 : SOFTWARE ENGINEERING
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

N.B. : 1) Q. No. 1 and Q. No. 7 are compulsory.


2) Attempt any three from Q. No. 2 to Q. no.6.
1. Sai College of Science offers courses of various branches such as Computer
Science, Electronics, Physics, etc. The College receives sufficiently large number
of applications for admission to F.Y. , S.Y. and T.Y. classes. The college has
decided to computerize its admission programme.
The standard admission procedure requires to follow the norms set by concerned
government agencies, University and the college administration. The procedure
also involves disbursing admission forms at a cost, collecting duly completed
forms, preparing merit lists and admitting the students as per norms, notifying
student, collecting fees, cancellation of admission, preparing and submitting
reports to the concerned authorities.
You are required to study the system and
i) Draw context level and first level DFD.
10
ii) Prepare the SRS for the same.
10
2. Explain the various Fact-Finding techniques required for collection of information.

10

3. Discuss the role of CASE Tools in software development life cycle along with
its advantages.

10

4. Design a GUI form for Railway Reservation System.

10

5. Compare SDLC vs. Prototyping.

10

6. Explain decision tree, decision table with proper examples.

10

7. Write a short note on (any four) :


a) Software Maintenance
b) Types of Documentation
c) Role of System Analyst
d) Agile Process
e) Structured Charts.

20

B/I/13/855

[4380] 204

*4380204*
Seat
No.

M.C.A. (Semester II) (Management Faculty) Examination, 2013


BM 21: 204 : SOFT SKILLS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 is compulsory.


2) Attempt any three from remaining questions.
1. a) Define communication. Explain the process of communication with a neat
block diagram.
b) Distinguish between formal and informal communication.

15
10

2. What is the importance of listening and what are the barriers of effective
listening ?

15

3. What is self-esteem ? Differentiate between low and high self-esteem.

15

4. Your college is arranging a Blood Donation Camp. Prepare a Notice to inform


prospective donors and volunteers. Also, request Pune Blood Bank for their
guidance and infrastructure. Assume appropriate data.
15
5. Write short notes on any three of the following :
a) Telephone etiquette
b) Meditation process
c) Time management
d) Work culture.

B/I/13/540

[4380] 205

*4380205*
Seat
No.

M.C.A. (Management Faculty) (Semester II) Examination, 2013


MT-21: 205 : PROBABILITY AND COMBINATORICS
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions :i) Question No. 1 and Question No. 4 are compulsory.


ii) Solve any one from Question Nos. 2 and 3. And solve any one
from Question Nos. 5 and 6.
iii) Use of statistical table and non programmable calculator is
allowed.
iv) Figures to the right indicate full marks.
1. a) State and prove generalized Inclusion and Exclusion principle.

b) A committee of 7, consisting of 2 republicans, 2 democrats and 3 independents,


is to be chosen from a group of 5 republicans, 6 democrats and 4 independents.
How many committees are possible ?
c) How many permutations can be formed from the word SOCIOLOGICAL ?
d) What is the coefficient of x5y8 in the expansion of (x + y)13 ?
2. a) Solve the following :

5
5
5
8

1) Pascals Identity
2) [m+n n] = [m 0] [ n 0] + [m 1] [n 1]+ ... + [ m n] [ n n]
b) How many non-negative integer solutions are there to the equation ?

X1 + X2 + X3 = 15, if X1, X2, X3, > 0


3. a) Determine the discrete numeric function of generating function,
A (z) = (1 + z)n + (1 z)n
b) Solve recurrence relation

7
7

an+2 + 2an+1 + an = 9 2n ; for n = 0 given a0 = 2 and a1 = 4

P.T.O.

*4380205*

[4380] 205

4. a) Define following terms with examples :


i) Exhaustive Events
ii) Mutually Exclusive Events
b) Let the joint pmf of two discrete random variables (X, Y) is as follows :
2

0.1

0.2

0.1

0.2

0.1

0.1

0.1

0.1

X
Y

i) Find marginal probabilities.


ii) Find conditional probability distribution of Y given X = 1.
c) In a normal distribution, 31% of the items are under 45 and 8% are over 64.
Find the mean and variance of the distribution.
d) Let X be a continuous random variable with pdf.

5
5

0 x 1
ax,

1 x 2
a,
f(x) =
ax + 3a, 2 x 3;

0,
elsewhere
Determine the constant a

5. a) Define binomial distribution. Find mean and variance of binomial distribution.


8
b) The diameter of an electric cable, say x, is assumed to be a continuous
random variable with pdf f(x) = 6x (1 x), 0 < = x < =1
Check that f (x) is pdf and find p (x<0.5)
6. a) Define Exponential distribution and find MFG of distribution.
b) Find mean and variance of Gamma distribution.

7
8
7

B/I/13/1340

[4380] 301

*4380301*
Seat
No.

M.C.A. (Management Faculty) (Semester III) Examination, 2013


IT 31-301 : WEB TECHNOLOGIES
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 8 are compulsory.


2) Solve any 5 from Q. 2 to Q. 7.
3) Draw neat diagram.
1. Explain DOM and SAX Parser with examples.

10

2. Design University on-line examination enquiry form. Validate any five fields using
JavaScript (Assume suitable fields).
10
3. Explain CSS and its different types with examples.

10

4. Explain request and response objects with examples.

10

5. Write XML code to display cricket player information and convert XML to HTML
format.
10
6. Explain following tags :
i) < Anchor>
ii) <IFrame>
iii) <Span>
iv) <Frameset>

10

7. Write ASP program to fill on-line form for MH-CET-MCA course with suitable
fields and insert into database.

10

8. Write short notes (any two) :

10

i) String and math object in VBScript


ii) Three tier architecture
iii) Date and Array Object in JavaScript.

B/I/13/1,845

*4380302*

[4380] 302

Seat
No.

M.C.A. (Semester III) (Management Faculty) Examination, 2013


IT 32 : 302 : DATA COMMUNICATION AND COMPUTER NETWORKS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Q.1 and Q.8 are compulsory.


ii) Attempt any four from remaining.
1. a) Justify with true or false (not more than 60 words).

10

i) HTTP uses a TCP connection to transfer files.


ii) Router operates at Data link layer.
iii) ICMP is a transport layer protocol.
iv) Shared medium environment are collision domains.
v) A cable break in bus topology network does not affect network
communications.
b) What are the purpose of ARP, RARP, ICMP and IGMP of IP layer ? Explain.

10

2. Why layered approach of networking model developed ? What are the advantages
of layered model ? Explain the process of Data Encapsulation in layered model.
10
3. a) Describe the meaning and purpose of DNS. Explain name resolution and
inverse resolution.
b) Explain DHCP address discovery process, address renewed process and
address release process.

5
5

4. What are the reasons the network designers create subnetting ? Explain reason
for using supernetting. Determine the network, subnetwork and host addresses
if IP address is 42.56.29.13 and subnet mask is 255.255.240.0.
10
5. Define topology. How does the number of attached computer affect a bus topology
network ? Explain the operation of ring topology network.
10
P.T.O.

[4380] 302

-2-

*4380302*

6. Define SMTP. Explain with example the function of SMTP and POP.

10

7. Define and explain public key and symmetric key signatures. Explain different
types of network threats.

10

8. Write short notes (any 2) :

10

a) Proxy server
b) Vsat
c) Design issues of wireless Lan requirement
d) FTP.

B/I/13/3,705

[4380] 303

*4380303*
Seat
No.

M.C.A. (Management Faculty) (Semester III) Examination, 2013


IT 33-303 : OBJECT ORIENTED PROGRAMMING USING C++
(2008 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Q. 1 is compulsory.
Solve any six from Q. 2 to Q. 8.
Figures to right indicate full marks.
Make suitable assumption wherever necessary.

1. Explain output of the following program


a) # include <iostream.h>
class some
{
public:
~ some( )
{
cont <<somes destructor<<end l;
}
};
void main( )
{
some s;
s.~some( );
}
b) # include <iostream.h>
class base
{
int arr[10];
};
class b1 : public base { };
class b2 : public base { };
class derived : public b1, public b2 { };
int main( )
{

(25=10)

P.T.O.

[4380] 303

-2-

cout<<sizeof(derived);
getchar( );
return 0;
}
c) # include <iostream.h>
class base
{
public :
virtual void foo( )
{
cout <<base class function is called\n;
}
~base( )
{
cout <<base class destructor is called\n;
}
};
class derived: public base
{
public:
void foo( )
{
cout<<derived class function is called\n;
}
~derived( )
{
cout<<\n derived class destructor is called\n;
}
};
void main( )
{
base bp = new derived;
bp foo( );
delete bp;
}
d) #include<iostream.h>
class nameless
{
public:
nameless( )

*4380303*

*4380303*

-3-

[4380] 303

{
cout<<constructor called\n;
}
~nameless( )
{
cout<<destructor called\n;
}
};
void main( )
{
nameless( );
nameless obji;
}
e) #include<iostream.h>
void execute (int 4x, int y = 200)
{
int temp = x+y;
x+=temp;
int(y! = 200)
cout <<temp<<x<<y<<endl;
}
void main( )
{
int a = 50, b = 20;
execute(b);
cout<<a<<b<<endl;
execute(a, b);
cout<<a<<b<<endl;
}
2. Answer any five :
a) What is need of copy constructor ?
b) What is difference between early and late binding ?
c) What is need of default arguments ? How are they defined ?
d) What is this pointer ?

(25=10)

[4380] 303

-4-

*4380303*

e) Can we use same function name for a member function and non member
function of the class in the same program file ? If yes, how are they
distinguished ? If no, give reasons.
f) What is downcasting ?
3. Design classes Rupee and Dollar such that they support the following statements

10

Rupee r1, r2;


Dollar d1, d2;
d1 = r2; // converts Rupee to Dollar
r2 = d2; // converts Dollar to Rupee
Note : 1 Dollar = 50 Rs.
4. Write a program for generic Queue class with two member functions, insert and
delete. Use the array to implement the queue.
10
5. a) Explain what is virtual and pure virtual function ?

b) What are virtual base classes ? Explain need of virtual base class in building
class hierarchy.

6. a) Explain three different types of containers.

b) What is RTTI ? Suggest some cases where we need to use RTTI ?

7. a) Write a program to read text file and count number of characters in it.

b) Explain the roles of seekg( ), seekp( ), tellg( ) and tellp( ) functions in the
process of random access in a binary file.
8. Write short notes (any two) :

(25=10)

a) Dynamic memory management in C++


b) Rethrow( ) in Exception handling
c) Explicit constructor ?

B/I/13/2,900

[4380] 304

*4380304*
Seat
No.

M.C.A. (Management Faculty) (Semester III) Examination, 2013


IT-34 : 304 : ADVANCED DATABASE MANAGEMENT SYSTEMS
(New) (2008 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Question No. 7 is compulsory.
Solve any five questions from 1 to 6.
Figures at the right indicate marks.
Assume any suitable database example as a case study.

1. a) What do you mean by Inter-Query and Intra-query parallelism ? Explain with


example.
b) Explain object oriented database architecture.
2. a) What is OLAP ? What are 3 types of OLAP servers ?
b) Outlier analysis in Data mining.
3. a) Compare with example homogeneous and heterogeneous databases.
b) Write note on Data preprocessing.
4. a) Explain various concurrency control approaches in DDBMS.
b) Explain deadlock handling in DDBMS.

6
4
6
4
6
4
6
4

5. a) Explain distributed catalog manager.

b) Explain Text mining with example.

6. a) Explain DTD with example.

b) What are various XML parsers ?


7. Write short note on (any four) :

4
(54=20)

a) Web search engines


b) Design of parallel systems
c) Machine learning
d) Client server architecture
e) Mobile databases.

B/I/13/1,860

[4380] 401

*4380401*
Seat
No.

M.C.A. (Semester IV) (Management Faculty) Examination, 2013


IT 41 401 : JAVA PROGRAMMING
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question 1 and 8 compulsory.


ii) Solve any five from question 2 to 7.
1. Answer the following questions :

10

a) Differentiate between Abstract class and Interface.


b) Explain anonymous class.
c) Explain any four methods of StringBuffer class.
d) Explain File class.
e) What is Inet Address ?
2. Write a client-server socket program. Client program will accept file name from
user and sends it to server. If file does not exists, server will send File does
not exists else server will read file contents, will replace vowels with + and
sends it to client.

10

3. Write GUI based JDBC application for Hostel admission [Assume suitable
table structure].

10

4. Write RMI application to display amount in words. Accept amount in digits from
client and display word value on server. [For Ex. Amount 1230, output should be
One Thousand Two Hundred Thirty.]

10

5. Write a Java application to check/compare contents of two files, and display


appropriate message.

10
P.T.O.

*4380401*

[4380] 401

6. What is exception handling in Java ? Describe checked and unchecked


exceptions, with suitable examples.

10

7. Explain MouseListener and MouseMotionListener with suitable example.

10

8. Write short-notes on any two :

10

a) Grid Layout
b) Jar Files
c) Stub and Skeleton.

B/I/13/5,520

[4380] 401

*4380401*
Seat
No.

M.C.A. (Semester IV) (Management Faculty) Examination, 2013


IT 41 401 : JAVA PROGRAMMING
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question 1 and 8 compulsory.


ii) Solve any five from question 2 to 7.
1. Answer the following questions :

10

a) Differentiate between Abstract class and Interface.


b) Explain anonymous class.
c) Explain any four methods of StringBuffer class.
d) Explain File class.
e) What is Inet Address ?
2. Write a client-server socket program. Client program will accept file name from
user and sends it to server. If file does not exists, server will send File does
not exists else server will read file contents, will replace vowels with + and
sends it to client.

10

3. Write GUI based JDBC application for Hostel admission [Assume suitable
table structure].

10

4. Write RMI application to display amount in words. Accept amount in digits from
client and display word value on server. [For Ex. Amount 1230, output should be
One Thousand Two Hundred Thirty.]

10

5. Write a Java application to check/compare contents of two files, and display


appropriate message.

10
P.T.O.

*4380401*

[4380] 401

6. What is exception handling in Java ? Describe checked and unchecked


exceptions, with suitable examples.

10

7. Explain MouseListener and MouseMotionListener with suitable example.

10

8. Write short-notes on any two :

10

a) Grid Layout
b) Jar Files
c) Stub and Skeleton.

B/I/13/5,520

[4380] 402

*4380402*
Seat
No.

M.C.A. (Semester IV) (Mgmt Faculty) Examination, 2013


IT42 : 402 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q.1 and Q.7 are compulsory.


2) Solve any four from remaining.
1. a) Write a test plan with scope of testing, risk and contingencies, strategy,
schedule, deliverables, suspension and resumption criteria for web based job
portal.
[10]
b) Explain usability testing in detail.

[5]

2. Compare : a) Alpha Vs Beta testing


b) Static Vs Dynamic testing

[10]

3. What do you mean by Black Box testing ? How you can perform it using Boundary
Value Analysis and equivalence partitioning ?
[10]
4. Explain regression testing and installation testing with suitable example.

[10]

5. Explain V and V model with suitable diagram.

[10]

6. Write test cases for Mobile Tracking System.

[10]

7. Write short notes on (any three) :

[53=15]

a) Formal Technical Review


b) Quality Factors
c) CAST
d) Code Coverage.

B/I/13/5,310

*4380403*

[4380] 403

Seat
No.

M.C.A. (Semester IV) (Mgt. Faculty) Examination, 2013


IT-43 : 403 : OBJECT ORIENTED ANALYSIS AND DESIGN (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q.1 is compulsory.


2) Solve any five from the remaining.
3) Mention assumptions made for solving the case studies.
1. The management of Suvidha Hospital has decided to computerize their operations.
There are resident, full time and consulting doctors, with various specializationconsulting doctors visit hospital at a fixed time every day or some days of the
week, which varies from doctor to doctor. The visiting charges also vary from
doctor to doctor.
Patients are admitted to hospital and their main course of admission is recorded.
For accident cases, additional information such as Police buckle no., name of
the police and accident description is recorded. A patient is admitted into a
room, which has certain category and having fixed charge per day.
Draw the following diagrams for above case :
a) Use Case Diagram

10

b) Class Diagram

10

2. Explain with the help of example OMT methodology.

10

3. a) Draw a sequence diagram for sending friend request to your friend on facebook.

b) Draw a collaboration diagram for accepting friends request on facebook.

4. What is Three-layered architecture ? Explain in detail.

10
P.T.O.

*4380403*

[4380] 403
5. Draw an activity diagram for the following :

10

Subject Teacher uploads the assignment on the internet, sends SMS to the
respective student on students registered mobile number. Students solve the
assignment and upload the solution for the teacher for checking. A list of defaulters
who have not submitted the assignment gets generated and is sent to the
respective subject teacher.
6. Draw the state transition diagram for the following scenario :
Shri Ganesh is a private company dealing with sales and purchases of houses,
plots and flats. People intending to sale their properties have to register online
and fill up property information form. Show and deposit necessary documents,
description of the property, expected price. The company consultants display
this information on the website. People interested in buying such property fill up
the offer form, which contains purchase price. After the other formalities if the
deal is accepted, the property is marked sold on the site.
10
7. Write a short note on (any 2) :

10

1) Categoreis of pattern
2) Deployment and component diagram
3) Guideline for test plan
4) Reusability

B/I/13/5060

[4380] 405

*4380405*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2013


BM-E1 : Elective : 411 : MIS FRAMEWORK AND IMPLEMENTATION
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question nos. 1 and 7 are compulsory.


2) Attempt any four questions from remaining.
1. Define MIS with its feature and limitations.

10

2. Differentiate between DSS and EIS with example.

10

3. Discuss the impact of IT infrastructure on the socio-economic environment of


the organization.

10

4. Explain the critical success factors for accounting information system.

10

5. How to maintain customer relationship using information technology ? Use


appropriate example to explain.

10

6. How the formats of information differs for different managerial levels ?

10

7. Write short note on any four :

20

a) GDSS
b) Objective of security policy
c) Competitive advantage
d) Attributes of good information
e) Threats to IT infrastructure
f) Cost benefit analysis of information systems.

B/I/13/270

[4380] 406

*4380406*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2013


BM E2 412: (Elective) FOUNDATION OF DECISION PROCESSES
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i)
ii)
iii)
iv)

Question No.1 is compulsory.


Solve any two questions from remaining.
Figures to the right indicate full marks.
Use of electronic calculator is allowed.

1. a) At a bus terminal every bus should leave with driver. At the terminus they
keep 2 drivers as reserved if anyone on scheduled duty is sick and could not
come. Following is the probability distribution that driver become sick.
10
No. of Sick Drivers :
Probability :

0.30

0.20

0.15

0.10

0.13

0.12

Simulate for 10 days and find utilization of reserved drivers. Also find how
many days and how many buses cannot run because of non-availability of
drivers.
Use the following random numbers : 30, 54, 34, 72, 20, 02, 76, 74, 48, 22.
b) Explain the elementary queuing system in detail.

10

c) Solve the following game :

10

Player Y

Player X

Y1

Y2

Y3

X1

X2

X3

1
P.T.O.

[4380] 406

*4380406*

-2-

2. a) A student tries to be punctual for the classes. If he is late on a day he is 80%


sure to be on time the next day. If he is on time then there is 20% chance that
he will be late on the next day. How often in the long run is he expected to
be late for the class ?
10
b) Customers arrive at a one window ticket counter according to a Poisson
distribution with a mean of 10 minute and service time per customer is
exponential with a mean of 6 minutes. The space in front of ticket counter can
accommodate only three customers including the serviced one. Other
customers have to wait outside this space. Calculate :
1) Probability that customer can come directly to the space in front of the
ticket window.
2) Probability that an arriving customer will have to wait outside the directed
space.
3) How long an arriving customer is expected to wait before getting the service ?
4) Utilization parameter of the entire system.
5) Probability that a customer has to wait for more than 10 minutes in the
system.
10
3. a) Book-store sales a particular book of a Tax Laws for Rs. 250. It purchases
the book for Rs. 200 per copy. Since some of the tax laws changes every
year become outdated and the book can be disposed at Rs. 130 each.
According to past experience the annual demand for this book is between 18
to 23 copies. Assuming that the order for this book can be placed only once
during a year. The problem before the stock manager is to decide how many
copies of the book should be purchased for the next year.
From the past data, the probability distribution of number of copies sold is as
follows :
No. of copies sold
Probability

18

19

20

21

22

23

0.05

0.10

0.30

0.40

0.10

0.05

Calculate the VPI and find optimal strategy.


b) Define Markov Chain. Explain the concept of Markov Chain with suitable
example.

10
10

*4380406*

[4380] 406

-3-

4. a) You are given the following estimates concerning a Research and Development
programme :
10

Decision
Di

Develop

Do not
develop

Prob. of
Decision Di
Given
Research
P(Di/R)
0.5

0.5

Outcome
Number

Prob. of
Outcome Xi
Given Di
P(Xi/Di)

Payoff Value
of Outcome Xi
(Rs '000)

0.6

600

0.3

100

0.1

0.0

600

0.0

100

1.0

Construct and evaluate the decision tree diagram for the above data and
identify the most optimal decision. Show your calculations for evaluation.
b) State the axioms of utility. Explain the use of utility theory in Decision Making
with suitable example.
10

B/I/13/560

[4380] 408

*4380408*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2013


BME 4 : Elective 414 : COLLABORATIVE MANAGEMENT
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) Figures to the right indicate full marks.
1. What is Environment Threat and Opportunity Profile (ETOP) ? What is its role
in strategic analysis ? Explain with relevant examples.

14

2. State and explain the Structural, Functional and Behavioral issues involved in
strategy implementation.

14

3. One plus one makes three : this equation is the special alchemy of a merger or
an acquisition. Explain.
14
4. Leadership style, corporate culture, values and ethics plays crucial role in
effective implementation strategy. Comment.

14

5. A value chain is a chain of activities for a firm operating in a specific industry.


Explain the concept and discuss its competitive advantages.
14
6. Define strategic management. Explain the nature and importance of strategic
evaluation.

14

7. Write short notes (any two) :

14

1) Project implementation
2) BCG matrix
3) Social responsibility
4) GE 9 cell model.

B/I/13/260

[4380] 409

*4380409*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2013


BME 5 : Elective : 415 : DECISION SUPPORT SYSTEM
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 and 7 are compulsory.


2) Solve any four questions out of remaining questions.
1. Concept of need of system integration explain with example.

10

2. Explain importance of Artificial Intelligence and expert system in DSS.

10

3. How is DSS development different than the traditional system development ?

10

4. Explain importance of database management system for DSS and its structure
in detail.

10

5. Explain knowledge based expert system with knowledge representation methods.


10
6. Explain ESS with an example and enumerate ESS characteristics and
capabilities.
7. Write short notes on (any 4) :
1) OLAP
2) GIS
3) SCM

10
20

4) Data warehouse
5) Prototyping.

B/I/13/3,190

[4380] 410

*4380410*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2013


BM E6 (Elective) 416 ENTERPRISE RESOURCE MANAGEMENT
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question No. 1 and Question No. 6 are compulsory.


ii) Solve any three questions from Question Nos. 2, 3, 4 and 5.
iii) Figures to the right indicate full marks.
1. Samsung Mobile is multinational company which produces mobile handset. They
have to implement the ERP system. The company is having their outlets in the
five different countries. The sale of company is increasing every year by 10 %.
Company hired you as consultant for implementing various modules for daily
automation. You have to prepare a Brief report of vendor modules and sub
modules in the integration and automation of the business transaction. Also you
require preparing brief report on vendor analysis and selecting the best module
to improve company performance.

20

2. a) Explain the concept of data mining in detail.

b) Explain the critical and success factors for an ERP implementation.

3. a) How the integration of SCM and CRM module with ERP system will provide
more benefit to an enterprise. Explain by taking the example of online business
company.

b) Discuss the modules and sub modules in Sales and Distribution Management.
4. a) Discuss the various modules of ERP system.
b) Define BPR. Explain the different BPR phases in detail.

5
5
5

P.T.O.

*4380410*

[4380] 410

5. a) How can an ERP system provide advantage for a business ? Explain by


taking the example of multiplex theater.
b) Explain ERP implementation methodology in brief.
6. Write short notes on any four :

5
5
20

1) Operations in OLAP
2) ERP vendor
3) ESS
4) ERP market
5) MIS

B/I/13/1,845

[4380] 501

*4380501*
Seat
No.

M.C.A. (Semester V) (Management Faculty) Examination, 2013


IT-51 : HUMAN COMPUTER INTERFACE
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Question 1 is compulsory.
2) Attempt any five from the remaining.
3) Assume suitable data wherever necessary.
4) Figure at right hand indicate full marks.

1. Answer any four :

20

a) Explain three pillars of design.


b) Describe difference between STM and LTM.
c) Explain design guidelines for form fill-in and dialog boxes.
d) Describe LUCID methodology.
e) Explain direct manipulation and virtual environment.
2. a) Discuss the characteristics of good Web Page Design.
b) List and explain Normans any four principles of good design.

10

3. a) What is Window Design ? Explain individual and multiple design.


b) Explain the term acceptance testing.

10

4. Explain 6 type tasks where pointing devices are applications. Explain direct and
indirect control pointing devices.
10
5. List down in 5 phase frame work to clarify user interfaces for textual search.
Explain each of them in detail.

10

6. Discuss OAI model for website design.

10

7. Write short notes on (any two) :

10

a) Expert reviews
b) Error messages
c) Online manuals.

B/I/13/1,135

[4380] 502

*4380502*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


IT-52 : SOFTWARE I.T. PROJECT MANAGEMENT
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Solve any five from Q. 2 to Q. 7.
1. a) A recently established Software Industry has computerized its Human
Resource Management System by using various software applications for
Selection, Training, Performance Evaluation and Retention of their Employees.
You as a Software Expert need to find out Risk involved in Implementation
and Administration of the project.
15
b) Explain in brief CPM and PERT.

2. You cannot satisfy a customer unless you know what he wants. Justify this
statement and explain how you can manage customer expectation ?

10

3. Discuss how the role of Testing is very crucial in Software Projects ?

10

4. Define Software Configuration Management explain the tasks of Software


configuration management.

10

5. Explain the Cost Estimation Technique COCOMO Model in detail with example.

10

6. Role of QA and QC in Software Development.

10

7. Write short note (any 2) :


a) Version and Release Management.
b) Differentiate between Directive and Collaborative Styles.

10

c) Gantt Charts.
d) Role of User in System Implementation.

B/I/13/1,310

[4380] 504

*4380504*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


IT 55 : ADVANCED INTERNET TECHNOLOGY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 and 7 are compulsory.


2) Attempt any four from remaining.
1. Explain 4C payment modes with comparison.

10

2. Design a html page to display list of available books in a listbox. Allow user to
select multiple books and submit form. Write a servlet code to display selected
books.
10
3. List out JSP Standard Actions. Explain any two.

10

4. Write Perl program for Hangman word game.

10

5. Write PHP code to send e-mail to two recipients simultaneously. Provide GUI to
accept recipients email-ids, subject and message text from user.
10
6. Design html page to accept ADHAR card registration information. Write JSP
code to store registration details in database.

10

7. Write short notes on any four :

20

a) Cookies in Servlet
b) Arrays in Perl
c) Include ( ) and Required ( ) in PHP
d) Public and Private encryption
e) $-GET and $-POST in PHP.

B/I/13/775

[4380] 505

*4380505*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


IT-E 1 (Elective) : CYBER LAW AND IT SECURITY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. Nos. 1 and 7 are compulsory.


2) Solve any three from remaining questions.
1. a) Explain scope of IT Act 2000 and recent amendments in it.

10

b) What is digital signature ? How digital signature is use for security purpose ?

10

2. Explain cryptography in detail. Explain role of public key and private key in
cryptography.

10

3. Explain establishment and composition of appellate tribunal under Cyber


Regulations.

10

4. Explain concept of domain name with reference to cyber law.

10

5. What are the powers of adjudicating officer to impose penalties ?

10

6. What is E-Governance ? Explain one example of E-Governance.

10

7. Write short notes (any four) :


a) Reverse Hijacking
b)
c)
d)
e)

(45=20)

Genesis of cyber law


Spamming
RSA Algorithm
Trademark Law.

B/I/13/510

[4380] 507

*4380507*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2013


ITE-3 : ADVANCED UNIX (Elective)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Question 1 and 7 are compulsory.


2) Solve any 4 from remaining.
3) Draw suitable diagrams wherever necessary.
1. Explain the following system calls with examples and syntax (any five) : (52=10)
a) Iseek ()

b) fork()

c) dup()

d) chmod()

e) link()

f) exit()

2. Explain the directory related system calls.

10

3. What is Orphan Process ? Explain the ways by which it can be avoided.

10

4. What are message Queues ? Explain the structure of information maintained by


Kernel for every message Queue.
10
5. What is a Semaphore ? Explain how you control operation on a semaphore.

10

6. What are pipes ? What happens when a pipe system is called ? Explain how they
are different from ordinary files ?
10
7. Write short notes on the following (Attempt any four) :

(45=20)

a) malloc(), calloc() and relloc().


b) Methods of Inter-Process Communication.
c) Race Condition.
d) Real UID vs Effective UID.
e) File descriptor.
f) Record locking.

B/I/13/245

[4380] 508

*4380508*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


ITE 4 : (Elective) : MOBILE WIRELESS COMPUTING
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and 7 are compulsory.


2) Attempt any three questions from the remaining Q. 2 to Q. 6.
1. a) Define the following terms and write their functions (any four) :
i) BSS
ii) HLR
iii) MMF
iv) PCF
v) UMTS
vi) MAC.

10

b) What are the functional difference in various generations of mobile computing ?


Explain.

10

2. a) Explain the concept of frequency-reuse.


b) What is hand-off ? Define different methods of hand-off.

5
5

3. What is WAP Gateway ? Explain its functions.

10

4. Explain DHCP. How DHCP can be used for mobility management ?

10

5. Define indirect TCP. Explain selective retransmission.

10

6. Explain dynamic source routing.

10

7. Write short notes (any four) :

20

i) HIPER LAN

ii) CDMA

iii) GPRS

iv) QoS in Wireless

v) Push-Pull

vi) Adhoc Networks.

B/I/13/270

[4380] 52

*438052*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


IT-52 : ADVANCED INTERNET TECHNOLOGY
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 7 are compulsory.


2) Solve any four from remaining.
1. What is digital signature ? Explain its advantages and disadvantages.

10

2. Write ASP code for ADHAR card registration (Assume suitable table structure).

10

3. Write a JSP code to generate book report for specific publisher and price above 250/-.
(use suitable table structure).
10
4. Write a PHP program to accept account number from user and display account
holder details along with account transactions. (Use suitable table structures).
10
5. Explain JSP Actions - include and forward.
6. a) With suitable example, explain error handling in ASP.
b) Explain pattern matching in Perl.
7. Write short note on any four :
a) Request and response object in ASP.
b)
c)
d)
e)

10
5
5
20

Session in PHP.
Arrays in Perl.
Default objects in JSP.
Sending mail in PHP.

B/I/13/100

[4380] 53

*438053*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


IT 53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No. 1 and No. 7 are compulsory.


2) Solve any 4 from remaining.
1. The core area of Warahi Software Solution is software product development.
This company has four corporate offices located at four major cities across
India. As a Business Development head, you are advised to suggest a suitable
Business Continuity Plan structure [BCP].
15
2. What is e-commerce and explain e-commerce process models in brief.

10

3. What is an ATM and explain its benefits.

10

4. What is video conferencing and how does it work ?

10

5. Discuss strategies and tactics for implementation of E-Governance.

10

6. What is GIS ? How does GIS works ?

10

7. Write short notes on any three :

15

1) RFID.
2) Components of Embedded System.
3) Spatial objects in GIS.
4) Knowledge management tools.
5) E-logistics.

B/I/13/100

[4380] 55

*438055*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


Management Elective : IT-1 DISTRIBUTED DATABASE
MANAGEMENT SYSTEM
(2005 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Full marks are indicated to the right of each question.
Whenever necessary, state assumptions.
Give examples if required.
Q. No. 7 is compulsory, solve any five from remaining.

1. Explain the need for DDBMS and its advantages and disadvantages.

10

2. What are the different types of fragmentations ?

10

3. Explain query optimization, query execution and access plan with suitable
example.

10

4. Discuss data recovery in case of node and link failure.

10

5. Discuss the architecture of Heterogeneous DDBMS.

10

6. Discuss various concurrency control methods in DDBMS.

10

7. Write a short note on (any 4) :

20

a) Client server database


b) Distributed Data Administrator
c) Mobile Database
d) Distributed Deadlock
e) Components of DDBMS.

B/I/13/100

[4380] 56

*438056*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


Management Elective IT-2 (2005 Pattern)
ARTIFICIAL INTELLIGENCE
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 is compulsory.


2) Solve any five questions from question 2 to 7.
1. a) Define AI. Explain significance of AI. List and explain various applications
of it.
10
b) Discuss the concept of knowledge representation in brief.

10

2. Illustrate Mini-Max search for the tic-tac-toe game, with final position.

10

3. A) Explain natural language processing and its importance in AI.

B) Explain the concept of forward and backward reasoning.

4. A) Explain n-queens problem and illustrate it with an example.

B) What is an associative network ? Explain.

5. What is semantic analysis ? Discuss in detail along with appropriate examples.

10

6. Explain heuristic search technique. List and explain its drawbacks.

10

7. Write short notes on any two :

10

i) Fuzzy logic
ii) Expert system
iii) Probabilistic reasoning.

B/I/13/100

[4380] 57

*438057*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


Management Elective : (2005 Pattern)
IT3 : NETWORK SECURITY
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Q.1 and Q.6 are compulsory.
Solve any three from Q. 2 to Q. 5.
Figure at right indicate marks.
Give appropriate examples wherever necessary.

1. a) Explain with example Encryption, Decryption and Restriction in RSA


cryptography.

10

b) Explain Kerberos Protocol and operations in it. Why is it called as three


headed dog ?

10

2. Explain IPSec as IP encapsulating security protocol.

10

3. Explain various protocols for web security.

10

4. Explain Clark-Wilson Access Control Model.

10

5. Explain with example Secure Hash and Key Management in Cryptosystems.

10

6. Write short notes (any four) :

(45=20)

a) Stream Cypher
b) MIME
c) Access Matrix
d) IP Sec
e) ACL in Proxy.

B/I/13/100

[4380] 59

*438059*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


(2005 Pattern)
Management
IT-5 : VISUAL C++
(Elective)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Que. 1 is compulsory.


2) Attempt any three questions from the remaining.
3) Figures to right indicate full marks.
1. a) Write a source code for simple windows application which creates and displays
a window and displays messages.
10
b) Write a program using SDK to draw freehand drawing.

10

c) Explain virtual function with example.

2. a) Using the window controls write a program to display a dialog box with Item
details.
b) Explain Error handling with suitable example.

3. a) Design C++ class to implement singly linked list and methods to Implement
various operations.
b) Explain abstract class with suitable example.
4. a) Write C++ program to read a text file and print vowels from file.
b) Explain Scope Operator with example.
5. Write short notes (any three) :
a) Vector Array

10

10
5
10
5

(35=15)

b) MDI
c) Device Independent Graphics interface
d) Common dialog control.

B/I/13/100

[4380] 60

*438060*
Seat
No.

M.C.A. (Semester V) (Mgt. Faculty) Examination, 2013


Management Elective :IT 6 : HUMAN COMPUTER INTERFACE
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Solve any five from Question No. 1 to 6.


2) Question 7 is compulsory.
3) Figures to right indicate full marks.
1. Explain Design Guidelines for form-filling and Dialog Boxes.

10

2. List down phases in 5-phase framework and explain each of them in detail.

10

3. Explain the goals of computer supported co-operation.

10

4. Describe Differences and Similarities between STM and LTM.

10

5. Explain OAI model in detail.

10

6. Explain the concept of Individual and Multiple Window and what do you mean by
coordination multiple windows ?
10
7. Write short notes on (any four) :

(54=20)

a) Goals of SE
b) Acceptance Testing
c) Error Message Guidelines
d) Expert reviews
e) LUCID.

B/I/13/100

[4380] 62

*438062*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2013


Management Elective : IT 8 : ADVANCED UNIX
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q.1 and Q.6 are compulsory.


2) Solve any three from remaining.

1. a) Explain Binary I/O with suitable example.

10

b) Explain the concept of file descriptor duplication.

10

2. Explain different system calls associated with file I/O.

10

3. What are signals ? Explain how to end particular process using signal ?

10

4. What do you mean by file permission ? Explain it with suitable example.

10

5. Explain memory management routines in UNIX.

10

6. Write short note on (any four) :

20

a) Semaphores
b) Message queue
c) Buffering
d) Session
e) Multitasking.

B/I/13/100

Total No. of Questions : 7]

P1823

SEAT No. :

[4775] - 11

[Total No. of Pages : 2

M.C.A. (Management Faculty) (Semester - I)


IT - 11 : COMPUTER ORGANIZATION
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:
1) Q.1 and Q.7 are compulsory.
2) Solve any four from the remaining.
3) Draw neat diagram wherever necessary.

Q1) a)
b)

[Max. Marks : 70

Compare pentium processor with 80486 processor architecture with neat


diagram.
[10]
Explain any one synchronous counter in detail.

Q2) Convert the following :


a)

(101110)2 = (?)8

b)

(952)10 = (?)8

c)

(11010011)2 = (?)16

d)

(ABC)16 = (?)2

e)

(127.54)8 = (?)10

[5]
[5 2 = 10]

Q3) What is duality theorem? Explain master slave flipflop working in detail. [10]
Q4) Explain memory Hierarchy with neat diagram in detail.

[10]

Q5) Write a brief note on programming language paradigm.

[10]

Q6) Explain instruction-Execution-Interrupt cycle in detail with neat diagram.[10]

P.T.O.

Q7) Write Short notes (Any three):

[3 5 = 15]

a)

Interrupts

b)

Performance of processor.

c)

Multiplexer

d)

Addressing modes.

ddd

[4775] - 11

-2-

Total No. of Questions : 7]

P1824

SEAT No. :

[4775] - 12

[Total No. of Pages : 3

M.C.A. (Management Faculty) (Semester - I)


102 : C - PROGRAMMING
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:
1) Question one is compulsory.
2) Solve any five questions from 2 to 7.
3) Assume suitable data whenever necessary.
4) Figure write hand indicates full marks.
5) Answer all parts of a question at one place.
6) Answer each part concisely.

Q1) Explain and find output of the following programs.


a) #include<stdio.h>
int main (){
int x,num=4;
x=call(num);
printf("%d",x);
return 0;
}
int call(int num){
static int x=1,y;
if(num>0){
x=x*num;
y=call(num-1)+call(num-2);
}
return x;
}
b) #include "stdio.h"
int main(){
char arr[100];
printf("%d",scanf("%s",arr));
/* Suppose that input value given
for above scanf is "GeeksQuiz"*/
return 1;
}

[Max. Marks : 70

[20]

P.T.O.

c)

d)

e)

#include <stdio.h>
// Assume base address of "GeeksQuiz" to be 1000
int main(){
printf(5 + "GeeksQuiz");
return 0;
}
#include<stdio.h>
#define TOTAL_ELEMENTS (sizeof(array) / sizeof(array[0]))
int array[] = {23,34,12,17,204,99,16};
int main(){
int d;
for(d=-1;d<=(TOTAL_ELEMENTS-2);d++)
printf("%d/n",array[d+1]);
return 0;
}
# define prod(a,b)=a*b
main(){
int x=2;
int y=3;
printf("%d",prod(x+2,y-10));
}

Q2) a)
b)

Write a recursive function to find the sum of digits of a number.


[5]
Write a C program to find out the sum of series 1/1! + 2/2! + ... + n/n!.[5]

Q3) a)

Write a C program to accept a matrix of order N N and display its


major and miner diagonal elements.
[5]

b)

Write a C program to print Pascal triangle:


A
A B A

[4775] - 12

A
A B

B C B A
C D C B A

D C

B A

-2-

[5]

Q4) Write a C program to create a file called emp.txt and store information about
n persons, in terms of their name, age and salary. Read the file and display the
persons whose salary is more than average salary of all persons.
[10]
Q5) Write a C program to create Item structure having field Item_code, Item_name, Price
and Quantity. Store n items information in Item structure and calculate the total price of
each item and total price of all items. (total price of item = item price quantity) [10]
Q6) a)
b)

Write a graphics program to display concentric ellipse.

[5]

Write a C program to find the position of a sub-string in another string.[5]

Q7) Write Short notes (any two) :

[10]

a)

Command-line arguments in the C language.

b)

Conditional inclusion

c)

Union in C.

ddd

[4775] - 12

-3-

Total No. of Questions : 6]

P1825

SEAT No. :

[4775] - 13

[Total No. of Pages : 1

M.C.A. (Management Faculty) (Semester - I)


BM.11 - 103 : PRINCIPLES AND PRACTICES OF
MANAGEMENT AND ORGANIZATIONAL BEHAVIOUR
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:
1) Questions No. 1 is compulsory.
2) Attempt any 3 from the remaining.
3) Figures to the right indicate full marks.

Q1) a)
b)

[Max. Marks : 70

Explain the need and scope of management in every type of organization.[15]


Explain with examples the management skill is essential for efficient and
effective management.
[10]

Q2) What is organisational structure? Discuss the principles of organisational


structure.
[15]
Q3) What are the different 'Leadership styles'? What types of leadership style is
effective in informal organisation.
[15]
Q4) What are the causes of organisational conflicts? Explain with help of Johari
window.
[15]
Q5) What do you understand by "Managerial Decision making"? Describe the
various decision making environments with examples.
[15]
Q6) Write Short Notes (any three) :
a) Line Vs Staff
b) OB models
c) Group Dynamics
d) Team Building
e) Planning Function

[15]

ddd
P.T.O.

Total No. of Questions : 7]

P1826

SEAT No. :

[4775] - 14
M.C.A.

[Total No. of Pages : 2

MANAGEMENT FACULTY

IT - 13 : Operating System Concepts


(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:
1) Questions 1 & 7 are compulsory.
2) Answer any Four questions from remaining (Q2-Q6).
3) Neat diagrams must be drawn wherever necessary.
4) Figures to the right side indicate full marks.

Q1) a)
b)

[Max. Marks : 70

What is resource allocation graph.


[2]
Observe the following Resource allocation graphs tell whether there is a
deadlock situation or not. Give the explanation for the same.
[8]

Q2) Consider the following set of jobs with their arrival times, execution time (in minutes).
[10]
Job Ids
Arrival Time
Execution Time
P1
0
5
P2
1
15
P3
3
12
P4
7
25
P5
10
5
Calculate the mean turnaround time and the average waiting time for FCFS
and SJF Scheduling algorithms.
P.T.O.

Q3) a)
b)

What is Inter process Communication?

[2]

Explain Shared Memory and Message passing models for IPC.

[8]

Q4) How many page faults occur for FIFO, LRU and optimal page replacement
algorithms for the. Following reference string with 3 page frames? State which
algorithm gives you the minimum no of page faults.
[10]
12321521625631361243
Q5) Explain the concept of segmentation with the help of example.

[10]

Q6) Explain the different levels of RAID.

[10]

Q7) Write short notes (any four) :

[20]

a)

Layered structure for operating system.

b)

Memory Fragmentation

c)

C-SCAN Scheduling

d)

Global Operating system

e)

Network File system (NFS)

ddd

[4775] - 14

-2-

Total No. of Questions : 4]

P1827

SEAT No. :
[Total No. of Pages : 2

[4775] - 15

M.C.A. (Management Faculty) (Semester - I)


MT - 11 : DISCRETE MATHEMATICS
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Attempt any two questions from Q. No. 2,3 and 4.
3) Figures to the right side indicate full marks.
4) Use of scientific Calculator is allowed.

[Max. Marks : 70

Show that P l Q
l Q P Q .

[5]

b)

Prove that x
P x
Q x

l x
P x
x
Q x
.

[5]

c)

Let A  \1, 2,3^ and f, g and h be functions from A to A such that

Q1) a)

f  \ 1,2
, 2,3
, 3,1
^ , g  \ 1,2
, 2,1
, 3,3
^ and h  \ 1,1
, 2,2
, 3,1
^ .
Then find
i) fog
iii) fohog
d)
e)
f)
Q2) a)

ii)

[5]

fogoh

Given A \1,2,3,4^ and relation R:AAis R  \ 1,2


, 2,1
, 2,3
, 3,4
, 4,1
.
Find the transitive closure of R.
[5]
Show that sum of degrees of all the vertices in a graph is twice of the
number of edges.
[5]
Define Complete graph, Regular graph with suitable examples.
[5]
A relation
R  \1,1,1,2 ,1,4 , 2,1, 2,2 , 3,2 , 3,3 , 4,4 ^

defined over the set A  \1, 2,3, 4^ . Is R an equivalence relation?


b)

[5]

Let A  \1,2,4,6,8^ and for a,b A, define a < b if and only if b/a is an
integer. Show that < defines a partial order on A. Also draw the Hasse
diagram.
[7]
P.T.O.

c)

Q3) a)

i)

Obtain the PDNF of P Q


l P j Q

ii)

Prove that a binary tree T with n vertices has (n+1)/2 pendant vertices.[4]

[4]

Obtain the incidence and adjancency Matrix for the following Graph.[5]

b)

Define : Eulerian Circuit & Hamiltonian Circuit With Examples?

c)

i)

Show that x
y
P x, y
l W x, y

, W a, b
P a, b

ii)

Show that the following set of premises is inconsistent.


A l B l C
; D l B C
and A D

[7]
[4]

[4]

Q4) a)

Let G  \1, 2,3,4,5,6^ . Find whether (G,X7) is a cyclic group. If yes


how many generators are there?
[5]

b)

Define Hamming distance between two words X and Y. State the properties
of Hamming Distance. Define the minimum distance of a code. Give
examples.
[7]

c)

Write the code words generated by H, where


1 0 1 1 1 0 0

H  1 1 1 0 0 1 0

0 1 1 1 0 0 1

ddd
[4775] - 15

-2-

[8]

Total No. of Questions : 8]

P1828

SEAT No. :
[Total No. of Pages : 2

[4775] - 21
M. C. A. (Management) (Semester - II)
IT - 21 : DATA STRUCTURES USING C
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:
1) Question 1 and 8 are compulsory.
2) Solve any four from Q2 to Q7.
3) Figures to right indicate full marks.
4) Assume suitable data wherever necessary.
5) Draw suitable diagram wherever necessary.

Q1) a)
b)

[Max. Marks : 70

Write a program to evaluate postfix expression.


[10]
Write a program for INSERT and DELETE operations in circular queue.
[10]

Q2) Write a program for addition of sparse matrices.

[10]

Q3) Draw AVL tree for the following :


[10]
Nita, Pratik, Priti, Ravan, Somu, Joggy, Amar, Parmeet, Naresh, Varun.
Q4) Write a program for traversal, insertion and deletion in linear single linked list.
[10]
Q5) Write a function for insertion of a node in a threaded binary tree.

[10]

Q6) Write an algorithm and program to insert and delete an element from a queue.[10]
Q7) Generate BFS, DFS for node A adjacency matrix, adjacency list for following
graph.
[10]

P.T.O.

Q8) Write short note on (Any two) :


a)

Abstract Data type.

b)

Applications of Graph.

c)

DEQUEUE.

[2 5 =10]

iiii

[4775] - 21

Total No. of Questions : 7]

SEAT No. :

P1829

[Total No. of Pages : 2

[4775] - 22
M C A (Management Faculty) (Semester - II)
I T - 22 : DATABASE MANAGEMENT SYSTEM
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Solve any five questions from remaining.
3) State assumptions wherever necessary.

[Max. Marks : 70

Q1) A telecom company has launched its mobile services in Pune the following
procedure is proposed by the authorities :
[20]
a)

At present there are 3 schemes for subscription.

b)

Pune region is divided into different sales offices.

c)

Customer can collect subscription forms from any sales office.

d)

As per subscription type, payment by Do/cheque can be submitted.

e)

Forms are verified, subject to realization of payment, customers is informed


about mobile number later by a letter.

f)

Customers picks up equipment from sales office normalize the case up


to 3 NF and draw an E-R diagram for the same.

Q2) Differentiate between 2 tier and 3 tier architecture.

[10]

Q3) What do you understand by recovery? Explain different recovery techniques.


[10]
Q4) Explain relational algebra. Describe about any 5 symbols in detail.

[10]

Q5) What is data warehousing? Explain it with proper diagram.

[10]

Q6) a)

Explain object oriented data base management system.

[5]

b)

What is the purpose of Indexes? Explain with example.

[5]

P.T.O.

Q7) Write short notes on (Any two) :


a)

ACID properties.

b)

Entities and attributes.

c)

Relational model.

d)

Database users.

[2 5 =10]

iiii

[4775] - 22

Total No. of Questions : 6]

SEAT No. :

P1830

[Total No. of Pages : 2

[4775] - 23
M. C. A. (Management Faculty) (Semester - II)
I T - 23 : SOFTWARE ENGINEERING
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:
1) Q. 1 and Q. 6 are compulsory.
2) Attempt any three from the remaining.

[Max. Marks : 70

Q1) Nanded District Co-operative Society is interested in computerizing some of


the activities. The Society has a branch at every taluka and Gram Panchayat.
The activities are namely :
a)

Maintain register of members.

b)

Minutes of meetings.

c)

Generate notices to the members and defaulters.

d)

Annual subscription, membership dues etc.


i)

Draw context level and first level DFD.

[10]

ii)

Prepare the SRS for the same

[10]

Q2) Design a GUI form for Railway reservation system.

[10]

Q3) Describe the phases of SDLC in detail.

[10]

Q4) Explain the role of documentation in maintenance and types of documentation.


[10]
Q5) Explain decision tree, decision table with proper examples.

[10]

P.T.O.

Q6) Write Short Note : (any four)


a)

Reverse engineering.

b)

Code Design.

c)

Structured English.

d)

Data Dictionary.

e)

Structured charts.

[4 5 = 20]

iiii

[4775] - 23

Total No. of Questions : 5]

SEAT No. :

P1831

[Total No. of Pages : 1

[4775] - 24
M. C. A. (Management Faculty) (Semester - II)
BM - 21 : 204 : SOFT SKILLS
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Attempt any three questions from remaining questions.

Q1) a)
b)

[Max. Marks : 70

Discuss formal and informal communication.

[10]

What is communication? Explain the process of communication.

[15]

Q2) Highlight the importance of listening and the barriers of listening.

[15]

Q3) Discuss in brief self-esteem. Explain low and high self-esteem.

[15]

Q4) Prepare a circular to inform Donars and Volunteers to offer gifts to orphan.[15]
Q5) Write any three short notes :
a)

Work culture a need of Business.

b)

Email etiquette.

c)

Telephone etiquette.

d)

Importance of Time Management.

iiii

[15]

Total No. of Questions : 6]

SEAT No. :

P1832

[Total No. of Pages : 3

[4775] - 25
M. C. A. (Management Faculty) (Semester - II)
MT - 21 : 205 : PROBABILITY & COMBINATORICS
(2008 Pattern)
Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:
1) Question No. 1 and Question No. 4 are compulsory.
2) Solve any one from Question Nos. 2 and 3. And solve any one from Question Nos.
5 and 6.
3) Use of statistical table and non programmable calculator is allowed.
4) Figures to the right indicate full marks.

Q1) a)
b)

State and prove formula Derangement.


[5]
If there are 5 gentlemen and 4 ladies to stand in circle. If no two ladies
can stand next to each other, in how many ways can they stand?
[5]

c)

A survey of 500 television viewers produces the following information :


285 watch cricket; 195 watch hockey; 115 watch tennis; 45 watch cricket
and tennis; 70 watch cricket and hockey, 50 watch hockey and tennis; 50
do not watch any of the three games.
[5]
i)
How many people in the survey watch all the 3 games?
ii) How many people watch only hockey?

d)

Find the coefficient of x 4 y 9 z 4 in the expansion of 2 x 2 + 3 y 3 z .[5]

Q2) a)

Using combinatorial argument prove the following binomial identities.[8]

b)

i)

n n n + 1
r + r 1 = r

ii)

n n
r = n r

Find the number of integer valued solutions of the following equation.

x1 + x2 + x3 = 41

x1 4, x2 > 3, x3 > 0

[7]
P.T.O.

Q3) a)

Determine the discrete numeric function corresponding to generating


function.

b)

z
(1 2 z ) (1 + z )

[8]

Solve the following recurrence relation.

[7]

a n 7 a n 1 + 10 a n 2 = 3n , given that a0 = 0, a1 = 1

Q4) a)

b)

c)

Define the following terms :

[5]

i)

Probability (classical definition).

ii)

Independent events.

iii)

Moment Generating function.

iv)

Probability mass function.

v)

Conditional probability.

The following is the probability distribution of a discrete random variable X.


[5]
xi

-2

-1

P (xi)

0.1

0.30

0.70

0.85

0.95

1.0

i)

Find probability distribution

ii)

Find P (x < 0))

iii)

Find P (x = 3 | x > -1)

Following table represent joint probability distribution function of (X, Y).


[5]
Y

4/36

3/36

2/36

1/36

1/36

3/36

3/36

2/36

5/36

1/36

1/36

1/36

1/36

2/36

1/36

5/36

Find :
d)

i)

Marginal Distribution of X and Y,

ii)

Conditional distribution of X given Y = 3.

State and prove Memoryless property for Exponential distribution. [5]

[4775] - 25

Q5) a)
b)

Find MGF and CGF of Gamma distribution and hence find its expectation
and variance.
[8]
Following is a p.d.f of a continuous random variable X :

[7]

k (3 + 2 x), for 2 x 4
f ( x) =
0, otherwise
Find :

Q6) a)

i)

ii)

Var X

Suppose two dimensional continuous r.v (X, Y) has a joint P.D.F.

[8]

1
(6 x y ), for 0 x < 2, 2 y 4
f ( x, y ) = 8
0, otherwise
Find :

b)

i)

P ( x < 1, y < 3)

ii)

P ( x + y < 3)

iii)

P ( x < 1| y < 3)

Of a large group of men, 10% are under 60 inches in height and 45% are
between 60 and 65 inches. Assuming a normal distribution find mean
height and standard deviation.
[7]

iiii

[4775] - 25

Total No. of Questions : 7]

P1833

SEAT No. :
[Total No. of Pages : 2

[4775] - 31
M.C.A. (Management Faculty) (Semester - III)
IT - 31: Web Support Technologies
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates:
1) Q.No. 1 is compulsory.
2) Attempt any five from remaining.
3) Figures to the right indicate full marks.

Q1) a)
b)

[Max. Marks : 70

Explain error Handling in VBScript with examples.

[10]

Explain event handling in JavaScript with examples.

[10]

Q2) Design a form to accept international conference registration details and validate
any five fields with different formats using JavaScript.
[10]

Q3) Write XML to maintain International Journal details like volume, issue, ISSN,
Title, publisher, subscription-rate, etc and convert XML into HTML format
with header and footer.
[10]

Q4) What is CSS? Explain different types of CSS properties with examples. [10]

Q5) a)
b)

Q6) a)
b)

Explain DOM parser with examples.

[5]

Explain string and date object in java script.

[5]

Explain Global.asa with examples.

[5]

Explain request and response object with examples.

[5]

P.T.O.

Q7) Write short notes (any two)

[10]

a)

N-tier Architecture.

b)

History and location object in DOM.

c)

SOAP.

yyy

[4775] - 31

Total No. of Questions : 7]

SEAT No. :

P1834

[Total No. of Pages : 2

[4775] - 32
M.C.A. (Management Faculty) (Semester - III)
IT - 32: Data Communication and Computer Networks
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 and Q.7 are compulsory.
2) Attempt any three from remaining.
3) Neat diagrams must be drawn wherever necessary.
4) Figures to the right side indicate full marks.

Q1) a)

b)

Justify with True or Flase (not more than 60 words).

[Max. Marks : 70

[10]

i)

The data rate of the ISDN basic access D-channel is 192 Kbps.

ii)

HTTP is a request and response protocol.

iii)

A 1-persistant strategy requires a station to transmit immediately


after sending on idle medium.

iv)

The more host addresses allocated for, the fewer network address
available.

v)

Only the dynamic address allocation scheme is used in DHCP.

What is HTTP? What are the different types of HTTP request? Explain
any five of them.
[10]

Q2) What is the limitation of network and host addressing scheme of Class - A,
Class-B and Class-C. What is the default mask for the following IP host
addresses 172. 14.6.8 and 205.35.66.12.
(Solve with proper procedure).

[10]

Q3) Define and explain transport layer services. What are the advantages of UDP
over TCP?
[10]

P.T.O.

Q4) What is firewall? Explain policies and rules of firewall.

[10]

Q5) Explain DHCP scope resolution with examples.

[10]

Q6) What are the advantages of using virtual path in ATM? Explain traffic
management in ATM.
[10]

Q7) Write short notes (any 4).


a)

Packet switching.

b)

TCP/IP model.

c)

Resource record.

d)

FTP.

e)

SNMP organization.

f)

Secure socket layer.

[20]

yyy

[4775] - 32

Total No. of Questions : 8]

P1835

SEAT No. :
[Total No. of Pages : 3

[4775] - 33
M.C.A. (Management Faculty) (Semester - III)
IT - 33 303 : Object Oriented Programming Using C++
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates:
1) Q.No. 1 is compulsory.
2) Solve any six from Q. 2 to Q. 8.

[Max. Marks : 70

Q1) Write output with Explanation :

[5 2 = 10]

a)

#include <iostream.h>
#define SQUARE(x) x*x
inline float square (float y)
{
return y * y;
}
int main()
{
float a=0.5, b=0.5, c, d;
c=SQUARE(++a);
d=square(++b);
cout<<c=><<c<<\td=><<d;
return 0;
}

b)

#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
void main( )
{
int x=100;
float f=56.75;
cout<<hex<<x<<dec<<x<<endl;
cout<<setw(8)<<setfill(#)<<f;
}

P.T.O.

c)

d)

e)

#include<iostream.h>
void main( )
{
char s [ ] = PROGRAM;
int i ;
for(i=0;s[i];i++)
cout<<\n<<s[i++]<<*(s+i);
}
#include<iostream.h>
class MCA
{
public:
int a;
private:
int b;
protected:
int c;
};
void main ( )
{
MCA M;
cout<<M.a<<M.b<<M.c;
}
#include<iostream.h>
void main( )
{
int a=10;
while( 1 )
{
switch(a)
{
case 10:cout<<a++;
case 11:cout<<a--;
case 12:cout<<a++;
}
}
}

[4775] - 33

Q2) a)
b)

Write a program for finding largest of three elements using function


template.
[5]
Write a short note on friend function.

[5]

Q3) a)

What is namespace? Explain how it is used to solve conflict.

[5]

b)

Explain how to create user define manipulators with example.

[5]

What is constructor? Explain type of constructor.

[5]

Q4) a)
b)

What is Exception? Explain how certain exception types are not allowed
to be thrown.
[5]

Q5) Write a program that create file which has information Name, A/c number,
balance and perform following operation on it through menu.
[10]
a)

Add record

b)

Modify balance of specific a/c no

c)
d)

Display content of file


Display name of person having balance > 10,000

Q6) a)
b)

Write a program to overload ().


Explain need of virtual base class with example.

[5]
[5]

Q7) Write a program that create two classes Dangle and Rangle. Dangle stores
angle in degree and Rangle stores angle in Radian. Write appropriate function
so user can be able to write D = R and R = D. Where R is object of Rangle
and D is object of Dangle (Angle in Radian = Angle in degree * 3.142 / 180).
[10]
Q8) Write short note on (any two)
a) New style cast.
b) Standard template library.
c) Static data member & static member function.

yyy
[4775] - 33

[2 5 = 10]

Total No. of Questions : 7]

SEAT No. :

P1836

[Total No. of Pages : 1

[4775] - 34
M.C.A. (MANAGEMENT FACULTY) (Semester - III)
IT 34 304: Advanced Database Management Systems
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates:
1) Q.No. 7 is compulsory.
2) Solve any five questions from 1 to 6.
3) Figures to the right indicate full marks.

[Max. Marks : 70

Q1) Explain intra-operational and inter - operational parallelism.

[10]

Q2) Differentiate between: OODBMS, ORDBMS, RDBMS.

[10]

Q3) Explain 2PC protocol in distributed DBMS.

[10]

Q4) What is data mining? Explain any 2 approaches/algorithms used in data mining.[10]
Q5) Discuss the ETL process in detail.

[10]

Q6) What is XML? Explain what is DTD & its importance with example.

[10]

Q7) Write short note any 4

[4 5 = 20]

a)

Visualization.

b)

Multimedia databases.

c)

Outlier analysis.

d)

Predictive mining.

e)

Fact constellation schema.

yyy

Total No. of Questions : 7]

P1837

SEAT No. :
[Total No. of Pages : 2

[4775] - 35
M.C.A. (Management Faculty) (Semester - III)
BM - 31 : Management Support System and Is Security
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates:
1) Q.No. 1 and 7 are compulsory.
2) Attempt any four from Q. No. 2 to Q. No. 6.
3) Figures to the right indicate full marks.

[Max. Marks : 70

Q1) Define exception and explain how to handle exception in management support
system.
[10]

Q2) Explain in detail the structure of MIS based on management activities and
functions.
[10]

Q3) Brief newell - simon model of human information processing system.

[10]

Q4) Explain the information requirement for functional area with respect to
production management.
[10]

Q5) What is heuristic programming? Explain decision making heuristics in detail.[10]

Q6) Define expert system. Differentiate conventional and expert system.

[10]

P.T.O.

Q7) Write short notes on (any four)

[4 5 = 20]

a)

Simulation technique.

b)

Operational research techniques.

c)

Subsystem approach.

d)

Feedback control.

e)

Integrated executive information system.

f)

Control audit of information security.

yyy

[4775] - 35

-2-

Total No. of Questions : 8]

P1838

SEAT No. :
[Total No. of Pages : 2

[4775] -41
M.C.A.Management Faculty (Semester - IV)
IT - 41 : JAVA PROGRAMMING
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates :
1) Question 1 compulsory.
2) Solve any six from remaining.

Q1) Answer following :


a)

What is Adapter class?

b)

Explain checked exceptions.

c)

What is method overloading?

d)

How static keyword is used?

e)

Explain Result set Metadata.

[Max. Marks : 70

[10]

Q2) Write JDBC application to register Kabaddi team for Pro-Kabaddi matches.
Assume suitable structure.
[10]

Q3) Write multi threaded server - client chatting application.

[10]

Q4) Write an applet to display mouse position on status line.

[10]

P.T.O.

Q5) What is user defined exception? Explain with example.

[10]

Q6) Write Java application that reads lower case stream from command line and
writes it to file strcomp.txt in upper case.
[10]

Q7) What is RMI architecture? Explain with example.

[10]

Q8) Write Notes : (Any Two)

[10]

a)

Types of beans

b)

Explain any 5 controls of AWT.

c)

Access specifiers.

{{{

[4775] - 41

Total No. of Questions : 6]

P1839

SEAT No. :
[Total No. of Pages : 2

[4775] - 42
M.C.A.(Mgt. Faculty) (Semester - IV)
IT - 42 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates :
1) Q. 1 and Q. 6 are compulsory.
2) Attempt any 3 from the remaining.
3) State assumptions if any.
4) Draw neat labeled diagrams where necessary.
5) Figures to right indicate marks.

[Max. Marks : 70

Q1) Write a detailed test plan for web based railway reservation system. Your plan
should cover scope of testing, risks and contingencies, strategies and schedule.
Write test cases for login screen, ticket availability screen, ticket booking and
cancellation screen, source and destination fields.
[20]

Q2) What do you mean by Acceptance testing? Explain functional testing attributes
in detail.
[10]

Q3) Calculate cyclometric complexity & design test cases for printing the area of
a rectangle.
[10]

Q4) Write a brief note on Testing Life cycle.

[10]

Q5) What is the need of process improvement & how it can be achieved?

[10]

P.T.O.

Q6) Write short notes on (Any four)


a)

Reliability Models

b)

SQA building blocks

c)

CAST

d)

Testing levels

e)

White Box Testing.

[20]

{{{

[4775] - 42

Total No. of Questions : 7]

SEAT No. :

P1840

[Total No. of Pages : 2

[4775] - 43
M.C.A.(Management Faculty) (Semester - IV)
IT - 43 - 403 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates :
1) Q.1 is compulsory.
2) Solve any 5 questions from remaining.
3) Mention the assumptions made for solving case study.

[Max. Marks : 70

Q1) ICBI Bank is a global commercial bank based in China. It plans to build an
online Credit Card Management System in order to handle a large amount of
information in an efficient way and provide better service to their
customers.Most commercial banks provide the following major online services
to facilitate their credit card business. Credit Card application, on-line credit
card payment, Special offers to customer, Credit Card transaction checking
etc. With the advance of information technology, ICBI is planning to extend
the above services through online Credit Card Management System (CCMS).

Customers may make an application by filling up an online application form


through the CCMS.

The transaction data with respect to customers payments and purchases


taking place randomly are transferred from the Card Brand Corp. to CCMS
on a daily basis at each midnight (12:00 p.m.)

CCMS allows customers to check their Credit Card transactions and monthly
statement information online.
a)

Draw use Case diagram.

b)

Draw class diagram.

[20]

P.T.O.

Q2) Explain Coad -Yourdan methodology for object Oriented Analysis (OOA).[10]

Q3) Draw the activity diagram for online Flight Reservation System. Write your
own assumptions.
[10]

Q4) a)
b)

Draw a Sequence diagram for the registration at Job Portal for


placement.
[5]
Draw a Collaboration diagram for sending an SMS to your friend.

[5]

Q5) Draw a State - transition diagram for an automatic washing machine.

[10]

Q6) Explain Unified Approach with all the components.

[10]

Q7) Write short notes on (Any Two)

[10]

a)

OODBMS

b)

Common Class Pattern approach

c)

Categories of Pattern

d)

Test Case Guidelines.

{{{
[4775] - 43

Total No. of Questions : 4]

SEAT No. :

P1841

[Total No. of Pages : 4

[4775] - 44
M.C.A. (Semester - IV) (Management Faculty)
MT - 41 : OPTIMIZATION TECHNIQUES
(2008 Pattern)

Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Solve any TWO questions from question Nos. 2,3, and 4.
3) Use of Scientific Calculator and Statistical Tables are allowed.
4) Figures to the right indicate full marks.

Q1) a)

b)

A project consists of different activities and relevant data as follows: [9]


Immediate
Duration (weeks)
Activity
predecessor Optimistic
Most Likely Pessimistic
A
2
3
4
B
2
2
2
C
A
2
4
6
D
A
5
7
9
E
B
1
2
3
F
C
2
2
2
G
E
2
3
4
H
E
1
4
7
I
D,G
1
3
5
J
F, I
1
5
9
i) Draw PERT Network of the project.
ii) Find the Expected duration of the project and variance.
iii) Fine the probability that the project will completed before 16 weeks.
Solve the following Integer Programming Problem:
Max : Z = 2x1 + 5x2
Subject to :
2x1 + 5x2 < 10
4x1 + 3x2 < 20
x1, x2 > 0 and integers

[9]

P.T.O.

c)

Salesman

d)

A TV repairman finds that the time spent on his jobs has an exponential
distribution with mean 30 minutes. If he repairs sets in the order in which
they come in. if the arrival of sets is approximately Poisson with an average
rate of 10 per 8-hour day, Find:
[6]
i)
Repairmans expected idle time each day.
ii) Expected number of TV sets in the shop.
Following table represents performance of salesman (sales in 000 units) in
different districts. Solve the assignment problem to optimize the sales. [6]
District
D1
D2
D3
D4
D5
S1
7
8
2
5
2
S2
2
8
6
7
6
S3
8
4
3
9
6
S4
9
8
4
2
5
S5
2
8
5
3
6
Find the Optimum Solution for the given Transportation Problem:
Warehouses
Supply
P
Q
R
S
A
10
8
7
12
500
B
14
12
8
8
600
C
7
9
14
10
200
D
8
10
12
14
700
Demand 700
550
450
300

[9]

Factory
Plants

Q2) a)

b)

c)

The following are the failure rates of certain types of capacitors.


[6]
Week: 1
2
3
4 5
percent of failing at end of week: 10 25 55 80 100
There are 1000 such capacitors are present in the machine. The cost of
replacing individually a failed capacitor is Rs.3. If all the capacitors are
replaced at fixed interval, whether they are working or not working, it
would cost Re.1 per capacitor. What policy the maintenance manager
should follow between individual replacement policy and group re
placement policy, if group policy is adopted, at what interval of time he
should replace all capacitors.
Draw the network diagram for the following data:
[5]
Activity
A B C
D
E F
G H
I
J K
Predecessor
A A C,B D D
D G F,H I E,I

[4775] - 44

-2-

Q3) a)

b)

c)

Q4) a)

Solve the following LPP by Big M method :


[9]
Min : Z = 3x1 + 6x2
Subject to :
7x1 + 5x2 > 35
4x1 + 10x2 > 80
x1, x2 > 0
An aircraft requires 5000 Kg of rivets per year. The cost of 1 Kg of rivet
is Rs. 20 and it costs Rs.200 to place an order and the carrying cost is
10% per unit per year. Find:
[6]
i)

The Optimum Lot Size

ii)

The time interval between the orders

iii)

Minimum yearly total cost.

Explain the terms:

[5]

i)

Optimistic Time

ii)

Slack

iii)

Unbounded Solution

iv)

Unbalanced Transportation Problem

v)

Alternate Optimum Solution

The time (days) and costs of a certain project is given in the following
table:
[9]
Activity

[4775] - 44

Normal

Crash

Time

Cost

Time

Cost

1-2

1600

1900

1-3

2000

2900

2-3

1100

1500

2-4

800

1400

3-4

3-5

900

1500

4-6

10

2500

3500

5-6

500

800

-3-

The indirect cost of the project is Rs. 300 per day. Draw the project
network and find the normal duration and cost. If the activities are
systematically crashed,. then what would be the optimum duration and
cost of the project.
b)

c)

Express the following Assignment Problem as LPP:


A

II

III

IV

Describe the various characteristics of the queuing system.

]]]

[4775] - 44

-4-

[6]

[5]

Total No. of Questions : 7]

P1842

SEAT No. :
[Total No. of Pages : 2

[4775] - 45
M.C.A. (Management Faculty) (Semester - IV)
MIS FRAMEWORK & IMPLEMENTATION
(2008 Pattern) (Elective)

Time : 3 Hours]
Instructions :
1) Q.1 and 7 are compulsory.
2) Solve any four questions from remaining.
3) Figures to the right indicate full marks.

Q1) Define MIS. Explain need and objectives of MIS in detail.

[Max. Marks : 70

[10]

Q2) How Information Technology charging the way Human Resource function is
performed.
[10]

Q3) Explain the different threats to IT Infrastructure.

[10]

Q4) Explain the informational needs of the manager working at different levels of
managerial hierarchy.
[10]

Q5) Explain the impact of IT Infrastructure on the Socio-economic environment


of the organization.
[10]

P.T.O.

Q6) Explain the role played by IT - Infrastructure in operational control and decision
support system in an organization.
[10]

Q7) Write short notes on (Any four)

[4 5 = 20]

a)

Group Decision Support System

b)

Competitive Advantage

c)

Expert System

d)

Critical Success Factor in Implementing IT applications

e)

Objectives of good IT Policy.

{{{

[4775] - 45

Total No. of Questions : 9]

SEAT No. :

P1843

[Total No. of Pages : 2

[4775]-46
M.C.A. (Faculty of Management) (Semester - IV)

412: FOUNDATION OF DECISION PROCESSES


(2008 Pattern) (Elective)
Time : 3 Hours]
Instructions to the candidates:
1) Attempt any Seven from the following.
2) Use of non-programmable calculators is allowed.
3) Figures to the right indicate full marks.

Q1) Explain the various Models of Queuing system.

[Max. Marks : 70

[10]

Q2) A retailer purchases strawberries every morning at Rs.50 a case and sells
them for Rs.80 a case. Any case remaining unsold at the end of the day can be
disposed off next day at a salvage value of Rs.20 per case (thereafter they
have no value). Past sales have ranged from 15 to 18 cases per day. The
following is the record of sales for the past 120 days.
[10]
Cases Sold
No. of Days

15
12

16
24

17
48

18
36

Find how many cases the retailer should purchase per day to maximize his
profit.
Q3) A management is faced with a problem of choosing one of three products for
manufacturing. The potential demand for each product may turn out to be
good, moderate or poor. The probabilities for each of the states of nature
were estimated as follows:
[10]
Product
X
Y
Z

Nature of Demand
Good Moderate Poor
0.70
0.20
0.10
0.50
0.30
0.20
0.40
0.50
0.10

P.T.O.

The estimated profit or loss in Rs. Under the three states may be taken as:
Product
Good Moderate Poor
X
30000
20000
10000
Y
60000
30000
20000
Z
40000
10000 -15000
Prepare the expected value table and advise the management about the choice
of the product.
Q4) Explain the steady state Markov process with example.

[10]

Q5) In a Bank, handled by one teller, customers arrive at the rate of 15 in an hour.
The teller takes 2 minutes to handle a customer. Find:
[10]
a) The probability that the teller is busy.
b) Expected number of customers waiting in the bank.
c) The average time spent by the customer in the bank waiting for their turn.
Q6) Explain the various decision making criteria with illustrations.

[10]

Q7) Solve the game for the given pay-off matrix:


5 3
1
20
5
5
4
6
4 2 0
5

[10]

Q8) Explain the dominance rules in Game with proper example.

[10]

Q9) A company manufactures 30 items per day. The sale of these items depends
upon demand which has the following distribution:
[10]
Sales
(Units)
Probability

27

28

29

30

31

32

0.10

0.15

0.20

0.35

0.15

0.05

The production cost and sale price of each unit are Rs.40 and Rs.50
respectively. Any unsold product is to be disposed off at a loss of Rs.15/unit.
Use the following random numbers to estimate total profit/loss for next 10
days.
10 99 65 97 01 79 11 16 20 34

[4775]-46

Total No. of Questions : 6]

P1844

SEAT No. :
[Total No. of Pages : 1

[4775]-47
M.C.A. (Management Faculty) (Semester - IV)

INFORMATION SYSTEM AUDIT AND GOVERNANCE


(2008 Pattern) (BME-1) (Elective)
Time : 3 Hours]
Instructions to the candidates:
1) Q.1 and Q.6 are compulsory.
2) Solve any 3 from Q.2 to Q.5.
3) Figures to the right side indicate full marks.

[Max. Marks : 70

Q1) You are appointed as an external auditor for a networking firm ABC. Explain
various physical & logical network controls for handling network issue of the
firm. Generate the report of list of evidences.
[20]
Q2) Explain Audit Standards in detail.

[10]

Q3) Explain various steps involved in Risk Assessment process.

[10]

Q4) Discuss in brief different IT crimes along with security and privacy issues.[10]
Q5) Explain the framework of e-commerce.
Q6) Short notes (any four) :
a) Digital Signature.
b) Management Control.
c) Segregation of duties.
d) E-governance.
e) Long term and short term plan.

[10]
[4 5 = 20]

Total No. of Questions : 7]

SEAT No. :

P1845

[Total No. of Pages : 1

[4775]-48
M.C.A. (Management Faculty) (Semester - IV)

BME-414: COLLABORATIVE MANAGEMENT


(2008 Pattern) (Elective)
Time : 3 Hours]
Instructions to the candidates:
1) Attempt any five questions.
2) Figures to the right indicate full marks.

Q1) Explain in detail Mckinseys 7s frame work.

[Max. Marks : 70

[14]

Q2) What are the different stakeholders of an organization? What roles do they
play in strategic issue identification and resolution?
[14]
Q3) Explain different types of growth strategies and issues involved in post
acquisition scenario with examples.
[14]
Q4) Explain Porters Five forces Model in detail.

[14]

Q5) Explain the importance of Corporate Social Responsibility.

[14]

Q6) a)
b)

Define strategy and strategic management.


Define Budgeting. Explain the importance of budgeting in corporate
planning.
[14]

Q7) Write short notes (Any Two) :

[14]

a)

Diversification Strategies.

b)

Project implementation.

c)

Symptoms of malfunctioning of strategy.

d)

Competitive Advantage.

Total No. of Questions : 7]

SEAT No. :

P1846

[Total No. of Pages : 1

[4775]-49
M.C.A. (Management Faculty) (Semester - IV)

BME-5-415: DECISION SUPPORT SYSTEM


(2008 Pattern) (Elective)
Time : 3 Hours]
Instructions to the candidates:
1) Question 1 and 7 are compulsory.
2) Answer any four questions from remaining questions.

[Max. Marks : 70

Q1) Discuss various models of ES and DSS integration.

[10]

Q2) Explain importance of Artificial Intelligence and expert system in DSS. [10]
Q3) Explain traditional SDLC and state alternative development methodologies.[10]
Q4) Explain the database organization and structures used in DSS.

[10]

Q5) What is Data Mining? Explain the classification of data mining tools and
techniques.
[10]
Q6) Define MIS and explain the role of DSS.

[10]

Q7) Write short note on (any four) :

[20]

a)

SCM.

b)

Risk factors in end user developed DSS.

c)

DSS Implementation.

d)

OLAP.

e)

ODSS.

Total No. of Questions : 6]

P1847

SEAT No. :
[Total No. of Pages : 2

[4775]-50
M.C.A. - II (Semester - IV)

ENTERPRISE RESOURCE PLANNING


(2008 Pattern) (BME - I)
Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 & 6 are compulsory.
2) Solve any three from Q.2 to Q.5
3) Figures to the right indicate full marks.

[Max. Marks : 70

Q1) Ratnadeep Warehouse Pvt. Ltd, is a well reputed business organization


engagged in warehousing, supply chain management and transportation
activities across Maharashtra. Presently the organization is having manual system
for administrative work which is time consuming and incompetent. So the top
management has decided to develop the integration of various functionalities
for office automation. As an ERP consultant discuss the pre-implementation
& post implementation key success factors. Also prepare the detail report
about the ERP implementation.
[20]
Q2) a)
b)

Q3) a)

Explain the importance of component based ERP system.

[5]

Discuss the Human Resource Management module in purview of ERP


implementation.
[5]
Explain the importance of Data mining tools for ERP system.

[5]

Explain the role of middle management in ERP implementation.

[5]

Q4) What is BPR? Explain BPR lifecycle in detail with suitable diagram.

[10]

Q5) Explain CRM attained through ERP with suitable example.

[10]

b)

P.T.O.

Q6) Write short notes on any four of following :


a)

GAP Analysis.

b)

Data Warehousing.

c)

DSS.

d)

Applications of OLAP.

e)

Fmea & SCM.

[4775]-50

[20]

Total No. of Questions : 7]

SEAT No. :

P1848

[Total No. of Pages :2

[4775] - 51
M.C.A.(Management Faculty) (Semester -V)
IT 51: HUMAN COMPUTER INTERFACE
(2008 Pattern)

Time : 3 Hours]

[Max. Marks :70

Instructions to the candidates :


1) Q. 1 is compulsory.
2)

Answer any five from the remaining (Q2-Q7).

Q1) Answer any four.


a)

What are the guidelines for data entry?

b)

What are the goals of system engineering?

c)

Explain individual window design.

d)

Write icon-specific guidelines.

e)

Explain presentation styles for error messages.

[4 5 = 20]

Q2) Explain OAI Model for Web site Design.

[10]

Q3) Explain four phase framework for textual search.

[10]

Q4) Explain eight golden rules of Interface design.

[10]

Q5) Explain three pillars of design.

[10]

P.T.O.

Q6) Explain Goals of co operations.

[10]

Q7) Write short note on (any two).

[10]

a)

Response time and display rate.

b)

Speech recognition.

c)

Surveys.

M M M

[4775]-51

Total No. of Questions : 7]

P1849

SEAT No. :
[Total No. of Pages :2

[4775] - 52
M.C.A.(Management Faculty)(Semester - V)
SOFTWARE PROJECT MANAGEMENT
(2008 Pattern)

Time : 3 Hours]

[Max. Marks :70

Instructions to the candidates :


1) Q. No. 1 is compulsory.
2)

Q1) a)
b)

Solve any five from remaining.

Explain COCOMO Model in depth with all its models & examples.[10]
Explain in detail Software Configuration Management.

[10]

Q2) Explain Project Development Life Cycle with the help of a Diagram.

[10]

Q3) Explain different Software Testing Methods. Compare Black Box & white
Box testing methods.
[10]

Q4) What is function point analysis? How is it used to determine cost of project?[10]
Q5) State benefits of component based Software development.

[10]

Q6) Explain CMM in all its phases with example.

[10]

P.T.O.

Q7) Write short notes (ANY 2):

[10]

a)

Version Control

b)

Software reviews

c)

CPM/PERT

d)

Practices & controls in HRM.

M M M

[4775]-52

Total No. of Questions : 7]

P1850

SEAT No. :
[Total No. of Pages :2

[4775] - 53
M.C.A.(Management Faculty) (Semester -V)

IT - 53: EMERGING TRENDS IN INFORMATION


TECHNOLOGY
(2008 Pattern)
Time : 3 Hours]

[Max. Marks :70

Instructions to the candidates :


1) Q. 1 and Q. 7 are compulsory.
2)

Attempt any four from remaining.

Q1) Star - auto is a automobile industry specialized in designing and manufacturing


hatch back cars - it has corporate office in pune and 5 plants in all over India.
Design business Continuity Planning System which would be implemented in
corporate office and all the plants of star auto.
[15]
Q2) Discuss various E-learning models in detail.

[10]

Q3) What is knowledge managements? Explain architecture and tools of it. [10]
Q4) What is GIS? Explain spatial objects and data models.

[10]

Q5) What is E- agriculture? Explain corp management.

[10]

Q6) Explain in detail warehousing management and transportation management.[10]

P.T.O.

Q7) Write short notes (any three).


a)

ERP packages

b)

Digital signatures

c)

Palm devices

d)

RFID

[3 5 = 15]

M M M

[4775]-53

Total No. of Questions : 7]

P1851

SEAT No. :
[Total No. of Pages :2

[4775] - 54
M.C.A.(Management Faculty) (Semester -V)

IT - 55: ADVANCED INTERNET TECHNOLOGY


(2008 Pattern)
Time : 3 Hours]

[Max. Marks :70

Instructions to the candidates :


1) Questions NO.1 & Question No. 7 are compulsory.
2)

Attempt any four questions from remaining.

3)

Right side indicates marks.

Q1) What is E-commerce? what are the types of E-commerce? Explain benefits of
E- commerce.
[15]
Q2) Write a servlet program to accept online registration details of candidates for
appearing campus drive for Infosys.Assume suitable table structure.
[10]
Q3) Write a PERL program to accept a string , character from user and count the
number of times that particular character occurs in a given string also display
number of characters, number of words & No. of punctuations (!,?,",etc)
present in a string.
[10]
Q4) Write a PHP code to display company wise student's placement report of
MCA-III yr. (Assume suitable table structure).
[10]
Q5) Explain pattern matching in PERL with example.

[10]

P.T.O.

Q6) Explain types of arrays, with any five methods in PERL.

[10]

Q7) Write short note on any three.

[15]

a)

Cookies in servlet

b)

ISP standard Actions

c)

ISP directives

d)

CGI Architecture

e)

PHP Error Handling

M M M

[4775]-54

Total No. of Questions : 7]

SEAT No. :

P1853

[Total No. of Pages :2

[4775]-56
M.C.A. (Management Faculty) (Semester - V)
PROGRAMMING LANGUAGES PARADIGM
(Elective)
(2008 Pattern)

Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates:


1)
2)
3)

Question No. 1 and 7 are compulsory.


Attempt any FOUR questions from remaining.
Figures to the right side indicate full marks.

Q1) Explain program interpretation and execution in conventional computer


with block diagram.
[15]

Q2) Explain binding time classes and its importance in programming Language.
[10]

Q3) Explain implementation of recursive function call.

[10]

Q4) Explain syntactic elements of a programming Language.

[10]

Q5) Explain stack and heap storage management.

[10]

Q6) Explain analysis of source program with block diagram.

[10]

P.T.O.

Q7) Write short notes (any three):

[15]

a)

Composite Data Types

b)

Firmware Computer

c)

Methods of parameter transmission

d)

Features of Java Language

DDD

[4775]-56

-2-

Total No. of Questions : 7]

P1854

SEAT No. :
[Total No. of Pages :2

[4775]-57
M.C.A. (Management Faculty) (Semester - V)
ITE - 1: ADVANCED UNIX (Elective)
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. one and seven are compulsory.
2) Solve any four from remaining.
3) Assume suitable data whenever necessary.
4) Figures to the right side indicate full marks.

Q1) Explain the following system calls/functions (any five):


a) open()
b)

mount()

c)

wait()

d)

close()

e)

kill()

f)

free()

[Max. Marks : 70

[5 2 = 10]

Q2) Describe the use of File and Record locking. And explain how to implement
them.
[10]

Q3) What is Orphan Process? Explain the ways by which it can be avoided.
[10]

Q4) What are pipes? What happens when a pipe system is called? Explain how
they are different from ordinary files.
[2 + 4 + 4]
P.T.O.

Q5) What are message Queues? Explain the structure of information maintained
by Kernel for every message Queue.
[4 + 6]

Q6) What is shared memory? What is the importance of it? Explain in detail
about the process of "Allocating a shared memory segment". [3 + 2 + 5]

Q7) Write short notes on (any four):

[4 5 = 20]

a)

inode table

b)

Methods of Inter Process Communication

c)

Process states

d)

Zombie process

e)

buffer queue

DDD

[4775]-57

-2-

Total No. of Questions : 7]

P1855

[Total No. of Pages :2

[4775]-58
M.C.A. - III (Management Faculty) (Semester - V)
MOBILE COMPUTING
(2008 Pattern)

Time : 3 Hours]
Instructions to the candidates:
1) Question 1 and 7 are compulsory.
2) Attempt any three from remaining.

Q1) a)

SEAT No. :

[Max. Marks : 70

Define the following Terms.


i)

TCP issue

ii)

CDMA

[10]

iii) SIM
iv) Mobile Management
v)
b)

UMTS

Compare DSSS & OFDM.

[10]

Q2) Explain the logical channel of GSM network.

[10]

Q3) How can DHCP used for mobility & How it support to mobile IP.

[10]

Q4) What is WAP gateway? What are its function.

[10]

Q5) What is Hidden rode problem and how it is resolved in 802.11.

[10]
P.T.O.

Q6) What are the Advantage and disadvantage of wireless networking.

[10]

Q7) Write short notes (any four):

[20]

a)

Visitor Location Register

b)

Frame Error Rate

c)

Function of mobile Management

d)

SPIN

e)

Distributed Computation

DDD

[4775]-58

-2-

Total No. of Questions : 8]

P1856

SEAT No. :
[Total No. of Pages :2

[4775]-59
M.C.A. (Management Faculty) (Semester - V)
ITE5: DISTRIBUTED DATABASE MANAGEMENT SYSTEM
(2008 Pattern) (Elective)

Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:
1) Question No. 8 is compulsory. Solve any 5 from remaining.
2) Draw suitable diagram where needed.
3) Give suitable examples if required.
4) Whenever necessary state assumptions.
5) Right side indicates marks.

Q1) Explain the various Distributed design Issues.

[10]

Q2) What are the different types of fragmentation? Explain with suitable example. [10]

Q3) What is query optimization? Explain the various factors governing query
optimization.
[10]

Q4) What is a transaction and explain the various goals of transaction


management with respect to distributed databases.
[10]

Q5) What is Dom? Explain the various reasons why objects are distributed.[10]

Q6) What is reliability in DDBMS and explain the various types of failures.[10]

Q7) Explain the various concurrency control mechanism for Distributed


databases.
[10]
P.T.O.

Q8) Write short notes (any four):

[20]

a)

Objectives of query Processing

b)

Global Directory Issues.

c)

Advantages of DDBMS.

d)

Fragmentation and its types.

e)

States of Transaction.

DDD

[4775]-59

-2-

Total No. of Questions :7]

P1804

SEAT No. :
[Total No. of Pages :2

[4975]-11
M.C.A. (Management Faculty)
IT-11 : COMPUTER ORGANIZATION AND ARCHITECTURE
(2008 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Q. 1 and Q.7 are compulsory.
2) Solve any four questions from Q.2 to Q.6.
3) Draw neat diagrams wherever necessary.

Q1) a)
b)

Explain 32-bit (80486) Architecture in detail.


Explain types of softwares.

[Max. Marks :70

[10]
[5]

Q2) What is Interrupt? Explain types of interrupts with example.

[10]

Q3) What is counter? Explain types of counters with example.

[10]

Q4) Convert the following:


a)

(1110.11)2 = (?)10

b)

(5D.7E)16 = (?)8

c)

(34.52)10 = (?)16

d)

(110101.11)2 = (?)8

e)

(1111010110)2 =(?)16

Q5) What is pipelining? Explain instruction pipelining in detail.

[52=10]

[10]

P.T.O.

Q6) Explain memory hierarchy wiht different types of memories.


Q7) Write short notes on (Any 3):

[35=15]

a)

Performance of processors.

b)

Addressing modes.

c)

Multiplexer.

d)

Logic gates.

EEE

[4975]-11

[10]

Total No. of Questions :7]

P1805

SEAT No. :

[4975]-12
M.C.A. (Management Faculty)
IT-12 : C PROGRAMMING
(2008 Pattern) (Semester - I)

[Total No. of Pages :2

Time : 3 Hours]
Instructions to the candidates:
1) Question1 is compulsory.
2) Solve any five from 2 to 7.
3) Assume suitable data whenever necessary.
4) Figure in right hand indicate full marks.

[Max. Marks :70

Q1) Find and explain output of the following:

[54=20]

a)

void main ( ) {
int array [2] [2] [3] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11};
printf (%d, array [1] [0] [2]);
}

b)

void main ( ) {
int i = 4, z = 12;
if (i ==5 | | z > 50)
printf (hello);
else
printf (bye);
}

c)

void main ( ) {
extern int a ;
printf (%d\n,a);
}
int a = 20;
P.T.O.

d)

void main {
char c = 0 ;
printf (%d%d, sizeof (c) sizeof (0));
}

e)

void main {
char * url = c:\tc\bin \ rw.c;
printf (%s, url);
}

Q2) a)
b)

Write a function which accepts a string and converts alternate characters


in upper case and lower case.
[5]
Differentiate between call by value and call by reference.

[5]

Q3) a)

Write a function which convert integer no. into binary no. using bitwise
operator.
[5]

b)

Write a C program to find the sum of the first 100 natural numbers.
(sum = 1 + 2 + 3 ......... + 100)
[5]

Q4) Write a C program to copy the alternate word from first file into second file
using command line argument.
[10]
Q5) Define a structure for an employee having emp-id, name, address, phone
number. Assume that all Employees is an array of employees in ascending
order on the employee code. Write a function to display the details of an
employee given its employee code.
[10]
Q6) a)
b)
Q7) a)
b)

Explain initgraph an detectgraph function.

[5]

What is a pre-processor? Which pre-processor is used to define a macro.


[5]
Using recursion, write a C program to reverse a given number.

[5]

Write a C program to compute the sum of first n term (n > 1) of the


following series using for loop. 1 3 +5 7+ 9 ......
[5

EEE
[4975]-12

Total No. of Questions : 6]

P2657

SEAT No. :
[Total No. of Pages : 1

[4975]-13
M.C.A. (Management Faculty)

BM - 11 : PRINCIPLES AND PRACTICES OF MANAGEMENT


FUNCTION AND ORGANISATION BEHAVIOUR

(2008 Pattern) (Semester - I)


Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Attempt any 3 from remaining.
3) Figures to the right indicate full marks.

Q1) a)
b)

[Max. Marks : 70

The manager elevates the status of the organisatoin. Elaborate with the
help of essential skills and functions of manager.
[15]
Describe Maslows Need Hierarchy theory with its limitation.
[10]

Q2) Role of Decision Making in increasing organisation effectiveness. Explain.


[15]
Q3) Making right decision at right time is most significant for organisational
effectiveness. Disucss.
[15]
Q4) What is conflict management? How conflict be resolved in organisation.[15]
Q5) What is Motivation. Disucss the importance of motivation for the success of
organisation. Discuss the contribution of Mc. Gregor in motivation theory.[15]
Q6) Write short notes on: (Any three)
a) Team Building.
b) Line and staff organisation.
c) OB models
d) Johari window.
e) Span of control.

[3 5 = 15]

,,,
P.T.O...

Total No. of Questions :7]

SEAT No. :

P1806

[4975]-14

[Total No. of Pages :2

M.C.A. (Management Faculty)


IT-13- 104 : OPERATING SYSTEM CONCEPTS
(2008 Pattern) (Semester - I)
Time : 3 Hours]
Instructions to the candidates:
1) Solve any five from Question 1 to Question 6.
2)

Q1) a)
b)

Q2) a)
b)

Q3) a)
b)

[Max. Marks :70

Question 7 is compulsory.

How can deadlocks be prevented and avoided?

[10]

Explain in detail segmentation in memory management with neat diagram.

Explain short term, long term and medium term scheduling.

[10]

Explain critical section problem in IPC.

Write a brief note on swapping technique in memory management. [10]


Give different system calls in operating system.

Q4) Explain RAID structure in detail.

[10]

Q5) Explain Scan and look algorithm for disk scheduling. How this effect to OS
performance?
[10]

P.T.O.

Q6) Consider following value.


Process

[10]

Allocation
A B C

Max
A
B

Available
A B C

P1

P2

P3

P4

P5

11

From the above table determine Safe state or not and Justify
Q7) Write short notes (any four):
a)

Critical Section Problem.

b)

Simulation.

c)

Demand Paging.

d)

File Protection.

e)

Monitor.

[20]

EEE

[4975]-14

Total No. of Questions : 4]

P1807

SEAT No. :
[Total No. of Pages : 3

[4975]-15
M.C.A. (Management Faculty)
MT-11 : DISCRETE MATHEMATICS
(2008 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Question 1 is compulsory.
2) Solve any two from Questions 2 to 4.
3) Figures to the right indicate full marks.
4) Scientific calculators are allowed.

Q1) a)
b)

Show that ( Q (P Q) P is tautology.

[Max. Marks :70

[5]

Let P: It rains
Q: The atmospheric humidity increases.

[5]

Write the following statements in symbolic form:

c)

i)

Atmospheric humidity increases only if it rains.

ii)

Sufficient condition for it to rain is that atmospheric humidity


increases.

iii)

Necessary condition for it to rain is that atmospheric humidity


increases.

Determine whether the operation * defined on the following sets is the


binary operation or not.
[5]
i)

A = I+ where a * b = a b.

ii)

A = I where a * b = min (a, b).

P.T.O.

d)

Given A = {1, 2, 3, 4, 5} and B = {1, 3, 5}. Let R be the relation from


A B defined by x is less than y. Write relation R, its matrix and draw
its graph.
[5]

e)

Show that the sum of degrees of all vertices in a graph is always even.
[5]

f)

If A = {1, 2, 3, 4} and B = {a, b, c, d}, determine if the following are one


to one, onto or both.
[5]
f = {<1, a>, <2, a>, <3, b>, <4, d>}
g = {<1, c>, <2, b>, <3, a>, <4, a>}
h = {<1, a>, <2, b>, <3, a>, <4, c>}

Q2) a)

b)

Let A be the set of positive factors of 36 and let be the relation divides;
i.e., = {<x, y> | x, y A and x divides y}. Show that is partially
ordered on A. Also draw the Hasse diagram.
[5]
Use Warshalls algorithm to find the transitive closure of the relation
R = {<1, 2>, <2, 3>, <3, 4>, <2, 1>} on A = {1, 2, 3, 4}.

[5]

c)

Define Monoid, Group, permutation group.

d)

Determine the number of edges in a graph with 6 nodes, 2 of degree 4,


and 4 of degree 2. Draw two such graphs?
[5]

Q3) a)

If A = {1, 2, 3, 4} and B = {a, b, c, d}, determine if the following


functions are one to one, onto or both.
[5]

[4975]-15

i)

f = {<1, a>, <2, a>, <3, b>, <4, d>}

ii)

g = {<1, c>, <2, b>, <3, a>, <4, a>}

iii)

h = {<1, a>, <2, b>, <3, a>, <4, c>}

[5]

b)

Define: Bipartite Graph, Plannar Graph.

c)

Write the code words generated by H, where

[5]

1 0 1 1 1 0 0

H = 1 1 1 0 0 1 0
0 1 1 1 0 0 1

What is the minimum weight of the non zero code word in above code
words?
[5]
d)

Q4) a)

b)

Let A = {1, 2, 3, 4, 5, 6, 7} and R = {<x, y> | x y is divisible by 3}.


Show that R is an equivalence relation. Draw the graph of R.
[5]

Show that the Graphs G and H are isomorphic.

Count the number of vertices, number of edges and number of region of


each of the following planar graphs:
[6]
i)

c)

ii)

Show that the maximum number edges in a simple graph with n vertices
is n(n1)/2.
[6]

[4975]-15

[8]

Total No. of Questions : 6]

P1808

SEAT No. :
[Total No. of Pages : 2

[4975]-21
M.C.A. (Management Faculty)
IT-21:201 : DATA STRUCTURES USING C
(2008 Pattern) (Semester - II)

Time : 3 Hours]
Instructions to the candidates:
1) Question 1 is compulsory.
2) Solve any four from Q. 2 to Q. 6.
3) Assume suitable data wherever necessary.
4) Draw suitable diagram wherever necessary.
5) Figures to right indicate full marks.

Q1) Write short note on Any Two:


a)

Sparse matrix.

b)

Expression tree.

c)

Abstract Data type.

Q2) a)
b)

c)

[Max. Marks :70

[10]

int array is defined as int array1[200] [150] [50] [20] find the address of
cell array 1[150] [50] [10] [5].
[5]
Consider the following graph:

[4]

i)

Generate the output of BFS algorithm considering E as the starting


vertex.

ii)

Generate the output of DFS algorithm considering E as the starting


vertex.

iii)

Write adjacency matrix.

iv)

Write adjacency list.

Write a function to generate BFS output for a graph.

[6]
P.T.O.

Q3) a)
b)

Q4) a)

Write a program to implement priority queue using linked list.

[8]

Write a program to evaluate postfix expression.

[7]

Convert the following in fix expressing into its equivalent prefix form.
Show contents of stack in table format.

(AB)C*D$E^F

b)

Q5) a)

[8]

Write a program for insert and traverse (inorder) element in BST.

[7]

Draw AVL Tree for the following:

[8]

Vidyadhar, Arun, Sunil, Anil, Sachin, Mohan, Prakash, Kiran, Ashwini,


Gopal, Sudhir.
b)

Q6) a)
b)

Write a menu driven program for insertion and deletion in Doubly Linked
List.
[7]

Write a program for addition of two polynomials using array.

Write a function for PUSH, POP operation in stack using linked list. [7]

[4975]-21

[8]

Total No. of Questions : 7]

SEAT No. :

P1809

[Total No. of Pages : 2

[4975]-22
M.C.A. (Management Faculty)
IT - 22 : 202 : DATABASE MANAGEMENT SYSTEM
(2008 Pattern) (Semester - II)

Time : 3 Hours]
Instructions to the candidates:
1) Q. No. 1 is compulsory.
2) Solve any 5 from remaining questions.
3) State assumptions wherever necessary.

Q1) a)

[Max. Marks :70

Starline AC Suppliers
Quotation
To,
Customer: ____________

Enquiry No.: ____________

Address: ____________

Enquiry Date: ____________

____________

Quotation No.: ____________


Quotation Date: ____________

Sr. No.

Item No. & description

Qty

Rate

Amount

Terms & conditions:Prepared by:b)

Draw ERD with Normalized file Layout.

[12]

Differentiate between NDM and HDM.

[8]
P.T.O.

Q2) Explain E.F. codd rules.


Q3) a)
b)

[10]

Explain RAID.
Explain different storage devices.
[10]

Q4) What is lock? Explain different types of lock.

[10]

Q5) Explain the need of database backup and describe different types backup and
recovery techniques.
[10]

Q6) Explain Generalization and Aggregation with proper example.

[10]

Q7) Write short notes (Any Tour):

[10]

a)

Encryption.

b)

Functional dependencies.

c)

Data definition in SQL.

d)

States of transaction.

[4975]-22

Total No. of Questions : 6]

P1810

SEAT No. :
[Total No. of Pages : 2

[4975]-23
M.C.A. (Management Faculty)
IT-23 : 203 : SOFTWARE ENGINEERING
(2008 Pattern) (Semester - II)

Time : 3 Hours]
Instructions to the candidates:
1) Q. 1 and Q. 6 are compulsory.
2) Solve any 3 from remaining questions.

[Max. Marks :70

Q1) The railway reservation system functions as follows:The passenger is required to fill in an online reservation form to provide the
details of his journey. The system checks the availability of the seat as per the
requirement. If it suits, then the user confirms the booking and proceeds for
online payment procedure through credit or debit card. Once the payment is
done, the ticket is generated. As a consultant prepare SRS for the above
system.
[20]

Q2) Design a GUI form for providing student feedback for teaching faculty and
infrastructure facilities of the institute.
[10]

Q3) Big Bazaar announces Ganpati Discount Scheme for their customers. For
every purchase of Rs. 1,000/-, there is 5% cash discount. For the purchase
between Rs. 1,001 and Rs. 2,000, there is 10% cash discount. For the purchase
above Rs. 2,000, there is 15% cash discount. Apart from this, 4% extra
discount for the regular customer who are having Big Bazaar card. Draw
decision tree and decision table for the above case.
[10]

Q4) STAR Scooter Ltd. has issued an advertisement inviting applications for
various posts. After scrutinizing the applications, interviews are conducted
and candidates are appointed as regular employees. Draw 1st level DFD.[10]

P.T.O.

Q5) Discuss similarities and differences between RAD and JAD models.

Q6) Write short note on any four:

[45=20]

a)

Code Design.

b)

Fact Finding Methods.

c)

Software Maintenance Types.

d)

Web Engineering.

e)

Case Tools.

[4975]-23

[10]

Total No. of Questions : 8]

P1811

SEAT No. :

[4975]-24
M.C.A. (Management Faculty)
BM-21 : SOFT SKILLS
(2008 Pattern) (Semester - II)

[Total No. of Pages : 2

Time : 3 Hours]
Instructions to the candidates:
1) Q. 1 & Q. 8 are compulsory.
2) Solve any four questions from Q. 2 to Q. 7.
3) Figures to the right indicate full marks.

[Max. Marks :70

Q1) What is the importance of soft skills in changing business world? Give examples
of different soft skills.
[15]

Q2) Discuss the barries to the effective communication. How and why
communication barriers occur.
[10]

Q3) Explain Dos and Donts of process of Group Discussion in detail.

[10]

Q4) Explain different electronic communications used in todays IT industry giving


suitable examples.
[10]

Q5) What type of analysis should preceed public speech making.

[10]

Q6) Define body language. How it is used in service industry.

[10]

Q7) What are the communication activities in educational organisation.

[10]

P.T.O.

Q8) Write short notes on (Any Three):


a)

Reading skills.

b)

Minutes of meeting.

c)

Johari window.

d)

Voice mail.

e)

Business Ethics.

[15]

[4975]-24

Total No. of Questions : 6]

SEAT No. :

P1812

[Total No. of Pages : 3

[4975]-25
M.C.A. (Management Faculty)
MT-21 : 205 : PROBABILITY AND COMBINATORICS
(2008 Pattern) (New) (Semester - II)

Time : 3 Hours]
[Max. Marks :70
Instructions to the candidates:
1) Question No. 1 and Question No. 4 are compulsory.
2) Solve any one from Question Nos. 2 and 3. And solve any one from Question Nos.
5 and 6.
3) Use of statistical table and non programmable calculator is allowed.
4) Figures to the right indicate full marks.

Q1) a)

State and prove formula Derangement.

[5]

b)

The n members of board of directors include the president and 2 vice


presidents. Find the number of ways of sitting the board at round table
so that the vice, president are on either side of president.
[5]

c)

Ten gentlemen check their coats at the gatekeeper while entering a hall.
The gatekeeper mixes the tokens and returns the coats at random. In
how many ways gentlemen will get their coats such that exactly Four of
them get their correct coats.
[5]

d)

Find the coefficient of x 4 y 9 z 3 in the expansion of (2 x 2 + 3 y 3 z )8 .

Q2) a)

b)

[5]

Using combinatorial argument prove the following binomial identities.


[8]
i)

n + 1 n n

= +
.
r r r 1

ii)

2n
n 2
= 2 + n .
2
2

Find the number of integer valued solutions of the following equation.


x1 + x2 + x3 = 34

x1 > 4, x2 3, x3 2 .

[7]
P.T.O.

Q3) a)

Determine the Discrete Numeric Function corresponding to generating


function

b)

Q4) a)

b)

1
.
5 6z + z 2

Solve the following Recurrence relation


an 5an 1 + 6an 2 = 2.3n .

[7]

Define the following terms:

[5]

i)

Probability Mass Function.

ii)

Conditional probability.

iii)

Moment Generating function.

iv)

Conditional density function.

The following is the cumulative distribution function of a discrete random


variable X.
[5]
X
F(Xi)

c)

[8]

0.1

0.25

0.6

0.75

0.9

i)

Find probability distribution.

ii)

Find P(x >4)

iii)

Find P(x = 4 | x > 2)

Following table represent joint probability distribution function of (X, Y)


[5]
Y

2k

3k

2k

3k

4k

4k

5k

6k

[4975]-25

Find:

d)

Q5) a)
b)

i)

ii)

Marginal Distribution of X and Y,

iii)

Conditional distribution of X given Y = 2

iv)

Conditional distribution of Y given X = 1

Prove that poisson distribution is the limiting form of binomial distribution.


[5]
Find MGF and CGF of binomial distribution.

Calculate the standard deviation of continuous random variable x if the


frequency function f (x) has the form
3 + 2x
, for 2 x 4

f ( x) = 18

0, otherwise

Q6) a)

[8]

[7]

Suppose two dimensional continuous r.v(X, Y) has a joint P.D.F


6 x 2 y,for 0 < x < 1, 0 < y < 1
f ( x, y ) =
0, otherwise

[8]

Find:

b)

i)

P(0 < x < 3 / 4,1 / 3 < y < 2) .

ii)

P( x + y < 1), p ( x > y ) .

iii)

P( x < 1| y < 2) .

Assume the mean height of solders to be 68.22 inches with a variance of


10.8 inches. How many soldiers in a regiment of 1000 would you expect
to be
[7]
i)

Over 6 feet tall.

ii)

Below 5.5 feet.

[4975]-25

Total No. of Questions : 7]

P1813

SEAT No. :
[Total No. of Pages : 2

[4975]-31
M.C.A. (Management Faculty)
IT-31 : WEB SUPPORT TECHNOLOGIES
(2008 Pattern) (Semester - III)

Time : 3 Hours]
Instructions to the candidates:
1) Question 1 is compulsory.
2) Attempt any 5 from remaining.
3) Figures to the right indicate full marks.

Q1) a)

b)

[Max. Marks :70

Design HTML form to accept conference registration details from


participants. Assume (First name, Middle Name, Last name, Age, Gender,
Contact No, Email-Id, DOB, Education, profession, etc) fields and
validate any five fields using Java Script.
[10]
Explain Error Handling in VB Script with examples.

Q2) What is CSS? Explain different types of CSS with examples.

Q3) a)
b)

Q4) a)
b)

Q5) a)
b)

[10]

[10]

Explain client and server side image mapping with example.

[5]

Explain XML Namespace with example.

[5]

Explain Event handling in JavaScript with examples.

[5]

History and Location Object in DOM.

[5]

Explain Global.asa with examples.

[5]

Explain Request and Response Object with examples.

[5]
P.T.O.

Q6) Write XML to maintain International Journal details like volume, issue, ISSN,
Title, Publisher, subscription-rate, etc and convert XML into HTML format
with header and footer.
[10]

Q7) Write short note on (any 2):

[10]

a)

String and Date Object in JavaScript.

b)

DOM Parser.

c)

SOAP.

[4975]-31

Total No. of Questions : 8]

SEAT No. :

P1814

[Total No. of Pages : 2

[4975]-32
M.C.A. (Management Faculty)
IT-32 : DATA COMMUNICATION AND COMPUTER NETWORKS
(2008 Pattern) (Semester - III)

Time : 3 Hours]
Instructions to the candidates:
1) Question 1 is compulsory.
2) Attempt any five questions from remaining.

Q1) a)

Justify with true or false (not more than 60 words):

[Max. Marks :70

[10]

i)

SMTP is a pull protocol.

ii)

A single IP address is used for multiple subnetworks in a


organization.

iii)

The failure of a single repeater in Ring topology disables the entire


network.

iv)

In virtual circuit packets may arrive out of sequence at the exit


point.

v)

A connection-oriented protocol provides fast, but unreliable service.

b)

What are the options of DHCP and describe the purposes? Explain DHCP
states and procedure.
[10]

Q2) a)

What is the correct subnet ID for the IP address 202.127.19.94 with a


subnet mask of 255.255.255.248?
[5]

b)

What is the maximum number of hosts available on a class-B address


with a subnet mask of 255.255.255.192?
[5]

P.T.O.

Q3) What are the differences between fully qualified and partially qualified
domain names? Describe the two types of DNS message formats.
[6+4]

Q4) Define VPN. What are the functions of VPN Server and VPN gateway? What
are the different protocol used to implement VPN? Explain any one.
[2+4+4]

Q5) What is the purpose of HTTP? List and describe features of HTTP. How
HTTP operates. Describe persistance and nonpersistent connection.
[2+3+3+2]

Q6) a)
b)

What are advantages and disadvantages of Bus, Ring and Star topologies.
[6]
List the advantages of UDP over TCP.

[4]

Q7) Explain Message, Segment, Packet, Frame and bits at different layers of OSI
model.
[10]

Q8) Write short notes (Any Two):


a)

Vsat.

b)

Router.

c)

Wireless LAN.

d)

MIME.

e)

ATM Traffic Management.

[5+5]

[4975]-32

Total No. of Questions : 8]

SEAT No. :

P1815

[Total No. of Pages : 3

[4975]-33
M.C.A. (Management Faculty)
IT-33 : OBJECT ORIENTED PROGRAMMING USING C++
(2008 Pattern) (Semester - III)

Time : 3 Hours]
Instructions to the candidates:
1) Q. 1 is compulsory.
2) Solve any six from Q. 2 to Q. 8.
3) Figures to right indicate full marks.

[Max. Marks :70

Q1) Explain output of the following programa)

[10]

# include <iostream.h>
# define square(x) x*x
void main ( )
{
int a = 5, b = 4, c;
c = square (a + b);
Cout << endl << c "<< c,
}

b)

Void main ( )
{
Char s[ ] = STUDENT;
int i;
For(i = 0; s[i]; i++)
Cout <<endl <<s[i++] <<*(s+i++) << * (i+s) << i[s];
}

P.T.O.

c)

Void main ( )
{
int x = 85;
Float F = 15.75;
Cout <<endl<<hex<<x<<endl<<dec<<x;
Cout<<endl<<setw(8)<<setfill (*) <<F;
}

d)

Void main ( )
{
int a = 65;
int *p = &a;
Cout << Char (*p);
(char *) p++;
Cout << char (*p);
}

e)

namespace abc
{
int a = 10;
}
Void main ( )
{
int a = 50;
int b = 60;
Cout << endl << a << a;
Using namespace abc;
Cout << endl << a <<a;
Cout << endl << b <<b;
}

[4975]-33

Q2) a)
b)
Q3) a)
b)
Q4) a)
b)

Explain inline function with example.

[5]

Explain with example-dynamic constructor.

[5]

Write a program to overload >> operator.

[5]

Explain how ambiguity is handled in multiple inheritance.

[5]

What is virtual function. Explain with suitable example.

[5]

Explain following functions.

[5]

i)

read ( )

ii)

write ( )

Q5) Write a program using C++ that accept file name from command line and
replace occurance of every vowel with # and store it in another file. Also
display number of replacement made.
[10]
Q6) Write a program using C++ that convert data from one class type to another
class type.
[10]
Q7) a)
b)

Write a function template large ( ) that find largest of three variables. [5]
What is exception. How exception is handled in C++.

Q8) Write short note on the following (Any Two):


a)

Container in STL.

b)

Nested Namespace.

c)

New style cast.

[4975]-33

[5]
[10]

Total No. of Questions : 8]

SEAT No. :

P1816

[Total No. of Pages : 1

[4975]-34
M.C.A. (Management Faculty)
IT-34 : ADVANCED DATABASE MANAGEMENT SYSTEMS
(2008 Pattern) (Semester - III)

Time : 3 Hours]

[Max. Marks :70

Instructions to the candidates:


1)

Question No. 8 is compulsory.

2)

Attempt any 6 from the remaining.

Q1) Explain Intra-operational and Inter-operational parallelism.

[10]

Q2) Differentiate between: OODBMS, ORDBMS, RDBMS.

[10]

Q3) Explain Commit Protocols in distributed DBMS.

[10]

Q4) What is data warehouse? Explain datawarehouse architecture.

[10]

Q5) Discuss the Apriori Algorithm in detail.

[10]

Q6) What is XML? Explain difference between XML & HTML.

[10]

Q7) Discuss Machine learning in detail.

[10]

Q8) Write short note (Any Two):


a)

Object & OID.

b)

Mobile database.

c)

Outlier Analysis.

d)

OLAP.

[25=10]

Total No. of Questions : 7]

SEAT No. :

P1817

[Total No. of Pages : 1

[4975]-35

M.C.A. (Management Faculty) (Semester - III)


BM- 31 : 305- MANAGEMENT SUPPORT SYSTEM & IS SECURITY

(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:1) Q.1 and Q.7 are compulsory.
2) Attempt any 4 from Q. 2 to Q.6.
3) Figures to right indicate full marks.

[Max. Marks : 70

Q1) Define DSS. Explain various components of DSS.

[10]

Q2) What is HERBERT SIMON MODEL of decision making? Explain in detail.[10]


Q3) Define Expert System and explain it in detial with diagram.

[10]

Q4) Define MIS and explain structure of MIS based o management function.[10]
Q5) 'Simulation is imitation of Reality' justfy.

[10]

Q6) Explain in detail about the security aspects of information systems.

[10]

Q7) Write short notes (on any four) :


a) Static and Dynamic Models.
b)
c)
d)

Characteristics of EIS.
EIS (Executive Information Systems).
IS Audting.

e)
f)

Value of Information.
Sensitivity Analysis.

{{{

[4 5 = 20]

[4975]-35

Total No. of Questions : 8]

SEAT No. :

P1818

[Total No. of Pages : 2

[4975]-41

M.C.A. (Management Faculty)


IT - 41 : JAVA PROGRAMMING (Semester - IV)
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:1) Question No. 1 and Q. 8 are compulsory.
2) Solve any five from the remaining.

Q1) Answer the following questions :


a)

What is interface?

b)

Explain checked and Unchecked exceptions.

c)

Serializable Interface

d)

What is URL?

e)

What is Key Listener?

[Max. Marks : 70

[10]

Q2) Write client socket program to send the encrypted file content to server along
with key. Also write server socket program to decrypt content of file & display.
[10]

Q3) Write JDBC application to display list of blood doners of a specific blood
group. Accept blood group dynamically (assume suitable table structure)[10]

Q4) Write RMI application to display largest amongst three nos. Accept nos.
from client.
[10]

Q5) Design GUI based Java application to set foreground & background color of
text based on selection of colors in the list.
[10]
P.T.O.

Q6) Explain Thread file cycle with example.

[10]

Q7) What is Random Access File? Explain with suitable example.

[10]

Q8) Write short notes on : (any two)

[10]

a)

Event delegation model.

b)

Garbage collector

c)

Java beans.

{{{

[4975]-41

Total No. of Questions : 6]

SEAT No. :

P1819

[Total No. of Pages : 2

[4975]-42

M.C.A. (Semester - IV) (Management Faculty)


IT - 42 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:1) Question No. 1 and Q. 6 are compulsory.
2) Solve any three from the remaining.

[Max. Marks : 70

Q1) Prepare detail test plan for Electricity Bill System having following features :
[20]
a)

Ensure that minimum amount criteria should be matched separately for


rural and urban area.

b)

Ensure charges per unit meet the criteria based on high and low
consumption.

c)

Ensure dates like bill period, bill generation and due date are as per the
rule.

Q2) What is functional testing? How you can perform it using equivalence
partitioning, BVA and cause - effect graphing?
[10]

Q3) Differentiate between following :


a)

Stress Testing Vs. Load Testing.

b)

Functional Testing Vs. Non Functional Testing.

[10]

Q4) Define need of Review and Explain types of review with an example.

[10]

Q5) Describe levels of testing in detail with suitable example.

[10]
P.T.O.

Q6) Write short notes on : (any Four)

[20]

a)

Six - Sigma

b)

Clean Room Software Development

c)

Cyclometric Complexity

d)

CAST

e)

Software Quality Metrics

{{{

[4975]-42

Total No. of Questions : 7]

SEAT No. :

P1820

[Total No. of Pages : 2

[4975]-43
M.C.A. (Semester - IV) (Management Faculty)
IT - 43 : 403 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates:1) Q. 1 is compulsory.


2) Solve any five from remaining.
3) Mention assumptions made for solving case study.

Q1) The Management has decided to develop on-line Banking System with
following functionalities.
a)

Opening of account.

b)

Deposit / withdrawl

c)

Fixed deposit Facility

d)

Loan Sanctioning

Draw the following diagrams for above case :


i)

Use case diagram

[10]

ii)

Class diagram

[10]

Q2) Explain unified Approach with proper diagram.

[10]

Q3) Draw the state chart diagram for fully automated washing machine.

[10]

Q4) Explain object oriented Software Engineering by Ivar Jacobson.

[10]
P.T.O.

Q5) Differentiate between OOAD and SSAD.

[10]

Q6) What is design refinement? Explain extensibility and reusability in detail.[10]

Q7) Write short notes on : (any two)

[10]

a)

User Interface Layer

b)

Types of patterns

c)

Guidelines for test plan

d)

Use case description document

{{{

[4975]-43

Total No. of Questions : 4]

SEAT No. :

P1821

[Total No. of Pages : 4

[4975]-44

M.C.A. (Management Faculty) (Semester - IV)


M T- 41 : OPTIMIZATION TECHNIQUES
(2008 Pattern)
Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:1) Question No. 1 is compulsory.
2) Solve any two questions from question Nos. 2, 3 and 4.
3) Use of Scientific calculator and statistical tables are allowed.
4) Figures to the right indicate full marks.

Q1) a)

A small project is composed of 7activities whose estimated are listed as


follows :
[9]
Activity

Time Estimate (Weeks)


Optimistic

b)

Likely

Pessimistic

1-2

1-3

1-4

2-5

3-5

14

4-6

5-6

15

Find :
i) Draw the project network
ii) Find the expected duration and variance
iii) If the project due date is 19 weeks, what is the probability of meeting
the due date?
Find the optimum integer solution to the following linear programming
problem using Gomorys cutting method
[9]
Zmax = 200x1 + 300x2
Subjects to :
2x1 + 4x2 b 17
3x1 + 3x2 b 15
x1, x2 p 0
P.T.O.

c)

A television repairman finds the time spent on his jobs has an exponential
distribution with a mean of 20 minutes. If he repairs set in the order in
which they came in and if the arrival of set follows a Poisson distribution
approximately with an average rate of 10 per 8-hour day.
Find :

d)

i)

TV repairmans idle time each day.

ii)

Expected waiting time for a TV in the shop.

[6]

Solve the problem of job Assignment to minimize the cost :

[6]

Jobs

Employees

Q2) a)

E1

E2

E3

E4

E5

J1

10

J2

J3

12

J4

J5

Solve the following transportation problem for maximization profit. [9]

Plants

Warehouses

Demand

[4975]-44

Supply

12

18

25

200

10

18

500

14

11

20

300

180

320

100

400

b)

The fol1owing table gives the running costs per year and resale values of
certain equipment whose purchase price is Rs. 65000. At what year is
the replacement due optimal :
[5]
Year
1
2
3
4
5
6
7
8
Running
cost Rs. 14000 15000 17000 20000 24000 28000 33000 39000
Resale
value Rs. 40000 30000 22000 17000 13000 10000 10000 10000

c)

Q3) a)

Define the following terms (any 3) :


i)

CPM

ii)

EOQ

iii)

SET UP COST

iv)

Various Floats for Activities

[6]

Solve the following Linear Programming Problem by two phase method:


[9]
Min : Z = x1 +x2
Subject to :
2x1 + x2 p 4
x1 + 7x2 p 7
x1, x2 p 0
And xl, x2 p 0

b)

Explain Characteristics of a Queuing System in detail?

c)

The demand for a particular commodity 15,000 units per year, holding
cost per year per unit is Rs. 1 .20 and cost of one procurement is Rs.
300. No shortages allowed and replacement is instantaneous.
Find :
i)

EOQ

ii)

Order Interval

iii)

Total Cost

[4975]-44

[6]

[5]

Q4) a)

A small project has seven activities. The relevant data is given below : [9]
Normal

Crash

Activity
Time Cost Time Cost
1-2
3
300
2
450
2-3
3
75
3
75
2-4
5
200
3
300
2-5
4
120
4
120
3-4
4
100
1
190
4-6
3
90
2
130
5-6
3
60
1
110
Indirect cost for the project Rs. 300 per day.
Find :

b)

i)

Draw the network.

ii)

Calculate normal duration of the project and normal cost.

iii)

Find optimal duration with minimal cost.

Write down the dual of the following primal LP problem :

[6]

Max : Z = 3x1 + 5x2 + 7x3


Subject to :
x1 +x2 +3x3 b 10
4x1 x2+ 2x3 p 15
Where x1, x2 p 0, x3 is unresricted to sign
c)

Express the following transportation problem as LPP :


Warehouse
Factory

W1

W2

W3

W4

F1

21

16

25

13

11

F2

17

18

14

23

13

F3

32

27

18

41

19

Requirement

10

12

15

{{{
[4975]-44

Availability

[5]

Total No. of Questions : 7]

SEAT No. :

P1822

[Total No. of Pages : 2

[4975]-45

M.C.A. (Management Faculty)


BME - 1 : MIS FRAMEWORK & IMPLEMENTATION
(Elective - 411) (2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:1) Q.1 and Q.7 are compulsory.
2) Attempt any 4 from remaining questions.
3) Figures to right indicate full marks.

[Max. Marks : 70

Q1) With suitable example, elaborate the importance of socio-economic


environment on IT based applications.
[15]

Q2) "Contents and format of information varies depending upon the hierarchy of
end users." - Comment.
[10]

Q3) What are critical success factors for successful implementation of MIS?
Explain the role of top management in the above context.
[10]

Q4) Explain IT is no more in support role but it has taken steering position in
global business scenario. Explain this statement with reference to marketing
function.
[10]

Q5) Explain DSS architecture with appropriate diagram and its role in the
organization.
[10]

Q6) Elaborate with suitable examples, how information technology is improving


the way customer relationship are maintained.
[10]

P.T.O.

Q7) Write short notes on (any 3)

[15]

a)

Expert systems

b)

GDSS

c)

IT policy

d)

Cost-benefit analysis of IT assets.

{{{

[4975]-45

Total No. of Questions : 4]

SEAT No. :

P1823

[Total No. of Pages : 3

[4975]-46

M.C.A. (Management Faculty) (Semester - IV)


FOUNDATION OF DECISION PROCESSES
(2008 Pattern)
Time : 3 Hours]
Instructions to the candidates:1) Q.No. 1 is compulsory.
2) Solve any two questions from remaining.
3) Figures to the right indicate full marks.
4) Use of electronic calculator is allowed.

Q1) a)

[Max. Marks : 70

A newspaper boy is thinking of selling a special onetime edition of sports


magazine to his regular newspaper customers. He believes that he can
sell between 9 to 12 copies. The magazine can be purchased at Rs.8
each and can be sold for Rs. 12. Magazine that not sold can be return to
the publisher for a refund at 50%. Determine the best strategy for the
following method.
[10]
i)

Maximax criteria

ii)

Maximin criteria

iii)

Laplace criteria

iv)

Hurwicz criteria with coefficient of optimality is 0.6

b)

Explain the elementary queuing system in detail.

c)

A trader of boat has estimated the following distribution of demand for a


particular kind of a boat :
[10]
No. of demand
Probability

[10]

0.05

0.20

0.35

0.25

0.15

Each boat costs him Rs. 7000 and he sells them for Rs. 10000 each.
Boats that are left unsold at the end of the season must be disposed of at
Rs. 6000 each. How many boats should be stocked so as to maximize
his expected profit?
P.T.O.

Q2) a)

Explain the characteristics of Markov Chain. Also describe the applications


of Markov Analysis in several areas.
[10]

b)

The rate of arrival of customers at a Public telephone booth follows a


Poisson distribution with an average time of 10 minutes between one
customer and the next. The duration of a phone call is assumed to follow
exponential distribution with a mean time of 3 minutes.
[10]

Q3) a)

i)

What is the probability that a person arriving at the booth will have
to wait?

ii)

What is the average length of the queue.

iii)

The MTNL will install another booth when it is convinced that the
customer would have to wait for at least 3 minutes for their turn to
make a call. How much should be the flow of the customers in
order to justify a 2nd booth.

Two organizations are competing for business under the conditions so


that one firms gain is another firms loss. The pay-off matrix is given
below :
[10]
Org B
Nil

Moderate

Heavy

Advertising

Advertising

Advertising

10

13

12

15

16

14

10

Nil
Advertising
Org A

Moderate
Advertising
Heavy
Advertising

Suggest the optimum strategies for the two organizations.


[4975]-46

b)

Suppose that new Razor blades were introduced in the market by three
companies at the same time. When they introduced, each company had
equal share of the number, but during the first year some changes took
place which are shown by the following transition matrix.
[10]
A

0.9

0.03

0.07

0.1

0.7

0.2

0.1

0.1

0.8

Assume that no changes in the buying habits of the customer occur,

Q4) a)

i)

What is the market share of three the companies at the end of first
year and second year?

ii)

What are the long run market shares of the companies?

The company manufactures around 30 items per day. The sale of these
items depends upon the demand which has following probability
distribution.
[10]
Sales
Probability

27

28

29

30

31

32

0.10

0.15

0.20

0.35

0.15

0.05

The production cost and selling prices of each unit are Rs.40 and Rs.50
respectively. Any unsold product is to be disposed at a loss of Rs.15
per unit. There is a penalty of Rs.5 per unit if the demand is not meet.
Using the following random numbers estimate total profit or loss for a
company for next 10 days.
Random Nos.

10

99

65 75

95

1 79

11

16 20

If company decides to produce 29 items per day, what is the advantage


/ disadvantage to the Company?
b)

Explain axioms of utility in detail.

{{{
[4975]-46

[10]

Total No. of Questions : 6]

SEAT No. :

P1824

[Total No. of Pages : 1

[4975]-47

M.C.A. (Management Faculty) (Semester - IV)

BME - 3 : INFORMATION SYSTEM AUDIT AND GOVERNANCE

(2008 Pattern) (Elective) (New)

Time : 3 Hours]
Instructions to the candidates:1) Question No. 1 and Q. 6 are compulsory.
2) Solve any three from Q.2 to Q. 5.

[Max. Marks : 70

Q1) As being an external auditor, perform the auditing of an outsourcing firm


XYZ, involved in outsourcing hardware and software services to clients situated
in distant locations. Prepare an audit report covering the auditing objective
along with the procurement of hardware, software and controls related to the
logical and physical security. List down major evidences with their relevancy
to the auditing objective.
[20]
Q2) What is BCP? Explain the process of BCP along with BCP architecture in
detail.
[10]
Q3) Explain ISACA standards.

[10]

Q4) Describe in detail the various steps involved in IS Auditing.

[10]

Q5) What is the need of evidences? Explain any two evidence collection techniques
in detail.
[10]
Q6) Write short notes on (any four) :
a) Validation controls
b)
c)

Auditing the long term and short term plan


IT Crimes

d)
e)

Audit Charter
Network Controls

{{{

[4 5 = 20]

Total No. of Questions : 7]

SEAT No. :

P1825

[Total No. of Pages : 2

[4975]-48
M.C.A. (Management Faculty) (Semester - IV)
BM E - 4 : COLLABORATIVE MANAGEMENT (Elective)
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates:1) Attempt any five questions.


2) Support your answers with relevant examples.
3) All the questions carry equal marks.

Q1) a)
b)

Describe BCG matrix.


Explain GE Nine Cell model. What is the advantage of GE Nine Cell
over BCG matrix?

Q2) Leadership style, corporate culture, values and ethics play a crucial role in
effective implementation strategy. Comment.

Q3) Explain the Venture Capital in brief.

Q4) Explain Corporate Planning and Budgeting in brief.

Q5) A value chain is a chain of activities for a firm operating in a specific industry.
Explain the concept and discuss its competitive advantages.

Q6) Elaborate Porters five forces framework with the help of suitable examples.
P.T.O.

Q7) Write short notes on any two :


a)

GAP analysis.

b)

Mckinseys 7S frame work.

c)

Joint Ventures.

d)

Managerial competencies.

e)

Outsourcing

{{{

[4975]-48

Total No. of Questions : 7]

SEAT No. :

P1826

[Total No. of Pages : 2

[4975]-49
M.C.A. (Management Faculty) (Semester - IV)
DECISION SUPPORT SYSTEM
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates:1) Q.1 and Q.7 are compulsory.


2) Solve any four questions out of remaining.

Q1) Give the schematic views of DSS and explain each of the Components of
DSS in brief.
[10]

Q2) What are the major benefits of integrating EIS and DSS? What problem Can
occur?
[10]

Q3) What are the technology levels and tools used in DSS development.

[10]

Q4) Explain importance of Artificial Intelligence and expert system in DSS. [10]

Q5) Explain the traditional system development life cycle. Why is prototyping is
considered to be a suitable process for the development of DSS?
[10]

Q6) What is GIS? Explain its role in Banks or with any other real time example.[10]

P.T.O.

Q7) Write short notes on any Four :

[20]

a)

Data visualization

b)

Knowledge Based expert system.

c)

GIS and virtual reality.

d)

Intelligence DSS.

e)

Data warehousing

f)

EIS

{{{

[4975]-49

Total No. of Questions : 6]

P1827

SEAT No. :
[Total No. of Pages : 2

[4975]-50

M.C.A. (Management Faculty) (Semester - IV)


BME - 6 : ENTERPRISE RESOURCE MANAGEMENT
(Elective - 416) (2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Q.No. 1 & Q.No. 6 is compulsory.

2)

Attempt any THREE from Q.No. 2 to Q.No. 5.

3)

Figures to right indicate full marks.

Q1) As per Govt. Of India Aadhar card is compulsory for every citizen of India
for performing banks transaction, gas cylinder booking, passport, etc. as it
serves the address proof & unique number of identity. For getting Aadhar
card everyone has to register their name in to the Aadhar centers in coming
six months. In such small time span & few aadhar card centers the candidates
are find difficulty to register their name for Aadhar card also it take more
time to deliver Aadhar card to individuals so government of India has
decide to implement ERP to integrate process of registration, Printing &
its delivery of cards. So discuss the modules & sub-modules suitable for
Aadhar card registration & delivery. Discuss the process of ERP
implementation.
[20]
Q2) What is ERP? Explain need of ERP in an organization.

[10]

Q3) Is it mandatory for an organization to purchase an ERP package which is


available in market? Discuss in brief when company can go purchase
readymade ERP package or make their own ERP modules suitable for
their organization.
[10]
Q4) List & explain various stages involved in ERP implementation.

[10]
P.T.O.

Q5) Explain post- implementation & evaluation of ERP.

[10]

Q6) Write short notes on (any four) :

[20]

a) DSS
b) Benefits of integration
c) Data warehousing
d) Going live
e) ERP vendors

zzz

[4975]-50

Total No. of Questions : 7]

P1828

SEAT No. :
[Total No. of Pages : 2

[4975]-51

M.C.A. (Management Faculty) (Semester - V)


IT - 51 : HUMAN COMPUTER INTERFACE
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Question No. 1 is compulsory.

2)

Answer any five from the Remaining.

3)

Figure to right hand indicate full marks.

Q1) Answer any four :

[4 5 = 20]

a) Explain the different stages of LUCID.


b) Explain the concept of Image Browsing.
c) Explain OAI model for website design.
d) List and explain the guidelines for data entry & data display.
e) What is information vizuatization, how it is different from scientific
information.
Q2) State & explain the various Advance filtering techniques.

[10]

Q3) Explain Normans seven stages of action Models. Also explain keystroke
model.
[10]
Q4) List & Explain the various forms of synchronous and asynchronous
interaction.
[10]

P.T.O.

Q5) Explain rules that govern use of color for effective interface design. Also
list & explain different error message guidelines in detail.
[10]
Q6) Explain in details the display technologies. Also the different types of
display technologies.
[10]
Q7) Write short Notes on any two of the following :
a) System Engineering
b) Non anthromorphic design
c) Types of keyboards

zzz

[4975]-51

[10]

Total No. of Questions : 7]

SEAT No. :

P1829

[Total No. of Pages : 2

[4975]-52

M.C.A. (Management Faculty) (Semester - V)


IT - 52 : SOFTWARE IT PROJECT MANAGEMENT
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Questions No. 1 is compulsory.

2)

Solve any five questions from remaining.

3)

Wherever necessary, state assumptions give examples and draw diagrams.

Q1) a) What are different Software project Cost Estimation methods used by
software industry? Explain any two methods in detail.
[10]
b) Draw a network diagram from the given information.

[10]

i)

Find start Time, End time and Critical Path.

ii)

If activity 4-5 crashed by 2 weeks, draw network diagram and


find out critical path & shortest path.

iii) Calculate value of Total, Free & Independent float


Activity

Duration in Weeks

1-2

1-3

2-3

2-4

2-5

3-4

3-6

4-5

4-6

5-7

6-7

3
P.T.O.

Q2) What is risk management? Explain the different stages involved in risk
management.
[10]
Q3) What is SPM ? Explain in detail various phases of PMLC.

[10]

Q4) Describe role of user in project management.

[10]

Q5) Explain Software Team structure and Discuss about the team
communication.
[10]
Q6) What is software configuration management? Explain in detail the various
stages of configuration management.
[10]
Q7) Write Short Notes on the following (Any Two) :
a) WBS
b) Version Control
c) Configuration Management Tools
d) Ms-Project

zzz

[4975]-52

[10]

Total No. of Questions : 7]

P1830

SEAT No. :
[Total No. of Pages : 2

[4975]-53

M.C.A. (Management Faculty) (Semester - V)


IT - 53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Question 1 and Question 7 are compulsory.

2)

Attempt any four questions from remaining.

Q1) Government of Maharashtra wants to launch E-Learning Course on Office


Automation. The course duration will be two months. Course contents
will be taught through Video Conferencing. As a Learning content
management system steering committee head, suggest a suitable LCMS
system implementation Strategy.
[15]
Q2) What is BPO? Explain different BPO models along with types of services
provided by BPO industry.
[10]
Q3) What is E-Banking? Explain various security techniques in E-Banking.[10]
Q4) What is E-Learning? Explain various models of e-learning.

[10]

Q5) What is E-Governance? Explain various strategies and tactics for


implementation of E-Governance.
[10]
Q6) Explain Knowledge Management and Knowledge Management System
Architecture.
[10]
P.T.O.

Q7) Write Short notes on (Any Three) :


a) SCM
b) GPS
c) DNA
d) Palm Devices
e) Crop Management

zzz

[4975]-53

[15]

Total No. of Questions : 7]

SEAT No. :

P1831

[Total No. of Pages : 2

[4975]-54

M.C.A. (Management Faculty) (Semester - V)


IT - 55 : ADVANCED INTERNET TECHNOLOGY
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Questions 1 and 7 are compulsory.

2)

Attempt any four questions from remaining.

Q1) Explain with example need of security for E-Commerce. What are steps
involved in digital signature? Also explain Encryption with suitable
example.
[15]
Q2) Write Servlet program to accept online registration details for beauty context
(assume suitable table structure).
[10]
Q3) Write JSP code to generate companywise selected student list for placement
cell of a college. Display the report in proper format.
[10]
Q4) Explain file handling in perl with suitable example.

[10]

Q5) Write a PHP code for online shopping of laptop accessories using sessions
to display list of items added in shopping cart.
[10]
Q6) Explain following functions :
a)
b)
c)
d)
e)

[10]

Mysgl_Connect ( )
Mysgl_Query ( )
Mysgl_Close ( )
Mysgl_Select_db ( )
Mysgl_fetch_array ( )
P.T.O.

Q7) Write a short notes (any three) :


a)
b)
c)
d)

[15]

JSP default objects


Cerl Architecture
Email sending in PHP
Arrays in perl

zzz

[4975]-54

Total No. of Questions : 6]

SEAT No. :

P1832

[Total No. of Pages : 1

[4975]-55

M.C.A. (Management Faculty) (Semester - V)


ITE - 1 Elective : CYBER LAW AND IT SECURITY
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Q. No. 1 and Q.6 are compulsory.

2)

Solve any Three from remaining.

Q1) a) Explain cryptography in detail. Explain role of public key and private
key in cryptography.
[10]
b) Explain provisions in IT Act 2000.
[10]
Q2) Explain legal recognition of electronic record and digital signature. [10]
Q3) What is E-Governance? Explain applications of E-Governance.

[10]

Q4) Explain jurisdiction in Trademark Disputes.

[10]

Q5) What are the powers of adjudicating officer to impose penalty?

[10]

Q6) Write short notes (any Four)


a)
b)
c)
d)
e)
f)

[4 5 = 20]

RSA Algorithm
Powers of controllers
Domain names
Framing
Spamming
Appellate Tribunal

zzz

Total No. of Questions : 7]

P1833

SEAT No. :
[Total No. of Pages : 1

[4975]-56

M.C.A. (Management Faculty) (Semester - V)


(Elective - ITE - 1) : PROGRAMMING LANGUAGE PARADIGMS
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Q. 7 is compulsory.

2)

Attempt any five from remaining.

Q1) Explain layers of virtual computer?

[10]

Q2) Explain with suitable construct the subprogram call and return structure?[10]
Q3) Write in detail about syntactic element of language?

[10]

Q4) Discuss the process of program interpretation of execution?

[10]

Q5) Describe in detail static and heap storage management?

[10]

Q6) Explain attributes of good language?

[10]

Q7) Short Notes (any four) :

[20]

a) Binding Time classes


b) Conditional & Iterative statements
c) Firmware Computer
d) parsing Algorithm.
e) Features of CPP programming

zzz

Total No. of Questions : 7]

P1834

SEAT No. :
[Total No. of Pages : 2

[4975]-57

M.C.A. (Management Faculty) (Semester - V)


ITE - 3 : ADVANCED UNIX (Elective)
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Question 1 and Question 7 are compulsory.

2)

Solve any four from remaining.

3)

Draw Diagrams wherever necessary.

Q1) Explain the following system caus :

[5 2 = 10]

a) dup( )
b) link( )
c) chdir ( )
d) alarm ( )
e) stat ( )
Q2) What is process? Explain different ways in which a process can be
terminated.
[10]
Q3) What are signals? How are they generated? Explain signal Handing in detail.
[10]
Q4) Explain pipes. Write a program to create pipe from parent to child process
and send data throught the pipe.
[10]

P.T.O.

Q5) What is race condition? How can it be avided.

[10]

Q6) Explain wait() and waitpid() function in detail.

[10]

Q7) Write short notes on (any four)

[4 5 = 20]

a) Record locking
b) Session and process groups
c) File types
d) Buffering
e) Environment variable

zzz

[4975]-57

Total No. of Questions : 7]

P1835

SEAT No. :
[Total No. of Pages : 2

[4975]-58

M.C.A. (Management Faculty) (Semester - V)


ITE - 4 : MOBILE WIRELESS COMPUTING (Elective)
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Questions 1 and Question 7 are compulsory.

2)

Attempt any four from remaining.

Q1) a) Define following terms and write their functions (any Four) :
i)

VLR

ii)

IMEI

iii) BSS

iv) MSRN

v)

vi) SPIN

WTP

[10]

b) Explain functions of each layer in WAP Architecture.

[10]

Q2) What is handoff? How do you perform handoff during roaming?

[10]

Q3) What is snooping? Why it is used in TCP?

[10]

Q4) Explain Framing and Logical Channels in GSM.

[10]

Q5) Explain mobile IP addressing in detail.

[10]

Q6) Explain databases and their functions in GSM Network.

[10]

P.T.O.

Q7) Write Short Notes (any FOUR) :

[4 5 = 20]

a) Mobile Agents
b) DHCP
c) SIP
d) RTS-CTS
e) MAC
f) Frequency Hopping

zzz

[4975]-58

Total No. of Questions : 7]

P1836

SEAT No. :
[Total No. of Pages : 2

[4975]-59

M.C.A. (Management Faculty) (Semester - V)


ITE - 5 : DISTRIBUTED DATABASE MANAGEMENT SYSTEM
(2008 Pattern)
Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates :


1)

Q. 7 is compulsory. Solve any 5 from remaining.

2)

Figures to the right indicate full marks.

3)

Give suitable examples if required.

4)

Whenever necessary state assumptions.

Q1) Discuss the detection and resolution strategies for inconsistencies in


DDBMS.
[10]
Q2) What are the different types of fragmentation? Explain with suitable
examples.
[10]
Q3) Explain Characterization of query processors in distributed databases. [10]
Q4) Discuss in detail the problem areas in DDBMS environment.

[10]

Q5) Explain various distribution design issues.

[10]

Q6) Explain in detail locking protocols in distributed database management


systems.
[10]

P.T.O.

Q7) Write short notes on any four :

[4 5 = 20]

a) Deadlock in DDBMS
b) Distributed Data Administrator
c) Object base transaction models
d) Log for database recovery
e) DOM Architectures

zzz

[4975]-59

[4080] 304

*4080304*

MCA (Semester III) Management Faculty Examination, 2011


IT 34 : ADVANCED DATABASE MANAGEMENT SYSTEMS (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any 3 from the remaining.
1. a) Compare RDBMS, OODBMS and ORDBMS.

10

b) What do you understand by 2 PC protocol ? Explain with the help of example. 10


2. How is recovery dealt with in DDBMS ?

10

3. Explain Association rules for Data Mining with the help two algorithms.

10

4. Explain Architecture of Data Warehouse in detail.

10

5. What do you mean by Inter-Query and Intra-Query Parallelism ? Explain with example. 10
6. Write short note on (any four) :

(54=20)

a) Mobile databases
b) XML parser
c) Knowledge base system
d) Predictive data mining
e) Homogeneous and heterogenous databases.

B/II/11/3945

[4080] 402

*4080402*

MCA (Semester IV) (Management Faculty) Examination, 2011


IT 42 : SOFTWARE TESTING AND QUALITY ASSURANCE (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three from the remaining.
1. Write a test plan with scope of testing, risks and contingencies, strategy, schedule,
pass/fail criteria for a Railway Reservation System.
20
2. Define Software Reliability. Explain two reliability models.

10

3. Describe Unit Level Testing and Integration Testing in detail with suitable example.

10

4. Differentiate (any two) :

(52=10)

a) Manual Vs. Automatic Testing


b) Static Vs. Dynamic Testing
c) Blackbox Vs. Whitebox Testing
5. Write test cases for testing user name and password in a typical application.
6. Write short notes (any 4) :

10
(45=20)

1) Quality factors
2) Load Testing
3) Code Review
4) Clean Room Software Development
5) Cyclomatic Complexity.

B/II/11/1110

[4080] 405

*4080304*

MCA (Management Faculty) (Semester IV) Examination, 2011


BM-E1 : MIS FRAMEWORK AND IMPLEMENTATION (New)
(Elective) (2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q.No. 1 and 7 are compulsory.


2) Solve any four questions from remaining.
3) Figures to the right indicate full marks.
1. Explain the role played by IT infrastructure in Operational Control and Decision
Support System in an organization.

10

2. How information Technology changing the way Finance Function is performed ? 10


3. Explain the different threats to IT Infrastructure.

10

4. Explain the informational needs of the managers working at different levels of


managerial hierarchy.

10

5. Explain the impact of IT infrastructure on the socio-economic environment of the


organization.
10
6. Define MIS. Explain its features and limitations.

10

7. Write short notes on (any four) :

20

a) Competitive Advantage
b) Group Decision Support System
c) Objectives of good IT policy
d) Critical success factor in implementing IT applications
e) Expert System.

B/II/11/240

[4080] 410

*4080410*

MCA (Semester IV) (Management Faculty) Examination, 2011


BME 6 : ENTERPRISE RESOURCE MANAGEMENT (New)
(2008 Pattern) (Elective)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three questions from 2 to 5.
3) Figures to right indicate full marks.
1. Write in detail report about the manufacturing industry. How the information is
shared by the various department in order to process and generate the various
reports for effective decision making ?
2. a) What is ERP ? Explain various advantages of ERP.
b) How does information system make SCM more efficient ?
3. a) What is MIS ? Explain the various elements of MIS.
b) Discuss in detail architecture of Executive Support Systems (ESS).
4. a) List and explain the various guidelines of ERP implementation.
b) Explain the factors to be considered white selecting ERP package.
5. a) What is GAP analysis ? Discuss.
b) Discuss in detail need of ERP training.
6. Write short note (any four) :
a) ERP market
b) Data mining
c) DSS
d) CRM
e) ERP maintenance.

20
5
5
5
5
5
5
5
5

(54=20)

B/II/11/375

[4080] 502

*4080502*

MCA (Management Faculty) (Semester V) Examination, 2011


IT 52 : SOFTWARE IT PROJECT MANAGEMENT
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. No. 1 and 6 are compulsory.


2) Solve any three from Q. No. 2 to 5.
1. A) What are different Software Project Cost Estimation methods used by software
industry ? Explain any two method in detail.
12
B) Explain difference between chief programming team and Egoless programming
team.

2. Explain IT Infrastructure management.

10

3. Testing is crucial phase in software project. Comment.

10

4. Explain difference between following terms :

10

A) CPM and PERT


B) Version control and Revision control.
5. In recent year, university has computerised its examination system by using various
software application.
You as a software expert needs to find out Risk involved in implementation and
administration.
10
6. Write short note on (any two) :
A) Project Management Tool MS project
B) User role in project management
C) Configuration Management
D) FPA.

20

B/II/11/2645

[4080] 506

*4080506*

MCA (Semester V) (Management Faculty) Examination, 2011


(Elective) ITE 2 : PROGRAMMING LANGUAGE PARADIGMS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and 8 are compulsory.


2) Solve any 4 from the remaining.
1. Explain analysis of source program and synthesis of object program with suitable
block diagram.
15
2. What are the attributes of good programming language ?

10

3. What is Software Simulation ? How a language is actually implemented it ?

10

4. Explain syntactic elements of a programming language.

10

5. Explain binding time classes and its importance in programming language.

10

6. Explain sequence control mechanism between statements with suitable example.

10

7. Explain local data and local referencing environment.

10

8. Write short notes on (any three) :

(35=15)

a) Retention and deletion


b) Scalar data types
c) Direct and Random access files
d) Static Storage Management
e) Features of JAVA.

B/II/11/2115

[4080] 509

*4080509*

MCA (Management Faculty) (Semester V) Examination, 2011


ITE 5 : DISTRIBUTED DATABASE MANAGEMENT SYSTEMS
(2008 Pattern) (Elective)
Time : 3 Hours
Note : 1)
2)
3)
4)
5)

Max. Marks : 70
Full marks are indicated to the right of each question.
Draw suitable diagram when needed.
Give suitable examples if required.
Whenever necessary state assumptions.
Q. 7 is compulsory. Solve any 5 from remaining.

1. Explain object caching, object clustering and objects migration.

10

2. Discuss various concurrency control method in a distributed databases.

10

3. Explain the need for DDBMS and its advantages and disadvantages.

10

4. Explain query optimization, Query Execution and access plan with suitable example.

10

5. Define transaction and explain the properties and states of transaction.

10

6. Explain the following (any 1) :

10

a) Top-Down and Bottom-up approach to the design of data distribution.


b) Homogeneous and Heterogeneous DDBMS.
7. Write short notes (any 4) :

20

1) Mobile database systems


2) Central and distributed databases
3) Distributed deadlocks
4) Distributed database administration
5) Log for database recovery.

B/II/11/480

[4080] 301

*4080301*

MCA (Semester III) (Management Faculty) Examination, 2011


IT 31 : WEB TECHNOLOGY (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 8 are compulsory.


2) Solve any 5 from 2 to 7.
3) Figures to the right indicate full marks.
5

1. a) Explain XML parser.

b) Write DTD attributes types and values with examples.

2. Write Java script program for displaying score board of cricket match with proper
validations (Take suitable fields).
10
3. Write DTD program for online information submission to UID application.
(Take suitable elements).
a) Looking at DTD create XML file and
b) Convert XML file into html format with header and footer.

10

4. Design html form for CAT/SET examination. Insert and display the records with
auto generated application number using ASP.

10

5. What is CSS ? Explain list and margin properties with examples.

10

6. Explain session and cookies with examples.

10

7. a) Explain different events in Java script with examples.


b) Explain error handling in VB script.
8. Write short notes (any 2) :

5
5
10

a) String and Date objects in VB script.


b) IFRAME and META Tag.
c) SOAP.

B/II/11/3775

[4080] 401

*4080401*

MCA (Management Faculty) (Semester IV) Examination, 2011


IT 41 : JAVA PROGRAMMING (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question No. 1 and 8 are compulsory.


ii) Solve any five from question 2 to 7.
10

1. Answer the following questions :


a) What is Applet tag ?
b) Differentiate between abstract and final keywords
c) What is Inet Address ?
d) Explain checked exceptions.
e) Explain Result set Meta Data.
2. Write a JDBC application for complaint registration for home appliances.
(Assume suitable table structure).

10

3. a) Write a Java socket program that runs on client and sends a file name to server.
The program should display appropriate message returned by server.
b) Write a Java socket program that runs on server, accepts file name from client
and checks file exists or not and returns proper message to client.

5
5

4. Write RMI application to count number of vowels from given string.

10

5. Explain Key listener with example.

10

6. Write a program to search for a given word in file. Also display number of
occurrences of that word.

10

7. a) Explain Boxing and Unboxing with example.


b) Explain Thread synchronization.
8. Write short notes on any 2 :
a) Border layout.
b) Garbage collection.
c) Types of Beans.

5
5
10

B/II/11/1105

[4080] 409

*4080409*

MCA (Management Faculty) (Semester IV) Examination, 2011


BME 5 : DECISION SUPPORT SYSTEM (Elective) (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No. 1 and 7 are compulsory.


2) Solve any four from the remaining.
1. Explain prototyping with its advantages and disadvantages. Discuss why prototyping
is used as a methodology for DSS development.
10
2. Discuss the models of ES and DSS integration.

10

3. Explain with the help of examples how data mining can be helpful in identifying
business opportunity to create sustainable competitive advantage.

10

4. Define virtual reality and how it works. Give two examples for virtual reality
applications in business.

10

5. Explain the database organisation and structures used in DSS.

10

6. Define MIS and explain the role of DSS.

10

7. Write short notes on (any 4) :


1) OLAP
2) GIS
3) AI
4) Compare EIS and DSS
5) Supply Chain Management.

(45=20)

B/II/11/565

[4080] 504

*4080504*

MCA (Semester V) (Management Faculty) Examination, 2011


IT 55 : ADVANCED INTERNET TECHNOLOGY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 and 5 are compulsory.


2) Solve any 2 from the remaining questions.
3) Figures to right indicate full marks.
5
5

1. a) Explain Digital signature.


b) Explain CGI Architecture.
2. a) Create a servlet which does online shopping for books having following
functions in it.
Add Items to the shopping cart
Delete Items from shopping cart
Display selected Items.

10
10

b) Explain pattern matching in perl.

3. a) Write a jsp code which adds the student education details in a database through
Java bean. Also display the student details who have secured first class in their
graduation.
10
b) Explain Http Servlet Request and Http Servlet Response with suitable examples.
4. a) Explain JSP Directives and JSP Standard Actions.

10
10

b) Write php code for online journal details submission. If user is already registered
then accept registration number and display his journal details in tabular format.
If new user, then display registration form and store details in table.
10
5. Write short notes on (any 4) :
1) Features of Perl
2) E-cash
3) Servlet Life Cycle
4) Arrays in PHP
5) Http session.

20

B/II/11/2680

[4079] 208

*4079208*

M.M.S./M.B.S. (Semester II) Examination, 2011


203-B : Finance Specialization
LEGAL AND PROCEDURAL ASPECTS OF FINANCE
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any 5 questions.


2) All questions carry equal marks.
1. Explain the Provisions of Companys Act regarding Oppression and mismanagement.
2. A) What is minimum and maximum bonus under the Payment of Bonus Act ?
B) What is disability under workmens compensation act (i.e. partial and total disability) ?
3. Explain provisions regarding appointment of auditors of a company.
4. Write note on :
a) Corporate Governance Statement
b) Auditors report.
5. Explain the provisions regarding Mergers and Acquisitions as per companys act.
6. As per Companies Act explain.
A) Powers and Duties of Directors.
B) Directors Responsibility Statement.
7. Write short notes (any 2) :
a) Payment of gratuity act
b) FEMA
c) Employees Provident Fund Act
d) Minimum Wages Act.

B/II/11/310

[4079] 22

*407922*

M.M.S./M.B.S. (Semester II) Examination, 2011


FINANCE SPECIALISATION
202 (B) : International Finance
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 60

Instructions :1) Attempt any four questions.


2) All questions carry equal marks.

1. Explain the various types of trade barriers, reasons behind them and their
impact.
2. Examine the merits and demerits of the Purchasing Power Parity and Interest
Rate Parity theories of exchange rate determination.
3. Discuss the important aspects involved in the financial management of a
multinational firm.
4. How does the Export-Credit Guarantee Corporation assist Indian exporters
and banks in international financial matters ?
5. Criticize the flexible exchange rate regime from the viewpoint of the proponents
of the fixed exchange rate regime.
6. Explain the reasons behind the integration of global markets. What role the
World Trade Organisation (WTO) plays in this context ?
7. Write notes on any two of the following :
a) Exchange Control/regulation in India
b) Rupee Convertibility
c) Special Drawing Rights
d) Foreign Exchange Market.

B/II/11/130

[4079] 28

*407928*

M.M.S./M.B.S. (Semester II) Examination, 2011


COMPUTER SPECIALIZATION
203-C : OOD Concepts & Basic Java
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 60

Note :

1) Question No. 1 is compulsory. Solve any 4 from the


remaining.
2) Question No. 1 carries 20 marks & remaining have 10
marks each.

1. Solve the following :


a) What is a command to compile Java program ?
b) What is identifier ? Give examples.
c) Write integer data types with their size and default values.
d) What is local variable ?
2. Write a program to display following pattern
1
1 2
1 2

1 2

1 2

4 5

3. Write a program to accept 10 integer numbers and arrange them in ascending


order. (Use array).
4. Write a program to copy text of one text field to another. (Write assumptions
if any).
P.T.O.

*407928*

[4079] 28

5. Write an abstract class named Employee . Which has subclass named


Manager ? Write explicit constructors for all over load & override print me
method in all classes. (write assumptions if any)
6. Write short note (any two) :
a) User defined Exception
b) Interfaces
c) Overloading and overriding
d) Final key word in all context.

B/II/11/125

[4079] 201

*4079201*

M.M.S./M.B.S. (Semester II) (2008 Pattern) Examination, 2011


201 : ENTREPRENEURSHIP DEVELOPMENT AND PROJECT
MANAGEMENT (New)
Time: 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Solve any three out of the remaining.
3) Figures to the right indicate full marks.
1. a) Elaborate the role and responsibilities of an entrepreneur.
b) Explain the relevance of entrepreneurship development cycle.
2. Explain the theory of profit putforth by knight, in detail.

10
15
15

3. Elaborate the role played by state government in promoting entrepreneurship


development.
15
4. What are the various external factors influencing entrepreneurship development ? 15
5. Elaborate the role played by EDII in promoting entrepreneurship development. 15
6. What are the challenges faced by women entrepreneurs ?

15

7. Write short notes on (any three) :

15

a) Market Analysis
b) Creativity
c) NEDB
d) Angle capitalist
e) Entrepreneurial traits.

B/II/11/330

[4079] 202

*4079202*

M.M.S./M.B.S. (Semester II) Examination, 2011


MARKETING SPECIALIZATION
202 (A) Retail and Distribution Management
(2008 Pattern) (New)
Time : 3 Hours
Instructions :

Max. Marks : 70
1) Answer any five questions.
2) All questions carry equal marks.

1. What is Retailing ? Explain the significance of Retailing from Consumer,


Manufacturer and Economy Point of View.
2. What are the different types of store layouts ? Explain the factors that influence
the store layout.
3. Right selection of location contributes in the success of Retail business.
Comment. Write a note on location selection process.
4. Explain the Horizontal, Vertical and Multichannel marketing systems with
suitable examples.
5. List and explain the components of supply chain management.
6. Explain different types of channel conflicts and ways to resolve them.
7. Write short notes on any two :
a) Private Label Brands.
b) Franchising.
c) Sales Promotion in Retailing.
d) Functions of Wholesaling.

B/II/11/225

[4079] 203

*4079203*

M.M.S./M.B.S. (Semester II) Examination, 2011


Finance Specialization
202 B : INTERNATIONAL FINANCE
(New) (2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Q.1 is compulsory. From Q.2 to 9 attempt any two


questions from Section-I and any two questions from
Section-II.
2) Figures to the right indicate full marks.
3) Use of Non-programmable calculator is allowed.
1. Explain the nature, scope and significance of International Finance in the
globalized economy.

10

SECTION I
2. What do you mean by International Monetary System ? Explain the role and
significance of International Monetary Fund and World Bank in
international business.
15
3. Write notes on the following :

15

a) Role of RBI in Forex markets.


b) Special Drawing Rights.
c) Suppliers Credit.
4. Explain the concept of Purchasing Power Parity (PPP). Describe a method
for testing whether PPP exists.

15

5. Describe with suitable illustrations the various sources of International Finance.

15

P.T.O.

[4079] 203

-2-

*4079203*

SECTION II
8

6. a) Explain the concept Rupee Convertibility.


b) Calculate the annualised discount on rupees for the three month
forward, when spot rate S(`./$) = ` 31.8756/$ and three month forward rate
is F(`/$) = ` 32.1769/$.

7. a) Explain the various external hedging tools.


b) If the rate of inflation in India and the USA is 7% and 4% respectively and
if interest rate in the USA is 6%, find the rate of interest in India.
8. a) Write short note on Foreign exchange risk and its measurement.

7
8

b) The exchange rate in two markets is as follows :


New York

$ 1.9800 10/f

London

$ 1.9700 10/f

Find out how arbitrageurs will make gain.

9. Write short notes on any three of the following :

15

a) WTO and its impact on International Business.


b) Impact of Euro currency on Forex market.
c) Trade settlement methods.
d) Special Economic Zones. [SEZs]
e) International Accounting Standards.
__________________
B/II/11/295

[4079] 204

*4079204*

M.M.S./M.B.S. (Semester II) Examination, 2011


Computer Specialization
202 (C) BUSINESS APPLICATION
(2008 Pattern) (New)
Time : 3 Hours
Instructions :

Max. Marks : 70
1) Q. No. 6 is compulsory.
2) Solve any four from Q. 1 to Q. 5.
3) Figures to the right indicate full marks.

1. Explain material procurement procedure in detail.

15

2. Explain fund management of financial system in detail.

15

3. Explain employee attendance and leave administration system of any


organisation.

15

4. What is an ERP ? Explain various factors for evaluating and implementing an


ERP package.
15
5. Explain customer order processing system. Also draw layout of Pending
customer orders.

15

6. Write short notes on any two :

10

a) BOM
b) Capacity planning
c) CRM
d) Accounts payable.

B/II/11/205

*4079205*

[4079] 205

M.B.S. /M.M.S. (Semester II) Examination, 2011


202-D : OPERATIONS STRATEGY
(Operations and Materials Management Specialization)
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : i) Answer any five questions.


ii) All questions carry equal marks.
1. Describe a framework for developing operations strategy for a manufacturing
organizations.
2. Discuss the relation of following with Operations Strategy:
a) Value chain concept
b) Core competence.
3. Explain the importance of strategic integration while formulating Operations
strategy.
4. Explain the effect of following factors on process choice decisions :
a) Product life cycle
b) Level of customization
c) Demand.
5. Discuss the factors influencing capacity decisions.
6. Discuss the role of IT in implementation of Operations Strategy.
7. What is Manufacturing infrastructure ? Describe the role of manufacturing
infrastructure in Operations Strategy.
8. Write notes on any two of the followings :
a) Focussed manufacturing
b) Order winner and Order qualifier
c) Technology Strategy
d) CIM.
B/II/11/240

[4079] 206

*4079206*

M.M.S./M.B.S. (Semester II) Examination, 2011


202-E : HRM Specialisation
TRAINING AND DEVELOPMENT
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No. 1 is compulsory.


2) Attempt any four questions from the remaining questions.
3) Figures to the right indicate full marks.
1. Define training. Training is important function in organisation. Discuss.

10

2. Discuss the process and methods of identification of training needs.

15

3. Design training program for newly joined marketing officer in manufacturing


15

industry.

15

4. Explain Kirkpatrick model for evaluation of training program.


5. What is learning ? What are the principles of learning ? Explain social learning

15

theory in detail.
6. Write short notes on (any two) :

15

a) Multimedia training
b) Andragogy
c) Training for leadership.

B/II/11/225

[4079] 207

*4079207*

M.M.S./M.B.S. (Semester II) Examination, 2011


Marketing Specialization
203A : MARKETING STRATEGY AND RELATIONSHIPS MARKETING
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) All questions carry equal marks.
1. Explain the concept of Marketing Strategy. Elaborate various steps in formulating
Marketing Strategy.
2. Explain various bases of segmentation for consumer goods.
3. Why new products are developed ? How would you organize new product
development ? What are the steps involved ?
4. Explain how IT would help in building up competitive marketing strategy to
achieve sustaining growth in the business.
5. Explain the importance of database marketing, data warehousing and data mining
in CRM.
6. Value profit chain is based on value equations for customers, employees, partners
and investors. Discuss.
7. Write short notes (any two) :
a) RM in industrial markets and consumer markets
b) Customer defections
c) Harvesting strategies
d) Constraints in marketing strategy implementation.

B/II/11/225

[4079] 209

*4079209*

M.M.S./M.B.S. (Semester II) Examination, 2011


203C Computer Specialization
OOD CONCEPTS AND BASIC JAVA (Old and New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 is compulsory.


2) Solve any five questions from remaining.
3) Figures to right indicate full marks.
1. A) Answer the following :
1) What is Java ?
2) What is Object ?
3) What is use of static keyword ?
4) Which are different types of constructors ?
5) What is abstract class ?

10

B) Create class called sports Accessories with attributes AccID, Description, Quantity,
rate, usedlnGame. Accept details of 10 accessories from user and store it in array
of objects. Display details of all accessories used in game cricket.
10
2. Write applet application to display left scrolling banner.

10

3. Write an application to create following threads


a) Display series 1, 1, 2, 3, 5, 8, 13, 21,......
b) Display series 1, 8, 27, 64, 125.....

10

4. Write an application to count vowels, each separately, from a given file

10

(Use character stream)


5. Define class called computer. Define subclasses of Computer called desk top and
laptop. Accept details of 3 categories. Show accepted information by overriding
display method (Define at least three attributes in each class. Assume suitable
data).
10
6. Explain Java is object oriented language.

10

7. Write notes on (any 2) :


a) Applet life cycle
b) Thread synchronization
c) Exception handling in Java.

10

B/II/11/220

[4079] 21

*407921*

M.M.S./M.B.S. (Semester II) Examination, 2011


Marketing Mant. Specialization
(202-A) : RETAIL AND DISTRIBUTION MANAGEMENT
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 60

Instructions : 1) Attempt any four questions.


2) All questions carry equal marks.
1. a) Explain the various types of retailers.
b) Analyse critically the nature and importance of retailing.
2. Discuss role of wholesalers in physical distribution and different types of
wholesalers.
3. Elaborate the various factors which affect location decision.
4. Material handling, transportation, warehousing and inventories are the four pillars
on which the building of retailer logistics rely upon. Do you agree with the
statement ? Explain in details with practical examples.
5. What are the causes for channel conflict and suggest strategies to overcome
conflict ?
6. Write short notes on (any three) :
a) Franchising
b) CRM in retailing
c) Multilevel marketing
d) In-store promotions
e) Merchandising.

B/II/11/130

*4079210*

[4079] 210

M.M.S./M.B.S. (Semester II) Examination, 2011


(203 D) : MODELING TECHNIQUES AND OPERATIONS
MANAGEMENT
Production and Materials Specialization
(2008 Pattern) (New)
Time: 3 Hours

Max. Marks: 70

Notes : 1) Answer any five questions.


2) All questions carry equal marks.
1. Discuss the how application of quantitative models in operations can help
organizations in increasing delivery performance and profitability.

14

2. Solve the following linear programming problem using simplex method.


Maximize Z = 6X + 8Y
Subject to
2X+ 3Y 18
4X + 2Y 20
X, Y 0

14

3. a) State the steps involved in application of decision tree for decision making.
b) A government committee is considering the economic benefits of a program
of preventative flu vaccinations. If vaccinations are not introduced then the
estimated cost to the government if flu strikes in the next year is Rs. 700
million with probability 0.1, Rs. 1,000 million with probability 0.3 and
Rs. 1,500 million with probability 0.6. It is estimated that such a program
will cost Rs. 700 million and that the probability of flu striking in the next
year is 0.75.
One alternative open to the committee is to institute an early-warning
monitoring scheme (costing Rs. 30 million) which will enable it to detect
an outbreak of flu early and hence institute a rush vaccination program
(costing Rs. 1,000 million because of the need to vaccinate quickly before
the outbreak spreads).
Draw Decision Tree for the above decision situation.
P.T.O.

[4079] 210

-2-

*4079210*

4. Explain any five priority sequencing rules and their significance with examples.

14

5. Using Jacksons method, find the sequence that minimizes the total elapsed
time required to complete the following tasks and compute idleness of each
machine. Each job is processed in the order of A-B-C. Calculate idle time on
each machine.
14
JOB

II

III

IV

Machine A

Machine B

Machine C

6. State the concept of Goal Programming. Describe formulation of Goal


Programming model with an example.

14

7. Describe the salient features of ERP system in context of operations


management processes.

14

8. Write notes on any two of the followings :

14

a) Steps in model building


b) Simulation
c) Sensitivity analysis.

B/II/11/280

[4079] 211

*4079211*

M.M.S./M.B.S. (Semester II) Examination, 2011


203 E : HRM SPECIALISATION
Performance Management Systems
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : i) Q. No. 1 is compulsory.


ii) Attempt any four questions from the remaining questions.
iii) Figures to the right indicate full marks.
1. Explain Performance Appraisal with its objectives.

10

2. Explain the importance of compensation management and separation planning


in performance management system.
15
3. Explain the goal setting procedure in detail.

15

4. Discuss the Straight Ranking Method and Critical Incident Method of


Performance Appraisal in detail.

15

5. Do you agree that counseling can help employees to improve their performance.
Justify.
15
6. Write short note on (any two) :

15

a) Assessment centers.
b) Employee coaching.
c) 360 degree appraisal.

B/II/11/225

[4079] 23

*407923*

M.M.S./M.B.S. (Semester II) Examination, 2011


COMPUTER SPECIALIZATION
202(C) : Business Applications
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question No. 6 is compulsory.


ii) Solve any four from Q. No. 1 to Q. 5.
iii) Figures to right indicate marks.
1. Explain in detail preparation of production plan and master production schedule.

15

2. Explain in detail customer complaint management system.

15

3. Explain process of preparation of balance sheet with suitable example.

15

4. Explain in detail demand forecasting and planning.

15

5. What is an ERP ? Explain various factors for evaluating and implementing an


ERP package.

15

6. Write short note on any two :

10

1) CRM
2) BOM
3) DEMAT Account
4) Accounts Receivable.

B/II/11/125

[4079] 24

*407924*

M.M.S./M.B.S. (Semester II) Examination, 2011


Production and Materials Specialization
202 D : MANUFACTURING STRATEGY
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 60

Note : i) Answer any four questions.


ii) All questions carry equal marks.
1. How manufacturing strategy can be aligned with corporate strategy to achieve
market leadership ? Elaborate with examples.
2. Discuss the role and importance of technology and process choice in
developing manufacturing strategy.
3. Explain the strategic issues involved in make-buy decisions for components
of a high tech electronic consumer product.
4. Explain the concept and principles of to cussed manufacturing. Describe in
brief strategic gain / benefits by adopting to cussed manufacturing.
5. Discuss the factors to be considered while making huge investment in
infrastructure / plant / machinery for a manufacturing organization.
6. Describe the need for and advantages of linking investment decisions to product
life cycle.
7. Write short notes on any three of the following :
a) Functional goals.
b) Technical vs business specifications.
c) Technology strategy.
d) Customer-Vendor relations.

B/II/11/125

[4079] 25

*407925*

M.M.S./M.B.S. (Semester II) Examination, 2011


202 E : HRM Specialisation
TRAINING AND DEVELOPMENT
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 60
Note: 1) Attempt any four questions.
2) All questions carry equal marks.

1. Explain various methods of Training.

15

2. Define Training. Explain need and objectives of training.

15

3. Design a training programme for newly joined sales officer in manufacturing


industry.

15

4. Explain in detail the process of identification of training needs of employees


in the organisation.
15
5. What is training evaluation ? Explain various techniques to evaluate training.

15

6. Write short notes on (any two) :

15

a) Resistance of training.
b) Budgeting of training.
c) Distance learning.
d) Sensitivity training.
__________________
B/II/11/125

[4079] 26

*407926*

M.M.S. /M.B.S. (Semester II) Examination, 2011


Marketing Management Spl :
203 A : MARKETING STRATEGY AND SOCIAL MARKETING
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Note : 1) Attempt any five questions.


2) All questions carry equal marks.
1. Present on overview of the characteristics and trends of strategic marketing
management.
2. Identify and explain the major factors contributing to the pricing strategy of a
firm.
3. Explain the significant stages of corporate strategic planning. How does the SWOT
analysis contribute to the strategy formulation ?
4. Discuss the major constraints to the promotion, in the rural markets. How can
these be overcome ? Explain giving examples.
5. Suggest the probable criteria that will be useful in segmenting the rural markets
for
a) Farming mechanization products and
b) FMCG products.
6. What strategies of marketing will you recommend for declining markets ? Explain.
7. Write notes on any two :
a) Packaging for rural products
b) Strategies for entering a foreign market
c) Marketing channel strategy.

B/II/11/125

[4079] 27

*407927*
M.M.S./M.B.S. (Semester II) Examination, 2011
203-B Finance Spl.
LEGAL AND PROCEDURAL ASPECTS OF FINANCE
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 60

Instructions: 1) Attempt any 4 questions.


2) All questions carry equal marks.
1. Explain the provisions regarding the appointment and removal of a Director of
company.
2. Explain the provisions of Companys Act regarding oppression and mismanagement.
3. What are the required qualifications for appointment of Auditors ? Also explain the
duties of Auditors.
4. Write short notes on :
a) Audit Reports.
b) Directors responsibility statement.
5. Explain the provisions of Companies Act 1956 regarding Inter Corporate Deposits
and Loans.
6. Explain the role and duties of the Secretary of the company in connection regarding
annual general meeting.
7. Write short notes (any 3) :
a) Objectives of Payment of Wages Act.
b) Payment of Bonus Act.
c) Payment of Gratuity Act.
d) Corporate governance.
__________________
B/II/11/125

[4079] 29

*407929*

(MMS) M.B.S. (Semester II) Examination, 2011


PRODUCTION AND MATERIALS SPECIALISATION
203 D : Inventory Management
(2005 Pattern) (Old)
Time: 3 Hours

Max. Marks : 60

N.B. : 1) Attempt any four questions.


2) All questions carry equal marks.
1. What is selective inventory control ? What is the basis of ABC analysis ?
Explain the process of carrying out ABC analysis with graph.

15

2. Explain the role of computer in inventory management. Cite examples.

15

3. Explain following :
a) Inventory carrying cost and procurement cost.

b) Fixed order system and periodic order system.

4. Write a detailed note on, Just-in-Time (JIT) with examples.

15

5. What is, inventory management objectives ? Explain their impact on service


level and ROI.

15

6. Explain the various inventory model with min-max level.

15

7. Write short notes on any three :

15

a) Set up time and SMED


b) Excess Inventory A Grave Yard of Business
c) A role of MRP in controlling inventories
d) Classification of materials.

B/II/11/125

[4079] 30

*407930*

M.M.S./M.B.S. (Semester II) Examination, 2011


PERFORMANCE MANAGEMENT SYSTEMS
203(E) : HRM Spl.
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 60

Instruction : Attempt any four questions.


1. Define Performance Appraisal. Discuss objectives in detail.

15

2. Explain any two traditional methods of Performance Appraisal.

15

3. What is the importance of self-assessment in Performance Appraisal ?

15

4. Write in detail about MBO.

15

5. What is the role of communication in performance management systems ?

15

6. Write notes on any two of the following :

15

a) BARS
b) Ranking method of performance appraisal
c) Potential appraisal
d) Use of technology in performance management systems.

B/II/11/125

[4080] 33

*408033*

M.C.A. (Semester III) (Mgt. Faculty) Examination, 2011


BM-33 : MANAGEMENT SUPPORT SYSTEM
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q. 1 and Q. 7 are compulsory.


2) Attempt any four from remaining.
1. Explain in detail information requirement for inventory function using system
approach.

10

2. Explain the application of law of requisite variety.

10

3. Define MIS. Explain the characteristics of MIS.

10

4. Explain the Newell Simon model of Human Information Processing.

10

5. Explain Herbert Simon model of Decision Making.

10

6. Define EIS/ESS. Explain characteristics and capabilities of EIS.

10

7. Write short notes on (any 4) :

20

a) Organisation structure
b) Quality of information
c) Academic disciplines of MIS
d) Information overloading
e) Simulation.

B/II/11/190

[4080] 41

*408041*

M.C.A. (Management Faculty) (Semester IV) Examination, 2011


IT-41 : JAVA PROGRAMMING
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Q. 1 is compulsory.


2) Solve any 4 from Q. 2 to Q. 6.
1. Answer the following with justification :

10

1) Differentiate between default and public access specifiers.


2) Explain overriding concept in Java.
3) Explain try, catch block.
4) List out the methods in Applet life cycle.
5) Explain this keyword.
2. a) Write an applet to display Welcome message, after every 5 seconds, increase
font size by 2 pts.

b) Explain java.io.File class.

3. a) Write a client-server socket program, client program will accept message from
user and send it to server, server will send a Random number to client.

b) Explain stub and skeleton, Marshalling and unmarshalling in RMI.

4. a) Write JDBC application using servlet for displaying report of Gas booking of
customers for current date. (Assume suitable table structure).
b) Explain Thread Life Cycle.

8
7
P.T.O.

[4080] 41

-2-

*408041*

5. a) Write a Java Program to append the contents of one file into another file,
accept both file names from user.
b) Explain inheritance in Java with suitable example.
6. Write short notes on (any 3) :

8
7
15

a) MVC architecture
b) Anonymous class
c) Final and static keyword
d) JDBC drivers.

B/II/11/260

*408044*

[4080] 44

M.C.A. (Semester IV) (Mgmt. Faculty) Examination, 2011


MT-41 : OPTIMIZATION TECHNIQUES
(2005 Pattern)
Time : 3 Hours

Max. Marks : 80

Instructions :1) Solve any four questions.


2) Figures to the right indicate full marks.
3) Use of electronic calculator and statistical tables is
allowed.
1. a) Solve the following L.P.P. by using BIG-M method :

10

Maximize z = 2x1 x2
Subject to the constraints
3x1 + x 2 = 3
4x1 + 3x2 > 6
x1 + 2x2 < 4 and x1, x2 > 0
b) Explain quality of L.P.P. with example.
2. a) Solve the following problem

10
10

Maximize z = x1 + 2x2
Subject to the constraints
2x2 < 7
x1 + x2 < 7
2x1 < 11
x1, x 2 > 0
and x1, x2 are integers
P.T.O.

[4080] 44

-2-

*408044*

b) Obtain an optimum solution for the following transportation problem :


10
Find an initial solution by using Least Cost Method (LCM)/Vogels
Approximation Method (VAM).

D1 D2
19 30
S1
70 30
S2
40 8
S3
Demand 5 8

D3
50
40
70
7

D4 Supply
10
7
60
9
20
18
14

3. a) Explain why inventory control models are needed. What are different
components of inventory cost ?

10

b) An aircraft company uses rivets at an approximate customer rate of


2,500 kg per year. Each unit costs Rs. 30 per Kg and the company
personnel estimate that it costs Rs. 130 to place an order, and that the
carrying cost of inventory is 10% per year.
i) How frequency should orders for rivets be placed (number of orders) ?
ii) Order interval.

10

4. a) Describe the features of the following Queueing model (M/M/1) : (FCFS/N/ )


with formulae for the relevant quantities.
10
b) The inter-arrival times at toolcrib are exponential with an average time of
10 minutes. The length of the service time is assumed to be exponentially
distributed, with mean 6 minutes.
Find :
i) The probability that a person arriving at the booth will have to wait.
ii) Average queue length
iii) Average number of customers in the system
iv) Average system time.

10

*408044*

[4080] 44

-3-

10

5. a) Explain the models for replacement of items that fail completely ?

b) An engineering company is offered a material handling equipment A. It is


priced at Rs. 60,000 including cost of installation, and the costs for operation
and maintenance are estimated to be Rs. 10,000 for each of the first five
years, increasing every year by Rs. 3,000 in the sixth and subsequent
years. The company expects a return of 10% on all its investment. What is
the optimal replacement period ?
10
10

6. a) Define the following terms with illustrations :


i) Critical paths and critical activities
ii) Earliest start and earliest finish
iii) Expected project duration
iv) Pessimistic time.
b) A small project is composed of 7 activities whose time estimates are given
below :

Activity

Estimated duration (weeks)


Optimistic

Most likely

Pessimistic

1-2

1-3

1-4

2-5

3-5

14

4-6

5-6

15

i) Draw the network diagram


ii) Find the expected duration and variance.
iii) What is the probability that the project will be completed atleast 4 weeks
earlier than expected time ?
10

B/II/11/300

[4080] 46

*408046*

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2011


BME-2 : FOUNDATIONS OF DECISION PROCESS (2005 Pattern)
(Elective)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question Number 1 is compulsory.


ii) Solve any two from the remaining.
iii) Figures to the right indicate full marks.
10

1. a) Explain the theory of dominance in the solution of rectangular games.


b) The manager purchases of a Flower Shop promises its customers delivery
within four hours on all flower orders. All flowers are purchased on the previous
day and delivered to Parker by 08:00 AM the next morning. The daily demand
for roses is as follows :
Dozens of Roses

70

80

90

100

Probability

0.1

0.2

0.4

0.3

The manager purchases roses for Rs. 10 per dozen and sells for Rs. 30. All
unsold roses are donated to a local hospital. How many dozens of roses
should parker order each evening to maximize its profits ? What is the optimum
10

expected profit ?
c) Telephone users arrive at a booth following Poisson distribution with an average
time of 5 minutes between one arrival and next. The time taken for a
telephone call is on an average 3 minutes and it follows exponential distribution.
What is the probability that the booth is busy ? How many more booths
should be established to reduce the waiting time to less than or equal to half of the
present waiting time ?

10
P.T.O.

[4080] 46

*408046*

-2-

2. a) A manufacturing company has just developed a new product. On the basis


of past experience, a product such as this will either be successful, with an
expected gross return of Rs. 1,00,000, or unsuccessful, with an expected
gross return of Rs. 20,000. Similar products manufactured by the company
have a record of being successful about 50% of the time. The production and
marketing costs of the new product are expected to be Rs. 50,000.
The company is considering whether to market this new product or to drop
it. Before making its decision, a test marketing effort can be conducted at a
cost of Rs. 10,000. Based on past experience, test marketing results have
been favorable about 70% of the time. Furthermore, products favorably
tested have been successful 80% of the time. However, when the test marketing
result has been unfavorable, the product has only been successful 30% of the
time. What course of action should the company pursue ?
10
10

b) Explain the characteristics of Queuing model.


3. a) In a small town, there are only two stores, ABC and XYZ that handle
sundry goods. The total number of customers is equally divided between
the two, because price and quality of goods sold are equal. Both stores have
good reputation in the community and they render equally good customer
service. Assume that a gain of customers by ABC is a loss to XYZ and vice
versa. Both stores plan to run annual pre-diwali sales during the first week
of November. Sales are advertised through a local newspaper, radio and
television media. With the aid of an advertising firm store ABC constructed
the game matrix given below (figures in the matrix represent a gain or loss
of customers).
Strategy of XYZ

Strategy of
ABC

Newspaper

Radio

Television

Newspaper

30

40

80

Radio

15

20

Television

90

20

50

Determine optimal strategies and the worth of such strategies for both ABC
and XYZ.
10

*408046*

-3-

[4080] 46

b) A confectioner sells confectionery items. Past data of demand per week


(in hundred kilograms) is given below :
Demand

10

15

20

25

Frequency

11

21

10

Using the following sequence of random numbers, generate the demand for
the next 15 weeks. Also find the average demand per week :
35 52 90 13 23 73 34 57 37 83 94 56 67 66 60
4. Write short notes on any two :

20

a) Various Queue Models


b) Simulation Techniques
c) Criterions of Decision Making.

B/II/11/130

[4080] 58

*408058*

M.C.A. (Semester V) (Management Faculty) Examination, 2011


IT-4 : MOBILE COMPUTING (Elective)
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Question No. 1 and 7 are compulsory.


2) Attempt any three questions from remaining Q. 2 to Q. 6.
1. a) Define the following terms (any five) :

10

i) GSM
ii) Frame Error Rate
iii) VLR
iv) WTP
v) MAC
vi) Fading
b) Explain the features of wireless Network. What are its advantages and
10

disadvantages ?
2. What is cell breathing ? List any four functions of base station controller used

10

in GSM. Explain the impact of framing and logical channels in GSM.


3. What is SIP ? How does SIP handle Call setup teardown of Calls ? What are

10

the basic difference in functionality between H.323 and SIP ?

10

4. Explain problems faced in 802.11 MAC design.


5. What are the general problems of mobile-IP regarding security and support of
QoS ?

10
P.T.O.

*408058*

[4080] 58
6. a) Explain working of RTS-CTS protocol.
b) Define Distributed Computation with advantages.
7. Write short notes (any four) :

5
5
20

i) CDMA
ii) Mobile Agents
iii) Indirect-TCP
iv) Blue-tooth
v) DHCP
vi) Adhoc Networks.

B/II/11/130

[4080] 302

*4080302*

M.C.A. (Semester III) (Management Faculty) Examination, 2011


IT-32 : DATA COMMUNICATION AND COMPUTER NETWORKS (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Q. 1 and Q. 8 is compulsory.


2) Attempt any four from the remaining.
3) Draw neat diagram wherever necessary.
1. a) Justify with true or false :

i) FTP is more reliable than TFTP.


ii) The subnetting is used to expand the network.
iii) Device on one network can communicate with device on another network
via a gateway.
b) Explain DHCP scope resolution with example.

2. What is POP ? What are its disadvantages ? Explain IMAP modes of operations.
What are the advantages of IMAP over POP ?

10

3. What is DNS and DNS protocols ? How delegation of authority is executed in DNS ? 10
4. Describe the differences among ISDN-B,D and H channels.

10

5. A sliding window is used to make transmission more efficient as well as to control


the flow of data in TCP. Justify with example.

10

6. What is VSAT ? Explain different VSAT Network architecture. What are the VSAT
Access Technologies ? Explain.

10

7. a) Differentiate : Virtual circuit and Datagram.


b) Discuss the design issues of WLAN.

5
5

8. Write short notes (any three) :

15

a) Router

b) Firewall

c) X.25 Network

d) FTP

e) Remote communication protocol.


__________________
B/II/11/4075

[4080] 303

*4080303*

M.C.A. (Mgmt. Faculty) (Semester III) Examination, 2011


IT 33 : OBJECT ORIENTED PROGRAMMING USING C++ (New)
(2008 Pattern)
Time : 3 Hours
Note : a)
b)
c)
d)

Max. Marks : 70
Q. 1 is compulsory.
Solve any six from Q. 2 to Q. 8.
Figures to right indicate full marks.
Make suitable assumption wherever necessary.

1. Write outputs with explanation :

(25=10)

a) Class sample
{
Public :
int * ptr ;
sample ( ) {ptr = NULL;}
sample (int i )
{ ptr = new int (i) ;
}
~ sample ( ) { delete ptr ; }
void printVal ( ) {
Cout << The value << *ptr ;
}
};
Void SomeFunc (Sample x) {
Cout << say i am in someFun << endl;
}
int main ( )
{
Sample S1 = 10 ;
Some Func (S1) ;
S1. PrintVal ( );
}
P.T.O.

[4080] 303

-2-

b) Class Test {
Public :
Test ( ) ;
};
Test : : Test ( ) {
Cout << Constructor called \n ;
}
int main ( ) {
Cout << start \n ;
Test t1( ) ;
Cout << End \n ;
return 0 ;
}
c) Class Test
{
Static int i ;
int j ;
};
int Test : : i ;
int main ( )
{
Cout << size of (Test) ;
return 0 ;
}
d) Void main ( )
{
int a, * pa, & ra;
pa = & a ;
ra = a ;
Cout << a = << a << * pa = <<* pa<< ra = <<ra;
}

*4080303*

*4080303*

-3-

[4080] 303

e) Class Test
{
Public :
int operator = = (Test t)
{
if ( * this = = t )
{
Cout << Both are same ;
return 1 ;
}
else
{
Cout << Both are different ;
return 0 ;
}
}
};
Void main ( )
{
Test t1, t2 ;
t1 = = t2 ;
}
2. a) What is difference between using declaration and using directive ?
b) What is the need for iterators ? What is their role in STL ?

5
5

3. Write a stack class and overload + and operator for push and pop operation.
The stack class should throw an exception when the stack underflow and overflow
take place.
10
4. a) Why virtual constructors are not possible but virtual destructor is a good idea ?
b) What is the need for type_into object ? What is the role of type id operator in
the RTTI ?

5
5

[4080] 303

-4-

*4080303*

5. Define polar class and cartetion co-ordinate class to store point. Write routines
which converts from one type of point to another.

10
5

6. a) Explain the difference between manipulators and ios functions.


b) Explain the role of seekg ( ), seekp ( ), tellg ( ) and tellp ( ) functions in the
process of random access in a binary file.

7. Write a template function for sort. Also write a person class which having name and
age as data member. Write a main function in which create a integer array and
person object array. Store n, values in both array and call the sort function to sort
integer array and also to sort person object array. The person object array sorted
by according person name.
10
8. Write short notes on (any two) :

(52=10)

a) Copy constructor.
b) Difference between inline function and macro.
c) Polymorphic object.

B/II/11/3,845

[4080] 305

*4080305*

MCA (Semester III) ( Management Faculty) Examination, 2011


BM 31 : MANAGEMENT SUPPORT SYSTEM AND INFORMATION
SYSTEM SECURITY
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and 7 are compulsory.


2) Attempt any four from remaining.
1. Explain in detail Information requirement for financial function using system
approach.

10

2. What do you mean by Feedback Control ? Explain the application of negative


feedback with management Budget example.

10

3. Define MIS. Explain structure of MIS based on management activity.

10

4. Explain the Newell Simon Model of Human Information Processing.

10

5. Sensitivity Analysis helps in Indentifying value of additional information to support


decision making comment.
10
6. Discuss how ESS/EIS can help senior Managers make better decisions.

10

7. Write short notes on (any 4) :

20

a) Herbert Simon Model


b) Types of Information
c) Business value of DSS
d) Need of IS Auditing
e) Static and Dynamic Models.

B/II/11/3625

[4080] 31

*408031*

M.C.A. (Semester III) (Management Faculty) Examination, 2011


IT-31 : WEB SUPPORTING TECHNOLOGIES
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Solve any four from the remaining.
3) Figures to the right indicate full marks.
1. Differentiate between DTD and schema.

10

2. a) Write code for creating following external style sheet and use it in HTML.
i) Set hyperlink without underline
ii) Text having 18 font-size, italic and underline
iii) Set right margin 20 pixels
iv) Text color should be green.

b) Explain error handling mechanism in VB script.

3. a) Design HTML form for entering employee details. Assume suitable fields.
Write Javascript code for validating any four elements.

b) Explain 3-tier architecture with diagram.

4. a) Design given form using HTML with validations and perform the appropriate
operations on click event of the respective button. Use VB script.

Enter first number


Enter second number
Result
+

b) Explain with example Math and Array objects in Javascript.

7
P.T.O.

[4080] 31

-2-

*408031*

5. a) Explain the following tags with example.


1) < IFRAME >

2) < MAP >


3) < SPAN >
4) < DIV >
b) Write DTD for patient information, where each patient has child elements
patient-id, patient-name, address, room-type. The patient-name element has
child elements first-name, middle-name and last-name.
6. Write short note on (any 3) :

7
15

a) Classes in CSS
b) Date and string objects in VB script
c) Client-side image mapping
d) WWW, HTTP and W3c.

B/II/11/200

[4080] 32

*408032*

M.C.A. (Management Faculty) (Semester III) Examination, 2011


IT 32 : COMPUTER NETWORKS
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q.1 and Q.6 are compulsory.


2) Solve any three from Q.2 to Q.5.
1. a) Explain e-mail message structure, addressing and sending receiving procedure.
b) Explain IP addressing schemes with example.

10
10

2. Explain various types of security threats. What is birthday attack ?

10

3. Explain DNS and DNS protocols.

10

4. Explain and compare connectionless and connection oriented networks.

10

5. Compare IPV4 and IPV 6.

10

6. Write short notes (any four) :

(45=20)

i) VSAT
ii) Transmission protocols
iii) Proxy server
iv) Network devices
v) Session layer in OSI
vi) SNMP agents.

B/II/11/240

[4080] 34

*408034*

M.C.A. (Semester III) (Mgt. Faculty) Examination, 2011


IT 34 : OBJECT ORIENTED PROGRAMMING USING C++
(2005 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Q. 1 is compulsory.
Solve any six from Q. 2 to Q. 8.
Figures to right indicate full marks.
Make suitable assumptions wherever necessary.

1. Explain output of the following programs. If errors, correct it.

(25=10)

1) # include < iostream.h >


int main ( )
{
char str [ ] = {\0 work\n hard};
cout << sizeof (str) <<endl ;
cout << str ;
return 0 ;
}
2) # include < iostream.h >
# include < conio.h >
class base
{
Public :
void disp ( )
{
char * ptr = (char*) 0 ;
int i = 96 ;
int *j = (int *) & ptr ;
cout << i/* j ;
}
};
void main ( )
{
clrscr ( ) ;
base b;
b.disp ( ) ;
}
P.T.O.

[4080] 34

-2-

3) # include < iostream.h >


# include < conio.h >
class base
{
base ( )
{
cout <<hello ;
}
};
void main ( )
{
clrscr ( ) ;
base ( ) ;
}
4) # include < iostream.h >
void execute (int & x, int y = 200)
{
int temp = x + y ;
x + = temp ;
if (y ! = 200)
cout << temp << x << y << endl ;
}
void main ( )
{
int a = 50, b = 20 ;
execute (b) ;
cout << a <<b << endl ;
execute (a, b) ;
cout << a << b << endl ;
}

*408034*

*408034*

-3-

[4080] 34

5) # include < conio.h >


# include < iostream.h >
# include < math.h >
void main ( )
{
cout. set f (ios : : left, ios : : adjustfield) ;
cout.width (9) ;
cout.fill (#) ;
cout.precision (5) ;
cout << 5.25 ;
cout << \n ;
cout.self (ios : : right, ios : : adjustfield) ;
cout.width (9) ;
cout.fill (#) ;
cout.precision (5) ;
cout << 5.25 ;
}
2. a) What is virtual function ? Explain with suitable example.

b) Write a program to demonstrate use of virtual destructor.

3. Explain types of inheritance with suitable example of each type.

10

4. Write a program that reads a text file and create another file that is identical
except that every sequence of consecutive blank spaces is replaced by a single
space.
10
5. What are the rules for operator overloading ? Write a program to demonstrate
how insertion and extraction operators are overloaded.
10
6. a) Explain RTTI with suitable example.
b) Write a program to swap two integer number and 2 real numbers. Use
Templates.

[4080] 34

-4-

*408034*

7. Design a class employee which includes the following data members :

10

a) Emp Number
b) Emp Name
c) Basic.
Member functions :
1) To Assign initial value
2) To calculate net salary
3) To display Net salary with employee details.
Calculate the net salary using the formulae
Gross salary = Basic + DA + HRA
Net salary = Gross salary Deductions
The following conditions apply for the calculations
1) DA is 40 % of basic salary
2) HRA is 30 % of basic salary
3) PF is deduction is 10 % of the basic salary.
8. Write short notes on (any 2) :

(25=10)

1) Standard Template Library.


2) User defined manipulators.
3) Abstract class.

B/II/11/250

[4080] 35

*408035*

M.C.A. (Semester III) (Mgt. Faculty) Examination, 2011


IT 36 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q.1 is compulsory.


2) Solve any 5 from the remaining questions.
1. a) Design an use case and class diagram for the following case :
ABC Online Book purchase system is to be designed having following
details :
Customer can login, select the desired book(s) by searching the author or by
entering the subject of the book. After seeing the list of books, the customer
selects the books and puts in the cart. He can remove the books from the cart
before final bill is generated. Once the bill is generated he has to pay using
debit or credit card.
The new book arrivals are uploaded by website administration.
15
b) Inheritance and its types.

2. Draw an activity diagram for online booking of movie tickets of movie in multiplex
theater. The payment should be done by credit card. The tickets can be cancelled
3 hours before the show timings.
10
3. Explain Booch methodology with examples.

10

4. Draw sequence or collaboration diagram for the following scenario :


1) Change passward
2) Retrieving the passward which is forgotton.

10

5. Draw state transition diagram for making a call using coin box machine. Make
your own assumptions.

10

6. Explain RUP in detail.

10

7. Write short notes on (any 2) :


1) Guidelines for creating case plan
2) Object persistence
3) OODBMS
4) CRC.

(52=10)

B/II/11/230

*4080403*

[4080] 403

MCA (Management Faculty) (Semester IV) Examination, 2011


IT 43 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 is compulsory.


2) Answer any five from the remaining.
3) Mention the assumptions made for solving case study.
1. A reputed college is conducting multiple courses. The college has Online Faculty
Feedback System. The feedback can be given only by the students studying in the
college for current academic year. Each course in the college has many faculties
teaching various subjects in various courses.
Students can give Feedback for faculty who has taught him/her for the current
semester.
The Online Feedback System should include following :
1) Login for Faculty
2) Login for Students
3) Login for HOD
4) One student can fill the Feedback form only once in a semester.
5) According to the points given by the students in the feedback, system calculates
the grades of faculty.
6) Faculty can only view the feedback grades given by the students without seeing
name of the student.
Appropriate action will be taken by the HOD, if Feedback of the particular faculty
is below certain level.
a) Draw use case diagram for above case study.

10

b) Draw class diagram for above case study.

10
P.T.O.

*4080403*

[4080] 403

10

2. Explain four phases of RUP in detail.

3. a) Draw sequence diagram for forwarding sms to your friend.

b) Draw collaboration diagram for sending e-mail with attachment.


4. Draw Activity diagram for Accepting Online order and Home Delivery of Pizza

10

(Write your own assumptions).


5. Draw state transition diagram for Biometric (Finger print ) system having
following functionalities :
1) Storing finger prints
2) Generating ids
3) Recording In-time/Out time by matching the finger prints
4) Showing Valid/ Invalid Messages

10

5) Calculating working hours.


6. Compare Grady Booch Methodology with Jacabson Methodology.

10

7. Write short notes (Any two) :

10

1) Reusability
2) Deployment and Component diagrams
3) Benefits of patterns
4) Test plan Guidelines.

B/II/11/775

[4080] 404

*4080404*

M.C.A. (Semester IV) (Mgmt. Faculty) Examination, 2011


MT-41 : OPTIMIZATION TECHNIQUES (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Q. No. 1 is compulsory.


2) Attempt any two questions from Q.No. 2, 3 & 4.
3) Use of electronic calculator and statistical tables is allowed.
1. a)
Activity

Preceding
activities

Time Estimate

Optimistic
2

Likely
4

Pessimistic
6

12

24

11

14

23

B, D

10

12

B, D

C, F

15

27

10

16

1) Draw PERT Network of the project.


2) Find Expected project duration and variance.
3) If there is 30 week deadline to complete the project what is the probability
that project will be finished within time limit ?
b) Solve the following problem
Max Z = 5x1 + 7x2
Subject to
2x1 + 3x2 6
6x1 + x2 30
x1, x2 0 and integer

9
P.T.O.

[4080] 404

*4080404*

-2-

c) A barber shop has six chairs to accommodate waiting people. It is assumed


that any customer who comes, when all six chairs are occupied leaves without
entering the shop. Rate of arrival is 3 per hour. Each customer spends 15
minutes on an average in the barber chair.
i) What is the chance that a customer does not have to wait for the hair-cut ?
ii) Expected number of customers waiting for the hair cut ?
iii) What are the percentage of potential customers who turned away ?

d) In a particular plant there are 4 machines to be installed. There are 5 vacant


places available. The cost of installation of machines at different vacant places
are given in the following table.
Pl
ac
M
es
ac
hin
es
M1

11

15

10

11

M2

12

10

15

M3

10

13

14

11

M4

14

12

Find the optimum assignment.


2. a) ABC limited has three production shops supplying a product at five warehouses.
The cost of production varies from shop to shop and cost of transportation
from one shop to a warehouse also varies each shop has a specific production
capacity and each warehouse has certain requirement. The cost of
transportation is given below
Warehouses

Production
Shop

100

125

175

Requirement

60

80

85

105

70

Determine the optimal distribution.

Capacity

*4080404*

[4080] 404

-3-

b) Explain the following terms :


i) Dummy activity
ii) Floats
6

iii) Critical path.


c) The simple Engineering company has a machine whose purchase price is
Rs. 80,000. The expected maintenance cost and resale prices in different
years are as given
Year

Maintenance cost (Rs.)

1000 1200 1600 2400 3000 3900

Resale value (000 Rs.)

75

72

70

65

58

50

7
5000
45

After what time interval in your opinion should the machine be replaced.

3. a) Find the dual of the following LPP, then solve the dual problem using Big M
Method.
Max z = 3x1 + 5x 2
Subject to 2x1 + 6x2 50
3x1 + 2x2 35
5x1 3x2 10
x2 20
x1, x2 0.
b) Describe any one inventory model without shortage.

9
6

c) The demand for a particular commodity is 15,000 units per year. No shortages
are allowed and supply is instantaneous, holding cost per year per unit is
Rs. 1.20 and cost of one procurement is Rs. 300/Find :
i) EOQ
ii) Minimal yearly cost.

[4080] 404

*4080404*

-4-

4. a) The following table gives the activities in a construction project and other
relevant information
Time

Cost

Activity

Immediate
Predecessor

Normal

60

90

150

250

38

60

150

250

100

100

115

175

D, B, E

100

240

Crash Normal

Crash

Indirect cost vary as follows.


Days
Cost
Rs.
(Rs.)

15

14

13

12

11

10

600

500

400

250

175 100

75

50

35

Find the project duration with minimum cost.


b) Explain the following queuing model (M/M/1) : (FCFS/N/ ).

c) Anita electric company produces two products P1 and P2 that are produced
and sold on weekly basis. The weekly production cannot exceed 25 for product
P1 and 35 for product P2 because of limited facilities. The company employs
total of 60 workers product P1 requires 2 man weeks of labour whereas product
P2 requires only 1. Profit margin on P1 is Rs. 60 and on P 2 is Rs. 40. Formulate
it as a LPP.

B/II/11/1,360

[4080] 406

*4080406*

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2011


BME2 : FOUNDATION OF DECISION PROCESS (Elective)
(New) (2008 Pattern)
Time : 3 Hours
Instructions : 1)
2)
3)
4)

Max. Marks : 70
Q. No. 1 is compulsory.
Solve any two questions from the remaining.
Figures to the right indicate full marks.
Use of Electronic claculator is allowed.

1. a) Describe the steps involved in the process of decision making.

10

b) A xerox machine in an office is operated by a person who does other jobs also.
The average service time for a job is 6 minutes per customer. On an average every
12 minutes one customer arrives for xeroxing. Find :
1) Xerox machine utilisation.
2) Percentage of times that arrival has not to wait.
3) Average time spent by customer.
4) Average queue length.
5) The arrival rate, if the management is willing to deploy the person exclusively
for xeroxing when the average time spent by a customer exceeds 15 minutes.
10
c) An Engineering firm utilizes re-order level system to replenish stock based on
average demand. The demand is given as below :
Demand per week :

Frequency

22

34

18

Generate the demand for next 20 weeks using the random numbers given below
and calculate average demand.
Random Numbers : 68, 46, 87, 32, 78, 72, 27, 60, 06, 40, 83, 39, 97, 11, 06, 77, 49,
31, 71, 92.
10
P.T.O.

[4080] 406

-2-

*4080406*

2. a) Two breakfast food manufacturing firms A and B are competing for an increased
market share, both the firms decide to launch the following strategies.
A1, B1 Give coupons A2, B2 Decrease Price
A3, B3 Maintain present strategy A4, B4 Increase advertising.
The pay off matrix shown in the following table describes the increase in market
share for firm A and decrease in the market share for firm B.
Firm

Firm B

B1

B2

B3

B4

A1

35

65

25

A2

30

20

15

A3

40

50

10

A4

55

60

10

15

2. a) Determine the optimal strategies for each firm and value of the game.
b) Explain with suitable examples maxmax maximin, minimax regret criterian in
decision making.
3. a) Explain the significance of utility theory as a basis of decision making.

10
10
10

b) The Parker Flower Shop promises its Customer delivery within four hours on all
flower orders. All flowers are purchased on the prior day and delivered to parker by
8:00 the next morning. Parkers daily demand for roses is as follows :
Dozen roses :

10

Probability

0.1

0.2

0.4

0.3

Parker Purchases roses for Rs. 10.00 per dozen and sells them for Rs. 30.00. All
unsold roses are donated to a local hospital. How many dozens of roses should
Parker order each evening to maximize its profit ? What is the optimum expected
profit ?
10

*4080406*

-3-

[4080] 406

4. a) Write short notes on (any two) :


1) Pure strategy and mixed strategy game.
2) Monto Carlo Simulation.
3) Elements of Queuing system.

10

b) Suppose that new razer blades were introduced in the market by three companies
at the same time. When they were introduced each company had equal share of
the number but during the first year some changes took place which are shown by
the following transition matrix.

A 0.9 0.03 0.07


B 0.1 0.7 0.2

C 0.1 0.1 0.8


Assuming that no changes in buying habits of customers occur.
What is the market share of three companies at the end of the 1st year and 2nd year ? 10

B/II/11/400

[4080] 407

*4080407*

M.C.A. (Management Faculty) (Semester IV) Examination, 2011


BME - 3 : INFORMATION SYSTEM AUDIT AND GOVERNANCE
(2008 Pattern) (New) (Elective)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and 6 is compulsory.


2) Attempt any 3 from Q. 2 to Q. 5.
1. List out possible threats for physical assets for an educational management system.
Your answer should cover.
20
a) Threats.
b) Desired Network Controls.
c) Desired Physical Controls.
d) List of evidences while auditing such system.
2. Explain ISACA standards in detail.

10

3. Explain physical and logical access controls in networking.

10

4. Explain Auditors role in Hardware and Software procurement.

10

5. a) Explain the importance of evidence collection strategies.


b) Explain various performance management tools used by Auditor.
6. Write short notes on (any 4) :

5
5
20

1) Audit charter
2) Digital signatures
3) Procurement controls
4) e_commerce
5) Validation controls.

B/II/11/285

[4080] 408

*4080408*

M.C.A. (Mgt. Faculty ) (Semester IV) Examination, 2011


(Elective)
BME-4 : COLLABORATIVE MANAGEMENT (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Attempt any five questions.


2) Support your answers with relevant examples.
3) All the questions carry equal marks.
1. Write an essay on Collaborative Management.
2. a) Describe BCG matrix.
b) Explain GE Nine Cell model. What is the advantage of GE Nine Cell over BCG
matrix ?
3. Leadership style, corporate culture, values and ethics playa crucial role in effective
implementation strategy. Comment.
4. What do you understand by Mergers and Acquisitions ? What are various types of
mergers ? What are the issues in implementing merger strategy successfully ? Cite
latest Indian and Global examples relevant to the merger strategy.
5. A value chain is a chain of activities for a firm operating in a specific industry. Explain
the concept and discuss its competitive advantages.
6. Elaborate Porters five forces framework with the help of suitable examples.
7. Write short notes on any two :
a) SWOT Analysis.
b) Value chain.
c) Mckinseys 7s frame work.
d) Core competencies.
e) Symptoms of malfunctioning of strategy.
__________________
B/II/11/230

[4080] 42

*408042*

M.C.A. (Semester IV) (Mgt Faculty) Examination, 2011


BM 41 : SOFT SKILLS (2005 Pattern)
Time : 2 Hours

Max. Marks : 50

Instructions: 1) Question No. 1 is compulsory.


2) Solve any four from Q.No. 2 to Q.No. 7.
3) All questions carry equal marks.
1. Define communication. Discuss any five principles of communication.
2. Compare verbal communication with non-verbal communication give suitable
examples.
3. What are Dos and Donts of technical presentation in business organization.
4. Time is the scarcest resource Peter Drucker. Discuss the statement in light of
time management technique.
5. How will you prepare for the public speech on the occasion of introducing chief
guest who is a well known software professional.
6. YOU ARE MR. YOGESH SOMAN, FRESH MCA POST GRADUATE - Write
a job application for the post of Software Programmer to Managing Director
Planet Technologies, Kothrud, Pune. Assume appropriate data.
7. Write short notes on any two :
1) Telephone Manners.
2) Group Discussion.
3) Reading Skills.

B/II/11/180

*408043*

[4080] 43

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2011


IT 43 : SOFTWARE ENGINEERING
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and 6 are compulsory.


2) Attempt any three from the remaining.
1. The railway reservation system functions as follows :
The passenger is required to fill in a reservation form giving details of his
journey. The counter clerk ensures whether the place is available. If so, entries
are made in a register, tickets are prepared, amount is computed and cash is
accepted. A booking statement is prepared in triplicate format from the
reservation register. One copy of it is retained as office copy, the other is pasted
on compartment and third is passed on to the train conductor. Besides booking
statement, cash statement is prepared at the end of each shift.
As a consultant prepare SRS and system specification for the above system.

20

2. A member of inspection team prepares a check list for inspection of a portal


developed for a company. Defects are to be recorded with reference to the
check list. Prepare format of check list and defect loging report for the same.
10
3. Explain CASE tools with its components.

10

4. Explain the prototyping and spiral models.

10

5. Design a GUI form for providing student feedback for teaching faculty and
infrastructure facilities of the institute.

10

6. Write short notes on (any four) :

(45=20)

a) Code Design
b) Web Engineering
c) Reverse Engineering
d) Types of documentation
e) Role of system analyst.
B/II/11/230

[4080] 45

*408045*

M.C.A. (Management Faculty) (Semester IV) Examination, 2011


BME-1 : MIS FRAMEWORK AND IMPLEMENTATION (Elective)
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Notes : 1) Q. No. 1 and 7 are compulsory.


2) Solve any four questions from remaining.
3) Figures to the right indicate full marks.
1. Explain the impact of information system on organizations planning and control
functions.
10
2. How information technology changing the way marketing function is performed ?

10

3. The IT infrastructure should aim at providing information not only to managers


but also to all other who are associated with the enterprise. Comment by
identifying other users of corporate IT infrastructure.
10
4. Explain the informational needs of the managers working at different levels of
managerial hierarchy.

10

5. Explain the impact of IT infrastructure on the socio-economic environment of


the organization.

10

6. What is DSS ? Explain components of DSS.

10

7. Write short notes on (any four) :

20

a) Features of MIS
b) Group Decision Support System
c) Objectives of good IT policy
d) Critical success factor in implementing IT applications
e) Expert system.

B/II/11/160

[4080] 47

*408047*

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2011


BME 3 : INFORMATION SYSTEM AUDIT
(2005 Pattern) (Elective)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No.1 and 6 are compulsory.


2) Attempt any 3 Q.s from Q.2 to Q.5.
1. a) Explain Auditing Objectives in detail.
b) Explain the various steps involved in Risk Management.

10
10

2. Explain the need and importance of digital signatures.

10

3. Explain Auditors role in S.D.L.C.

10

4. Explain IS Audit steps in detail.

10

5. What are performance measurement tools ? Explain them in detail.

10

6. Write short notes on any 4 :

20

1) Steering Committee
2) Code of Professional Ethics
3) Network Controls
4) Evidence Collection Techniques
5) Data Validation Controls.

B/II/11/130

[4080] 49

*408049*

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2011


BME-5 : DECISION SUPPORT SYSTEM (Elective)
(2005 Pattern)
Time : 3 Hours
Note :

Max. Marks : 70
1) Q.1 and Q.7 are compulsory.
2) Attempt any four from the remaining.

1. What is Data Mining ? Explain the classification of data mining tools and
techniques.

10

2. Explain the concept of EIS and list the major benefits of EIS.

10

3. Explain the database organisation and structures used in DSS.

10

4. Define MSS and detail the generic models of MSS.

10

5. Define Virtual Reality. Give few examples for virtual reality applications in business. 10
6. Discuss SDLC as a methodology for DSS development.
7. Write short notes on (any four) :

10
(45=20)

1) Frontline DSS.
2) AI.
3) OLAP.
4) Supply Chain Management.
5) GIS.

B/II/11/210

[4080] 50

*408050*

M.C.A. (Management-Faculty) (Semester IV) Examination, 2011


BME-6 : INVESTMENT TECHNOLOGY (Elective)
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) All questions carry equal marks.
1. Explain portfolio theory. Explain Markowitz graphical portfolio analysis and capital
market theory in brief.
2. Explain in detail how earning and risk are estimated with respect to equity shares
and debentures.
3. Write short notes on any two :
a) Fundamental analysis
b) Behavior of share prices-technical analysis
c) Sources of investment information.
4. Are investors attracted to mutual funds due to risk in other investment
opportunities ? Discuss on the background of present share market conditions.
5. What is Credit Rating ? How it is useful for investors ? Specify three popular
credit rating agencies in India.
6. Explain the concept fundamental analysis and technical analysis and also discuss
their utility for investors point of view.
7. How debts securities are valued ? How they are difficult from valuation of warrants
and convertibles ?

B/II/11/130

[4080] 501

*4080501*

M.C.A. (Semester V) (Management Faculty) Examination, 2011


IT 51 : HUMAN COMPUTER INTERFACE
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No. 1 is compulsory.


2) Answer any five from remaining.
3) Figure at right hand indicates full marks.
1. Answer any four :

(54=20)

a) Describe the five human factors that should be taken into account during user
interface design.
b) What are the principles used for interface design.
c) What is participatory design ? Explain with suitable example.
d) Explain the Multimedia Document Search.
e) State and explain the goals of Co-operation.
2. a) Discuss GOMS model in detail.

(52=10)

b) Explain guidelines for data entry.


3. a) What do you mean by Co-ordination of Multiple windows ? Explain.

(52=10)

b) Explain any two specification methods for interface design.


4. Explain the guidelines for form filling. Also explain the guidelines for phrasing of
menu items.

10

5. Describe usability testing. Also explain the different steps involved in usability
testing.

10

6. Explain the five-phase framework to clarify user interfaces for textual search.

10

7. Write short notes on (any two) :

(52=10)

a) Acceptability (Acceptance) Test.


b) Shared Editor.
c) Stages of LUCID.

B/II/11/2,695

[4080] 503

*4080503*

MCA (Management Faculty) (Semester V) Examination, 2011


IT 53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 and 7 are compulsory.


2) Attempt any four from remaining.
1. A reputed institute of management want to start executive MBA programme only
for working students. Institute is interested in having online admission process, fee
payment process, teaching learning process and online examination process.
Suggest various models of e-learning and find out best model for their requirements.

15

2. Explain and compare E-commerce and E-business.

10

3. Define BPO and also explain the laws of BPO.

10

4. What is E-logistics ? Explain warehouse management and transportation


10

management.
5. What is E- banking ? Suggest various securities required.

10

6. What is GIS ? How does GIS works ?

10

7. Write short notes (Any three) :

15

a) Types of embedded system


b) Retina scanning
c) Knowledge management type
d) Business Continuity Plan (BCP)
e) Digital signature.

B/II/11/2610

[4080] 505

*4080505*

M.C.A. (Management Faculty) (Semester - V) Examination, 2011


(Elective) ITE-1 : CYBER LAW AND IT SECURITY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 and Question 7 are compulsory.


2) Solve any three from remaining questions.
1. a) Explain in detail scope of IT Act.
10
b) Explain provisions in cyber law for publishing obscene information in electronic
form.
10
2. Explain Cryptography in detail. How Public Key Encryption plays role in
Cryptography ?

10

3. Explain use of electronic records and digital signatures in Government and its
agencies.

10

4. Explain jurisdiction in Trademark Disputes.

10

5. Explain offences and penalties related to Digital Signature under Cyber Crimes.

10

6. Explain establishment and composition of appellate tribunal under Cyber


Regulations.

10

7. Write short notes (any four) :


a) RSA Algorithm
b) Asymmetric Cryptography
c) Reverse Hijacking
d) Domain Names
e) Framing
f) Genesis of Cyber Law.

(45=20)

B/II/11/545

[4080] 507

*4080507*

M.C.A. (Management Faculty) (Semester V) Examination, 2011


IT E-3 : ADVANCED UNIX (Elective)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 7 are compulsory.


2) Solve any four from remaining.
3) Draw diagrams wherever necessary.
1. Explain the following system calls :

(52=10)

a) alarm ( )
b) lseek ( )
c) unlink ( )
d) dup ( )
e) chmod ( )
2. What is a process ? Explain different ways in which a process can be terminated.

10

3. What are message Queues ? Explain the structure of information maintained by


Kernel for every message Queue.

10

4. Explain pipes. Write a program to create a pipe from parent to child process and
send data through the pipe.

10

5. Explain wait ( ) and waitpid ( ) functions in detail.

10

6. Explain file sharing between two processes and the concept of file descriptor
duplication.

10

7. Write short notes on (any 4) :

(54=20)

a) Orphan process
b) Race condition
c) Sessions and process groups
d) Environment variables
e) Record Locking.

B/II/11/735

[4080] 508

*4080508*

MCA (Semester V) (Management Faculty) Examination, 2011


ITE 4 : MOBILE WIRELESS COMPUTING
(2008 Pattern) (Elective)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and 6 are compulsory.


2) Attempt any three from remaining.
1. a) Define the following terms (any five) :
i) WT P

10

ii) BSC
iii) MSC
iv) GPRS
v) IMEI
vi) SIM.
b) Explain the features of wireless network.

10

2. Explain functions of each layer in WAP architecture.

10

3. Explain problems faced in 802.11 MAC design.

10

4. What are the database used in GSM network ? What are its functions ?

10

5. What is snooping ? Why it is used in TCP ?

10

6. Write short notes on (any four) :


a) Location Management
b) Mobile Agents
c) Bluetooth
d) Routing in AdHoc network
e) Disconnected operations
f) Quality of Service in wireless.

20

B/II/11/615

[4080] 51

*408051*

M.C.A. (Semester V) (Mgmt. Faculty) Examination, 2011


IT 51 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q.1 and Q.6 are compulsory.


2) Solve any three from remaining.
1. a) Explain V & V model with suitable diagram.

10

b) Compare Manual and Automatic Testing.

10

2. Check the cyclomatic complexity for a program of adding 50 integers. Design


test cases for such code.

10

3. Explain ISO and CMM in detail.

10

4. Explain similarities and difference between software inspection and walkthrough.

10

5. Write a test case for validating e.mail ID entered by user in a form.

10

6. Write short notes (any 4) :

(45)

1) Quality Metrics
2) Boundary Value Analysis
3) Acceptance Testing
4) CAST
5) White Box Testing.

B/II/11/270

[4080] 52

*408052*

MCA (Semester V) (Mgmt. Faculty) Examination, 2011


IT 52 : ADVANCED INTERNET TECHNOLOGY
(2005 Pattern)

Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Solve any 3 from remaining questions.
1. What is digital signature ? Explain its advantages and disadvantages.

10

2. a) Write a asp code which shows the working of Hit Counter.

10

b) Write a CGI program which accepts registration details from the user and store
it in a file.
10
3. a) Explain cookies in PHP with an example.

10

b) Explain JSP action tags and directives.

10

4. a) Explain server object with example also explain Global.asa.

10

b) Write a PHP code which stores registration details in the database (Assume the
table structure).
10
5. a) Explain default objects in JSP.
b) Write a JSP program which explains session handling.

10
10

B/II/11/260

[4080] 53

*408053*

M.C.A. (Mgmt. Faculty) (Semester V) Examination, 2011


IT-53: EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note: 1) Question 1 and Q.7 are compulsory.


2) Attempt any four from remaining.
1. ABC company own 100 cars for rent purpose. All cars are fitted with Satellite
Tracking System (GPS). You as an expert, create a GIS system for ABC car
companys control room to keep track of whereabouts the rented cars. Solve the
problem with the help of necessary assumptions.
15
2. What is E-Commerce ? Discuss its advantages and disadvantages.

10

3. What is E-Banking ? Suggest various securities required.

10

4. Explain supply chain management and E-Logistics.

10

5. Explain various tools for Knowledge Management.

10

6. What is Biometric identification in context of Information Security ?

10

7. Write short notes on (any three) :

15

a) Embedded System.
b) RFID.
c) E-Agriculture.
d) Types of E-learning.
e) Warehouse Management.

B/II/11/210

[4080] 54

*408054*

M.C.A. (Mgmt Faculty) (Semester V) Examination, 2011


BM 51 : SOFTWARE PROJECT MANAGEMENT
(2005 Pattern)
Time: 3 Hours

Max. Marks: 70

Note : i) Q. No. 7 is compulsory.


ii) Solve any five questions from remaining.
iii) Figures to the right indicate full marks.
1. Explain various techniques used for time estimation in the project management.

10

2. Explain various risk associated with software project. How they are managed ? 10
3. Explain in detail change management procedure.

10

4. Compare ISO and CMM.

10

5. Explain users role in project management.

10

6. Explain various factors considered while forming teams.

10

7. Write short note on any four :

20

a) Function point analysis


b) COCOMO
c) Walkthrough
d) Project repository
e) Features of MS. Project.

B/II/11/220

[4080] 55

*408034*

M.C.A. (Management Faculty) (Semester V) Examination, 2011


IT-1 DISTRIBUTED DATABASE MANAGEMENT SYSTEM
(Elective) (2005 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Full marks are indicated to the right of each question.
Whenever necessary, state assumptions.
Give examples if required.
Q. No. 7 is compulsory, solve any five from remaining.

1. Compare the features of centralized database management system to that of


Distributed Database Management System.

10

2. Describe deadlock management in distributed Databases.

10

3. What are the different types of fragmentations ?

10

4. Discuss architecture of Heterogeneous Distributed Database Management


System.

10

5. Discuss how data is recovered in case of node and link failure.

10

6. Discuss the detection and resolution strategies for inconsistencies in DDBMS. 10


7. Write short note on (any 4) :

20

a) ODBC
b) Distributed data administrator
c) Checkpoints
d) Client server database
e) Global query.

B/II/11/130

[4080] 56

*408056*

M.C.A. (Semester V) (Management Faculty) Examination, 2011


(2005 Pattern) (Elective)
IT-2 : ARTIFICIAL INTELLIGENCE
Time : 3 Hours
Instructions : 1)
2)
3)
4)

Max. Marks : 70
Q. 1 is compulsory.
Solve any five questions from Q. 2 to Q.7.
Figures to right indicate full marks.
Draw neat and suitable diagram wherever necessary.

1. a) Define AI. Explain various AI techniques.

10

b) Discuss with the help of forward and backward reasoning.

10

2. a) Explain breadth first search algorithm with the help of suitable example.
b) List the drawbacks of heuristic search technique.

5
5

3. a) Discuss the various issues for the design of search program.

b) What is meant by Procedural Vs. Declarative knowledge ?

4. a) Write an algorithm for Best-First technique.

b) Explain the natural language processing and its importance in AI.

5. a) What are the qualities of good knowledge representation system ?

b) Discuss Min-Max algorithm with suitable example.

6. Write a space representation for the Monkey Banana problem. Analyze the
problem with respect to seven problem characteristics.
7. Write short notes (any two) :
a) Expert System.
b) Genetic Algorithm.

10

(25=10)

c) Problem Decomposition.
_________________
B/II/11/160

[4080] 57

*408057*

M.C.A. (Management Faculty) (Semester V) Examination, 2011


IT-3 : NETWORK SECURITY (Elective)
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q.1 and Q.6 are compulsory.


2) Solve any three from Q.2 to Q.5
3) Give appropriate examples wherever necessary.
1. a) Explain Clark-Wilson Access Control Model. How transformation in this model
helps in integrity of data ?
10
b) Explain Data Encryption Standard (DES) algorithm and DES function with
example.

10

2. Explain Kerberos authentication protocol with operations in it. Why it is called as


three headed dog ?
10
3. Explain four protocols defined by SSL, for web security.

10

4. Explain various services provided by PGP for e-mail security.

10

5. Explain with example Encryption, Decryption and Restriction in RSA.

10

6. Write short notes (any four) :

(45=20)

a) Access matrix
b) X.509
c) Secure Hash
d) HRU
e) MIME
f) IDEA.

B/II/11/130

[4080] 59

*408059*

M.C.A. (Management Faculty) (Semester V) Examination, 2011


(2005 Pattern)
IT-5 : VISUAL C++
(Elective)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Que. 1 is compulsory.


2) Attempt any three questions from the remaining.
3) Figures to right indicate full marks.
1. a) Design a class item having i_code, i_name, i_qty are the data members.
Write a menu driven programme to do following task by using the concept of i/o file in
c++.
1) Add item record
2) View item record
3) Delete item record.
10
b) Write a C++ programme which read a text file and print every alternative character
from file.
10
c) What is Message Map ? Explain with suitable example.

2. a) Explain various message functions for procedure oriented windows application


development.

10

b) Explain Error handling with suitable example.

3. a) Design C++ class to implement linear linked list.

10

b) Write short note on common dialog control.


4. a) Write a programme using SDK to draw freehand drawing.
b) Explain abstract class with suitable example.
5. a) Design vector array class and overload + to merge array.
b) Write note on scope operator.

5
10
5
10
5

_____________________
B/II/11/130

[4080] 60

*408060*

M.C.A. (Semester V) (Mgt. Faculty) Examination, 2011


IT 6 : HUMAN COMPUTER INTERFACE (Elective)
(2005 Pattern)
Time: 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 is compulsory.
2) Solve any five from remaining.
3) Figures to right indicate full marks.
1. Answer any four :

(54=20)

a) Explain the guidelines for data entry.


b) List and explain 5 challenges of programming in the user interface. (PITUI).
c) Explain quality of services with help of display rate and response time.
d) Explain guidelines for the design of effective error messages.
e) Compare synchronous Vs. Asynchronous interaction style.
2. Describe the five phases of framework to clarify user interfaces for textual
search.

10

3. Explain any five methods, might be used as a part of an expert review.

10

4. Explain hypertext and hyper media in detail.

10

5. State and explain various interactive devices.

10

6. Explain the different Human Diversities involved in user Interface design. Also
the five measurable human factors.
10
7. Write short notes on the following (any 2) :

(52=10)

1) GOMS model.
2) Online Vs. Printed manuals
3) Different types of menus.

B/II/11/130

[4080] 61

*408061*

M.C.A. (Semester V) (Mgt. Faculty) Examination, 2011


ITE-7 : PARALLEL COMPUTING
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No.1 is compulsory.


2) Solve any five questions from remaining.
1. Discuss the following (any four) :

(45=20)

a) Grid computing
b) Multithreading
c) Parallel virtual machine
d) Gantt chart
e) Communication latency
f) Grain packing.
2. Define performance. What are the primary attributes used to measure the performance
of a parallel computer system ? Explain.
10
3. Differentiate between control flow and data flow computing concept with example.

10

4. Write a parallel program for Gaussian elimination.

10

5. Explain self scheduling and indirect scheduling with examples.

10

6. What is Flynns classification of computer system ? Explain with examples.

10

7. Define vector processing and scalar processing. Explain the architecture of pipeline
processing.

10

8. Write short notes (any two) :

(25=10)

a) Race condition
b) Tightly coupled system
c) Spin lock
d) n-child processes.

B/II/11/160

[4080] 62

*408062*

M.C.A. (Semester V) (Mgmt. Faculty) Examination, 2011


IT 8 : ADVANCED UNIX (Elective)
(2005 Pattern)
Time : 3 Hours
Instructions :

Max. Marks : 70
1) Q. 1 and Q. 7 are compulsory.
2) Solve any four from remaining.
3) Draw diagrams wherever necessary.

1. Explain the directory related system calls with example.

10

2. Explain memory management routines in unix.

10

3. What are semaphores ? Write program to create semaphores.

10

4. Explain in detail about the unix operating system structure.

10

5. Explain various ways a process can be terminated.

10

6. What is race condition ? Why race condition occurs ?

10

7. Write short notes on (any 4) :

(54=20)

i) Environment variable in unix.


ii) I/O multiplexing
iii) Streams
iv) Reliable signal
v) Effective User ID.

B/II/11/160

[4080] 63

*408063*

M.C.A. (Management Faculty) (Semester V) Examination, 2011


IT-9 : PROGRAMMING LANGUAGES PARADIGMS
(2005 Pattern) (Elective)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 8 is compulsory.
2) Solve any 5 from the remaining.
1. What are the reasons to study programming language ?

10

2. Explain major components involved in organization of a conventional computer.

10

3. Explain the structure of compiler for converting source program into object
program.

10

4. Explain the significance of binding time classes.

10

5. Explain implicit and explicit sequence control.

10

6. Distinguish between programmer and system control storage.

10

7. Explain referencing environment of sub-program.

10

8. Write short notes on (any four) :

(45 = 20)

a) Firmware computer
b) Perl overview
c) Scalar data types
d) Fixed size elements
e) Actual and formal parameters
f) Encapsulation.

B/II/11/230

[4280] 1001

*42801001*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester I) Examination, 2012


IT 11 : COMPUTER ORGANIZATION
(New) (2012 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 7 are compulsory.


2) Solve any four questions from the remaining.
3) Draw neat diagrams wherever necessary.
1. a) Draw and explain 16-bit (80286) architecture in detail.
b) Explain parallel processing concept.
2. Convert the following :
a) (17.25)10 = (?)2
b) (2343)8 = (?)16
c) (AC4)16 = (?) 10
d) (1101.1)2 = (?)10
e) (107.125)10 = (?)16

10
5
(25=10)

3. What is addressing mode ? Explain any four addressing modes in detail.

10

4. Draw and Explain memory hierarchy structure in detail.

10

5. What is counter ? Draw and explain mod-10 counter in detail.

10

6. What is Pipelining ? Explain various hazards in pipelining.

10

7. Write short note on the following (any three) :


a) K-map
b) Multiplexer
c) Compiler and Interpreter
d) Super scalar concept.

(35=15)

B/II/12/5,765

[4280] 1005

*42801005*
Seat
No.

M.C.A. (Semester I) (Management Faculty) Examination, 2012


MT-11 : DISCRETE MATHEMATICS
(2012 Pattern)
Time : 3 Hours
Instructions :1)
2)
3)
4)

Max. Marks : 70
Question 1 is compulsory.
Attempt any two questions from the remaining.
Figures to the right indicate full marks.
Scientific calculators are allowed.

1. a) Show the following implications :

i) P Q P Q
ii) P (Q R) (P Q) (P R)
b) Obtain the PDNF for the following :

(P Q) (P R)
c) Define bijective function. Give an example.

n
n!
d) Show that = n Pr =
r
r
!
r
!
(
n
r )!

e) A box contains 10 pairs of shoes. Find the no. of ways in which 8 shoes are
selected without forming any complete pair.

f) Define Monoid and Group.

2. a) If P : Today is Monday
Q : It is raining
R : It is cold
then convert the following formula in good English sentences.
i)

Q (R P )

ii)

(P Q ) R

P.T.O.

[4280] 1005

*42801005*

-2-

b) Show that the following formula is contradiction or not.

i) (P Q ) (P Q )
ii) P ( Q R )
c) Write the following sentences in predicate formula.

i) All that glitters is not gold


ii) Some birds cannot fly.
d) Show that

P is valid from

(P Q ) , ( Q R ) and

R.

3. a) Let A = {a, b, c, d} and R : A A , where R = { (a, a), (a, c), (b, b), (b, c),
(c, a), (c, d), (d, a), (d, b) }. Find the transitive closure of R.

b) Let X = {1, 2, 3, 4, 5, 6, 7, 8, 9} and R = {(x, y) / x y is divisible by 3}. Show


that R is an equivalence relation and find the equivalence classes generated
by R.

c) Let A = {1, 2, 3} and R : A A where R = {(1, 1), (1, 2), (2, 2), (2, 3), (3, 3)}.
Find its complement and converse of R.

d) Let X = {1, 2, 3, 4, 5} and


1 1 0 1 1

1 0 1 0 1
MR = 0 1 0 0 0

1 0 0 1 0
0 0 1 0 1

Find R and draw graph of R.


4. a) 10 couples are attending a party. They have to be seated in a straight line
such that
i) Males and females alternatively
ii) Husband and wife sit together
Find the number of seating arrangements in each case.

5
7

*42801005*

-3-

[4280] 1005

b) At a gathering, there are 200 smokers, 300 hot beverage takers, 250 cold
beverage takers. Also, 110 are smokers as well as cold beverage takers, 130
smokers and hot beverage takers and 140 who can take hot and cold
beverages. There are 100 persons who are used to all the three habits. Find
the number of persons at the gathering.
c) Find the coefficient of x3yz8 in the expansion of (2x 2y + 3z2)8. Also state
multinomial theorem.
5. a) Generate the group codes from the given parity check matrix H.
1 0 1 1

H = 1 1 0 0
1 1 1 0

6
8

1 0 0

0 1 0
0 0 1

b) Define Group Homomorphism and Semigroup Homomorphism.

c) Find the number of integer solutions for

x1 + x2 + x3 = 21 such that
2 < x1 < 4, 5 < x2 < 9 and x3 > 0.

B/II/12/5,765

[4280] 101

*4280101*
Seat
No.

M.C.A. (Management Faculty) (Semester I) Examination, 2012


IT 11 : 101 : COMPUTER ORGANIZATION AND ARCHITECTURE
(New) (2008 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Q. 1 and Q. 7 are compulsory.
Solve any four from the remaining.
Draw the neat diagrams wherever necessary.
Figures to the right indicates full marks.

1. a) Draw and explain 64-bit Pentium Dual Core architecture in detail.

10

b) Define the term Software. Explain System Softwares and Application Softwares.
2. What are Interrupts ? Explain all types of Interrupts.
3. Convert the following :

5
10

(25=10)

a) (11011.001)2 = (?)10
b) (527.12)8 = (?)16
c) (FA2B.16)16 = (?)2
d) (175.3125)10 = (?)8
e) (FA2.B4)16 = (?)10.
4. What is Shift Register ? Explain any one type of Shift Register.

10

5. What is DMA ? Explain DMA techniques using different DMA transfer modes.

10

6. What is pipelining ? Explain instruction pipelining in detail.

10

7. Write short note on (any three) :

(35=15)

a) Memory Hierarchy
b) Parallel Processing
c) Decoder and Encoder
d) Programming Language Paradigm.

B/II/12/570

[4280] 105

*4280105*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester I) Examination, 2012


MT-11 : 106 : DISCRETE MATHEMATICS
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question No. 1 is compulsory.


ii) Solve any two questions from the remaining.
iii) Figures to the right indicate full marks.
1. a) Test the validity of the following argument :
I like meeting people. I like travelling also. If I like meeting people and travelling,
then I am considered to be a nice person. Hence I am a nice person.
b) Let A = {1, 2, 3, 4, 5, 6}. Let R =
relation ?

{ a, b

a b mod 2}. Is R an equivalence

c) Let G = {a, a2, a3, a4, a5, a6} be a multiplicative group, where a6 = e is the
multiplicative identity. Find the order of each element of G.
d) If a simple graph G with n vertices has more than

1 (n 1) (n 2 )
edges, is G
2

connected ?

e) Obtain the Principal Conjunctive Normal Form (PCNF) for the following :

((P Q ) (Q R)) (P R ) .

f) Let f(x) = x + 2, g(x) = x 2 and h(x) = 3x for x R , where R is the set of real
numbers. Find i) foh ii) fog iii) fohog iv) gog.
2. a) Show that the conclusion C is valid or invalid without constructing the truth
table :
P1 : ( A B ) D , P2 :

D E , P3 :

b) Symbolise the following statements :

E, C :

5
5

B.

i) All men are ambitious.


ii) Some teachers are dedicated.
P.T.O.

[4280] 105

*4280105*

-2-

c) Check the following statement is equivalent or not :

(P R) (Q R) (P Q) R .
d) Find the converse and contrapositive of the implication :

i) If i will not study discrete mathematics then i will not be good in


programming.
ii) If i am not in a good health, then I will go to a clinic.
3. a) Let A = {1, 2, 3, 4}. Compute the products

i) (3 1 4 2) 0 (2 3 1)
ii) (4 2 1 3) 0 (3 1 2).
b) Find the transitive closure by using Warshalls algorithm :
R = { 1, 1 , 1, 4 , 2, 2 , 2, 3 , 3, 2 , 3, 3 , 3, 1 , 3, 4

on A = {1, 2, 3, 4}.

c) Let A = {2, 3, 4, 6, 12, 36, 48} be a non-empty set and R be the partial order
relation of divisibility defined on A. That is, if a, b A then a divides b. Draw
Hasse diagram of R. Is it totally ordered ?

d) The compatibility relation on a set {x1, x2, ..., x6} be given by the matrix

x2

x3

x4

x5

x6

x1 x 2

x3

x4

x5

Draw the graph and find the maximal compatibility blocks of the relation.
4. a) Let g be a homomorphism from a group (G, ) to a group (H, ) , and let K be the
G
is isomorphic to H .
Kernel of g and H H be the image set of g in H then
K

*4280105*

-3-

[4280] 105

b) Find the number of code words generated by the parity check matrix H, also
find all the code words generated

1 1 0 1 0 0
H = 0 1 0 0 1 0

.
1 0 1 0 0 1

c) Let G be the group of integers under the operation of addition. Let


H = { 3K K Z }. Is H a subgroup of G ?

5. a) Verify whether the following graphs are isomorphic.

b) Show that the maximum number of edges in a simple graph with n vertices is
n (n 1)
.
2

c) Obtain the incidence and adjacency for the following graph :

d) Define :

i) Connected graph
ii) Euler path
iii) Planar graph.

B/II/12/760

[4280] 203

*4280203*
Seat
No.

M.C.A. (Management Faculty) (Semester II) Examination, 2012


IT-23 : 203 : SOFTWARE ENGINEERING
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions:1) Q. 1 and Q. 7 are compulsory.


2) Attempt any three from the remaining.
1. A company dealing in spare parts would like to change the existing sales system
to a web based application. The company has their products listed on the website
through which they can receive enquiries. These enquiries are processed online.
The delivery note and invoice is also sent by mail which is used for cross
validation by the client.
a) Draw a DFD for the above case.

10

b) Prepare SRS & system specification for the above case.

10

2. The primary goal of software engineering is to improving the quality of software.


Elaborate the need of software engineering for software projects.

10

3. In a university campus people are coming for various work related to various
department of university. It is decided to install a computer terminal at each
entry point security gate, so that record of each and every person entering into
university campus is maintained for vigilance purpose. A record containing
persons identity, nature of work, department to visit, time-in and time-out is to
be maintained.
Design a data entry screen and also state input validations.
4. Explain various tools available for project management support in case tool.

10
10
P.T.O.

*4280203*

[4280] 203

5. What is documentation ? Explain the importance of documentation in systems


design.
10
6. Explain method of estimating software maintenance cost. Give various components
of legacy systems.
10
7. Write short notes (any four) :

20

a) Code design
b) Reverse Engineering
c) Spiral model
d) Decision Tree & Decision Table
e) Types of requirements.

B/II/12/1,850

*4280205*

[4280] 205

Seat
No.

M.C.A. (Mgt. Faculty) (Semester II) Examination, 2012


MT - 21 : 205 : PROBABILITY AND COMBINATORICS
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and Question No. 4 are compulsory.


2) Solve any one from question No. 2 and 3 and any one from
Question No. 5 and 6.
3) Figures to the right indicate full marks.
4) Use of calculator and statistical table is allowed.
1. a) State and prove principles of Inclusion and Exclusion.

b) n persons are seated on n chairs at a round table. Find the number of ways
that two specified persons are sitting next to each other.

c) 9 gentlemen kept their coats at the gatekeeper while entering a hall. The
gatekeeper mixes the tokens and return the coats at random. In how many
ways gentlemen will get their coats such that exactly 3 of them get their
correct coats.

d) Solve the recurrence relation


an + an 1 6an2 = 0; a0 = 2, a1 = 5.
2. a) Find the number of non-negative integer solutions of the equation.

5
7

x1 + x2 + x3 = 21 if
2 < x1 9
4 x2 7
6 x3 12
r r + 1 r + 2
n n + 1
+
+ . . . + =

b) i) +
r r r
r r + 1
2n
n
2
ii) = 2 + n .
2
2
Prove the above equations by using combinatorial arguments.

8
P.T.O.

[4280] 205

-2-

*4280205*

3. a) Find the coefficient of w3x2yz2 in the expansion (2w x + 3y 2z)8 and


also find the number of terms.
b) Determine the discrete numeric function of generating function.

7
8

7z
A(z) =
(1 2z )(1 + 3 z)

4. a) Define :
i) Axiomatic approach of probability
ii) State Bayes theorem.

b) A problem in statistics is given to three students A, B, and C whose chances


1 1
1
of solving it are , and respectively. Find the probability that the
3 4
5
problem will be solved if they all try independently.

c) The following table represents the joint probability mass function of a discrete
random variable (X, Y) :
X

2K

4K

6K

4K

6K

8K

6K

8K

10 K

Find
i) K
ii) Marginal distributions
iii) Conditional distribution of Y given X = 1
d) State and prove additive Property of Gamma distribution.

*4280205*

[4280] 205

-3-

5. a) Find mean and variance of Negative Binomial Distribution.

b) The following is the probability distribution function of a discrete random


variable X
X:

P (X) :

0.1

0.2

0.15

0.05

0.25

0.15

0.05

0.05

Find
i) Cumulative distribution function of X
ii) P (X is even)

iii) P X = 3 X < 0

6. a) For the following joint probability density function


f(X, Y) = K (3x2 + 2y2) ; 0 x 3
2 y 4
= 0 otherwise
Find
i) K
ii) f X(x)
iii) fY(y).

b) In a normal distribution, 31% of the items are under 45 and 8% are over
64. Find the mean and standard deviation of the distribution.

______________
B/II/12/3,575

[4280] 35

*428035*
Seat
No.

M.C.A. (Semester III) Examination, 2012


IT 36 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) First question is compulsory.


2) Solve any 5 out of remaining.
3) Figures to right indicate marks.
1. a) A Premier Institute has well-stocked Library providing services to various
members viz. students, research scholars, faculty members, visiting staff,
staff. The Library has books, journals, periodicals, magazine, newspaper and
CDs. A member can borrow a book for a period of one week, journals and
periodicals for two day and CD for one day. A fine Rs. 5/- per day will be
charged for not returning on time. The rules for issuing number of books are
as following :
Research scholars

3 books

Faculty members

5 books

Visiting Staff

3 books

Staff

1 books

To avail the additional books every members has to obtain a special Permission
from their respective HOD. Draw the use diagram and Class diagram for the
above case.
b) Discuss steps involved in designing data access layer.
2. Explain various approaches for identifying classes.

15
5
10
P.T.O.

*428035*

[4280] 35
3. Compare Grady Booch Methodology with OMT.

10

4. a) Draw a sequence diagram for sending SMS to your friend.

b) Compare objects oriented versus relational database.

5. Draw the activity diagram and class diagram for various operations done using
ATM.

10

6. Explain RUP process in detail.

10

7. Write short notes on (any two) :

10

a) Aggregation and generalization


b) Booch methodology
c) Any two pattern
d) CRC.

B/II/12/50

*4280403*

[4280] 403

Seat
No.

M.C.A. (Semester IV) (Mgt. Faculty) Examination, 2012


IT 43 : 403 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Solve any five from the remaining.
3) Mention assumptions made for solving the case studies.
1. Newtons Institute offers various courses on various IT subjects. Teachers are
assigned to maximum two courses. The subjects are allotted according to their
area of specialization. There is a group of course coordinators in the institute
who manage the courses including course contents, assigning subject to teacher
and scheduling of lectures.
Draw the following diagrams for above case :
a) Use case diagram.
b) Class diagram.

10
10

2. Explain RUP in detail.

10

3. a) Draw a sequence diagram for changing the password of your E-mail Account.

b) Draw a collaboration diagram for retrieving the forgotten password of your


E-mail Account.

4. Explain characteristics of good test plan.

10

5. Draw an activity diagram for the following :

10

Sending an e-mail to your friends from the contact list having a greeting card as
an attachment.
6. Draw the state transition diagram for online shopping of books.

10

7. Write a short note on (any 2) :


1) Approaches for identifying classes.
2) Object relational mapping.
3) Inheritance.
4) Aggregation and composition.

10

B/II/12/685

[4280] 406

*4280406*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester IV) Examination 2012


BME 2 : FOUNDATION OF DECISION PROCESS (Elective)
(New) (2008 Pattern)
Time : 3 Hours
Instructions : 1)
2)
3)
4)

Max. Marks : 70
Q. No. 1 is compulsory.
Solve any two questions from the remaining.
Figures to the right indicate full marks.
Use of Electronic Calculator is allowed.

1. a) Explain with suitable example different criterion in decision making.

10

b) Mr. Mehra had to decide whether or not to drill a well on his farm. In his
village, only 40% of the wells drilled were successful at 200 feet of depth.
Some of the farmers who did not get water at 200 feet, drilled further upto 250
feet, but only 20% struck water at 250 feet. Cost of drilling is Rs. 50 per feet.
Mr. Mehra estimated that he would pay Rs. 18,000 during a 5-year period in
the present value terms, if he continues to buy water from the neighbour
rather than go for the well which would have a life of 5 years.
Mr. Mehra has three decisions to make :
1) Should he drill upto 200 feet and
2) If no water is found at 200 feet, should he drill upto 250 feet.
3) Should he continue to buy water from his neighbour ?

10

c) Arrival rate of cars to a certain service station is according to Poisson


distribution with an average time of 50 minutes between the two consecutive
arrivals. The length of service needed by a car is assumed to be exponentially
distributed with mean of 25 minutes :
1) Determine the probability that a car arriving at the station will have to wait.
2) Average time spent by a car in a service station.
3) Determine the probability that a car arriving at the station will have to
wait for more than 10 minutes for the service.
4) Find the flow rate of the cars if the average waiting time of the cars is
35 minutes.
10
P.T.O.

[4280] 406

*4280406*

-2-

2. a) Explain two person zero-sum game. Illustrate with example.

10

b) Western Travel agents have a touring van that requires a special grade of
fuel. During the past few months the vans use has varied so much that the
amount of fuel necessary for keeping the van operating has varied considerably.
A study of past 200 days reveals that demand for the car has flactuated
between 0 to 5 trips/week
Trips/week
0
1
2
3
4
5
Frequency
16
24
30
60
40
30
Using the following random numbers, simulate the demand for a ten week period :
26, 84, 21, 38, 36, 73, 16, 81, 59, 83
Also find average demand per week for the car.

10

3. a) An ice-cream retailer, buys ice cream at a cost of Rs. 5 per cup and sells it
for Rs. 10 per cup; any remaining unsold at the end of the day can be disposed
of at a salvage price of Rs. 3 per cup. Pas sales has ranged between 15 and
18 per day.
10
Demand
15
16
17
18
Probability 0.10
0.20
0.40
0.30
How many cups of ice cream retailer should kept in a stock so as to maximize
its profit ? What is the optimum expected profit ?
b) There are two companies A and B in a certain city. Both companies have
similar reputation and the total number of customers is equally divided between
two companies. Both the companies want to attract a greater number of
customers by using different media of advertisement. By seeing the market
trend, the company A constructed following pay-off matrix where numbers in
the matrix a gain or loss of customers to it.

Company A

Newspaper

Company B

Radio

Newspaper
Radio
T.V.
Magazine

40
10
100
30

50
25
30
20

T.V.

Magazine

17
10
60
35

80
60
90
75

Find optimal strategies for both the companies and also find value of the
game.

10

*4280406*

-3-

[4280] 406

4. a) On January 1 (this year) Bakery A had 30% of its local market share while
other two bakeries B and C had 40% and 30% respectively of the market
share. Based upon a study by a marketing research firm the following facts
were compiled. Bakery A retains 85% of its customers while gaining 5% of
competitor Bs customers and 15% of Cs customers. Bakery B retains 90%
of its customers. While gaining 8% of As and 5% of Cs customers. Bakery C
retains 80% of its customers while gains 7% of As customers and 5% of Bs
customers.
What will each firms share be on January 1 next year ?
What will each firms market share be at equilibrium ?
b) Write short notes on (any two) :
1) Various queue models.
2) Monte Carlo simulation.
3) Utility theory in decision making.

10

10

B/II/12/

[4280] 407

*4280407*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


BME 3 : Elective : 413 : INFORMATION SYSTEM AUDIT AND
GOVERNANCE
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and Q. No. 6 is compulsory.


2) Attempt any 3 questions from Q. 2 to Q. 5.
1. You have been appointed as a lead auditor for auditing work of an Online
Examination System. Perform following tasks :

20

a) Identify necessary security issues on basis of physical controls.


b) Identify necessary security issues on basis of logical controls.
c) Required validation controls.
d) List of evidences.
2. Explain BCP Architecture in detail.

10

3. Explain the role of DA and DBA in Auditing.

10

4. Explain any two evidence collection techniques in detail.

10

5. Explain Hardware and Software procurement controls in detail.

10

6. Write short notes on (any 4) :

20

1) Application controls
2) Internet security
3) Segregation of duties
4) ISACA
5) Long term and short term plans.

B/II/12/285

[4280] 408

*4280408*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


BME 4 : Elective : 414 : COLLABORATIVE MANAGEMENT
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Attempt any five questions.


2) Support your answers with relevant examples.
3) All the questions carry equal marks.
1. The scope of collaborative management methods used in the corporate
environment is often determined by the nature of the business, the size of the
management team, and the types of operational issues that are common to that
particular business model. Discuss.
2. One plus one makes three : this equation is the special alchemy of a merger or
an acquisition. State the features of merger and acquisition.
3. Environmental Threat and Opportunity Profile provides insight to the strategist
to sense a favorable impact on the organization. Explain the study of sector
based factors impact on the organization.
4. Write a detailed note on the role of Leadership style, Corporate Culture, Values
and Ethics in effective implementation of strategy.
5. Elaborate the process of development of corporate strategies with the help of
any industry example.
6. What are the behavioral and functional issues in strategy implementation ?
7. Write short notes on any two :
a) Vision and Mission
b) Project implementation
c) The Mckinseys 7s frame work model y
d) GE 9 Cell Model.

B/II/12/275

[4280] 42

*428042*
Seat
No.

M.C.A. (Semester IV) (Mgmt. Faculty) Examination, 2012


402 BM-41 : SOFT SKILLS
(2005 Pattern)
Time : 2 Hours

Max. Marks : 50

Instructions : 1) Q. No. 1 is compulsory.


2) Solve any three questions out of remaining.
1. Write short notes on any two of the following :

14

a) Signs and symbols


b) Time management
c) Eye contact
d) Reading skills.
2. Define communication. Explain the process of communication with the help of a
neat diagram.
12
3. Discuss the importance of listening. What are the barriers to effective listening ?

12

4. Write a job application. You are Mr. Ashok Patil applying for the post of Jr. Programmer
in CibaSoft Ltd., Pune. Assume appropriate skill set.
12
5. Define a Business Report. Discuss its importance. State how reports help
managers.

12

6. What is meant by Upward and Downward communication ? What are the methods
used by organization for encouraging upward and downward communication.
12

B/II/12/210

[4280] 47

*428047*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


405 Management Elective : BME 3
INFORMATION SYSTEM AUDIT
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No.1 and 6 is compulsory.


2) Attempt any 3 from Qs. from Q. 2 to Q. 5.
1. a) What is the need of evidence collection in Auditing ? Explain any two evidence
collection techniques in detail.
10
b) Differentiate between Management Controls and Application Controls.

10

2. Explain various procurement controls in detail.

10

3. Explain auditors role in Hardware and Software Procurement.

10

4. Explain various Input Validation Control.

10

5. Explain various network controls for web based shopping system.

10

6. Write short notes on (any 4) :

20

1) Risk Management.
2) Information security.
3) E-commerce Security Issues.
4) Control flow chart.
5) ISACA standards.

______________
B/II/12/130

[4280] 48

*428048*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


405-BME-4 : Management (Elective)
COLLABORATIVE MANAGEMENT
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) Support your answers with relevant examples.
3) All questions carry equal marks.
1. Explain role of the BCG model in product life cycle theory with the help of
suitable diagram.
2. Discuss the business strategy of merger and acquisition as a managerial tool
for magnifying long-term profitability by expanding their operations.
3. The GE matrix identifies the optimum business portfolio. Comment.
4. What are the structural and functional issues in strategy implementation ?
5. Elaborate the process of development of corporate strategies with the help of
any industry example.
6. A value chain is a chain of activities for a firm operating in a specific industry.
Explain the concept and discuss its competitive advantages.
7. Write short notes on any two :
a) Porters five forces framework
b) Leadership style
c) Core competencies
d) Mckinseys 7s frame work.

B/II/12/130

[4280] 49

*428049*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2012


405 Management Elective : BME 5 : DECISION SUPPORT
SYSTEMS (Old)
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 7 are compulsory.


2) Attempt any four out of remaining.
1. List the major components of DSS and briefly define each of them.

10

2. Explain traditional system development life cycle and state alternative development
methodologies.
10
3. Explain ES and the factors which are important for implementing ES.

10

4. Explain the database organization and structure used in DSS.

10

5. What is data mining ? Explain the various data mining techniques with example.

10

6. Give a brief overview of DSS and state the differences between MIS and DSS.

10

7. Write short notes on (any four) :

(45=20)

a) Supply chain management


b) GIS
c) Data warehouse
d) Group DSS
e) AI.

B/II/12/230

[4280] 50

*428050*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2012


405 : Management Elective : BME-6 : INVESTMENT TECHNOLOGY
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Attempt any five questions.


2) All questions carry equal marks.
1. What are mutual funds ? Describe the types of schemes offered by the mutual
funds.

14

2. Discuss the investment portfolio on diversified pattern. How it helps maximization


of return on total investment ?
14
3. Discuss the role of information technology to facilitate the investor. Elucidate
with the help of suitable example.

14

4. What is technical analysis ? How does it help the investors in various types of
Investment proposals ?

14

5. What are venture capital funds ? Comment on the venture capital scenario in
India.

14

6. Describe the products that you think are financially engineered.

14

7. Write short notes on any two :

14

i) Markowitz theory
ii) Valuation of Shares
iii) Credit Rating.

B/II/12/130

[4280] 503

*4280503*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2012


IT- 53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Question 1 and question 7 are compulsory.


2) Attempt any four questions from remaining.
1. An IT company has its head office at Bangalore. It has 100 branches spread
across Asia, Europe, America and Africa. All the branches and head offices are
connected to each other through a stable network. As a network consultant,
suggest a suitable BCP assuming the occurrence of threats to the branch offices
and the head office in near future.
15
2. Explain various electronic payment methods. How transactions are performed
in E-banking.
10
3. Explain supply chain management and E-logistics.

10

4. What is GIS ? Explain various standards and its implementation.

10

5. What is Biometric Identification in context of Information Security ?

10

6. What is E-Governance ? Explain various strategies and tactics for implementation


of E-Governance.
10
7. Write short notes on (any three) :

15

a) E-Agriculture
b) RFID
c) ECS
d) Digital Signature
e) BPO.

B/II/12/3,585

*4280505*

[4280] 505

Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


ITE-1 : Elective : CYBER LAW AND IT SECURITY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Que. 1 and Que. 7 are compulsory.


2) Solve any three from remaining questions.
1. A) Read the following case and explain in detail under which sections the case
can be registered and what will be the charge or fine implied of the person ? 10
Pune police have arrested a hacker by name Rakesh (name change) for
hacking into a financial website. Although the hacker couldnt break into the
main server of the financial institution, which was well secured by the financial
institution. The accused person could make some addition to the home page
of the financial website and has added a string of text to the news module of
the home page of the website. Police were able to crack the case by following
the trace left by the hacker on the web server of the financial institution. The
financial institution has maintained a separate server for financial online
transactions, for which utmost security has been taken by the financial
institution. The website was hosted on a different server which comparatively
had lesser security.
The hacker Rakesh (name changed) is a 10th Pass youngster of 23 years
old. He has done computer courses like CCNA, MCSE etc. But he is a computer
addict. He sits before the computer for almost 16 to 20 times each day. He
has mostly used the readymade hacking tools, to hack into any website. He
goes to a particular website on the web, which facilitates him to see the entire
directory structure of that website. Then using various techniques, such as
obtaining a password file, he gets into the administrators shoes and hacks
the website.
B) Explain establishment and composition of Appellate tribunal.

10
P.T.O.

*4280505*

[4280] 505
2. Explain intersection of domain name and the trademark law.

10

3. Explain legal recognition of electronic record and digital signature.

10

4. What is encryption ? How mathematical base is used in encryption.

10

5. What is E-Governance ? Explain the application of E-Governance.

10

6. What are the powers of adjudicating officer to impose penalty ?

10

7. Write short notes (any 4) :

20

a) Digital signature and PKI


b) Cyber squatting and reverse hijacking
c) Certifying authorities
d) Powers of controllers
e) Genesis of cyber law
f) RSA algorithm.

B/II/12/555

[4280] 506

*4280506*
Seat
No.

M.C.A. (Semester V) Examination, 2012


(Management Faculty)
ITE 2 : Elective : PROGRAMMING LANGUAGE AND PARADIGMS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 8 are compulsory.


2) Solve any four from the remaining.
1. Explain program interpretation and execution in conventional computer with block
diagram.
15
2. Explain how the programming environment affects the language design.

10

3. Explain analysis of source program with suitable diagram.

10

4. Explain the layers of virtual computer for a web application.

10

5. Explain the specification and implementation of elementary data types.

10

6. Explain implicit and explicit sequence control with suitable constructs.

10

7. Explain sub-program sequence control with example.

10

8. Write note on (any three) :

(35=15)

a) Firmware computer
b) Fixed and variable size elements
c) Methods for parameter transmission
d) Compiler and interpreter
e) Features of C language.

B/II/12/3,005

[4280] 53

*428053*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2012


IT-53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 and Question 7 are compulsory.


2) Attempt any four questions from remaining.
1. As a RFID steering committee head, suggest a suitable RFID system
implementation for an electronic toll collection, monitoring and receipt printing
system for Maharashtra Government. The system will be implemented at 65 toll
plazas throughout the State of Maharashtra.
15
2. Explain various models of E-Governance. Which model is successfully
implemented in India ?

10

3. Explain components of embedded system with their functionality.

10

4. What is E-Banking ? Suggest various securities required.

10

5. Explain supply chain management and E-logistics.

10

6. What is E-Commerce ? Discuss its advantages and disadvantages.

10

7. Write short notes on (any three) :

15

a) Warehouse Management
b) GPS
c) E-Agriculture
d) ECS
e) Knowledge Management.

B/II/12/245

[4280] 54

*428054*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


BM 51 : SOFTWARE PROJECT MANAGEMENT
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 is compulsory.
2) Solve any five from Q. 2 to Q. 8.
1. a) Draw a network diagram and find critical path.
Activity

Predecessors

Duration

Y, Q

b) Explain in detail the process of Software Team Management.

10

10

2. Illustrate the project cost estimation methods in detail.

10

3. Explain the process of change management.

10

4. Testing is crucial part in project comment.

10

5. Explain major factors involved in project success.

10

6. Explain Risk Management in detail.

10

7. Explain the involvement of users in project management.

10

8. Write short note on (any two) :


1) Quality Assurance Vs Quality Control
2) SDLC Vs Project Life Cycle
3) MS-Project
4) Group behaviour.

10

B/II/12/265

[4280] 58

*428058*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester V) Examination, 2012


Management Elective : IT-4 : MOBILE COMPUTING
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Question No. 1 and 6 are compulsory.


2) Attempt any three from remaining.
1. a) Define the following terms (any five) :
i) MAC
ii) BSC
iii) DCF
iv) GPRS
v) PRN
vi) PIN

10

b) Explain security layer of WAP. What problem does the WAP security layer
causes ?
10
2. What are the main benefits of a spread spectrum ? How can spreading be
achieved ?

10

3. What is a VLR database overflow and why is it a big issue ? Explain.

10

4. Describe the main steps in inter-BS handoff procedure.

10

5. a) What is hidden node problem ? How it is resolved ?


b) Explain features of wireless network.

10

6. Explain fisheye state routing.

10

7. Write short notes (any four) :


a) HIPER LAN
b) MMS
c) CDMA
d) Qos in wireless
e) Blue tooth.
f) Forward Error Correction (FEC)

20

B/II/12/130

[4280] 61

*428061*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


Management Elective : IT-7 : PARALLEL COMPUTING
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 is compulsory.


2) Solve any four questions from remaining.
1. Discuss the following (any two) :

(25=10)

a) Gantt chart
b) Hyper threading
c) Communication latency
d) Cluster computing
2. a) Discuss any two applications of parallel processing.

b) Discuss, what are the primary-attributes used to measure the performance of a


parallel computer system ?

3. Compare and contrast the following :


a) Vector processing and array processing

b) Instruction pipelines and arithmetic pipelines.

4. What is control flow computing and dataflow computing concept ? Explain with
example.

15

5. What is Plynns classification of computer system ? List salient features of


parallel systems.

15

6. a) Write a program of PVM to give a listing of the slave or spawned program.


b) Write a shared memory program for parallel system, to add elements of an
array using two processors.

8
7

B/II/12/175

*42801002*

[4280] 1002

Seat
No.

M.C.A. (Semester I) (Management Faculty) Examination, 2012


IT-12 : C PROGRAMMING
(2012 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Question 1 is compulsory.


2) Solve any six questions from Q. 2 to Q. 8.
3) Assume suitable data whenever necessary.
1. Find and explain the output of following programme (any four) :

10

i) Main ( )
{ int i, n;
char * x = Pune ;
n = str len (X) ;
*x = X [n];
for (i = 0; i < n; ++ i)
{ printf (%s \n, X) ;
X++;
}
}
ii) main ( )
{ int i = 10;
i = ! i > 14 ;
printf (i=%d, i);
}
P.T.O.

[4280] 1002

-2-

*42801002*

iii) # define square (x) x * x


main ( )
{ int i;
i = 64/square (4) ;
printf (%d, i);
}
iv) main ( )
{ int i = 0, j = 0;
if (i && j++)
printf (%d,%d, i ++, j) ;
printf (%d, %d, i, j) ;
}
v) Main ( )
{ int i = 0;
while (+ (+ i ) ! = 0)
i = i ++;
printf (%d, i) ;
}
2. a) Write a program to print following output.

A
B C
D E F
G H I J.
b) Write a C program to sort numbers in ascending order using pointer.

*42801002*

-3-

[4280] 1002

3. a) Write a C program to insert substring into a string.

b) Write a C program to find the highest common factor using recursion.

4. Write a C program for ATM Transaction (Consider currencies Rs. 1,000,


Rs. 500, Rs. 100 only).

10

5. Create a structure that holds information like Employee Code, name and date of
joining. Write a program to display the name of those employee whose tenure is
3 or more than 3 years.
10
6. The X and Y co-ordinates of 10 different points are entered through the keyboard.
Write a program to find the distance of last point from the first point (sum of
distances between consecutive points).
10
7. Write a program to read the source file and copy the same to target file by
replacing all spaces with $. Use command line argument for accepting source
and target file names.
10
8. a) Write a C program to draw a following pattern.

b) Write short notes on :

Dynamic and static memory allocation in C.

B/II/12/5,765

[4280] 1003

*42801003*
Seat
No.

M.C.A. (Semester I) (Mgt. Faculty) Examination, 2012


IT 13 : SOFTWARE ENGINEERING
(2012 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q.1 and Q.6 are compulsory.


2) Attempt any three from the remaining.
1. Just Read .Com an online library makes books available to its registered members
any time. For life time membership an amount of Rs.10,000/- has to be paid and
annual membership costs Rs.1,000/-. A member can issue as many books he
wants in a month, but at a time can avail maximum 2 books. Members need to
deposit Rs. 1,000/- as caution money. A member cannot keep a book for more
than a month. If so, a fine of Rs.10/-day will be charged. Home delivery facility
is given by the organisation. The system should keep track of the following.
1) Issue and Return of books.
10
2) The fine amount to be collected from the members, in case of late return.
a) Draw DFD upto first level.
b) Prepare SRS for the above case.
10
2. Explain maintenance and the methods of estimating maintenance cost.

10

3. Explain CASE tools with its components.

10

4. Explain the relationship among software process, project and product. Elaborate
the need of software engineering for software projects.
10
5. Design an itemwise Sales Analysis Report on periodical basis which will be
useful for an organisation for decision making.
6. Write short notes on (any four) :
a) Spiral model
b) Decision tree
c) Reverse engineering
d) Agile process
e) Fact finding techniques.

10

(45=20)

B/II/12/5765

[4280] 1004

*42801004*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester I) Examination, 2012


BM-11 : PRINCIPLES AND PRACTICES OF MANAGEMENT AND
ORGANIZATIONAL BEHAVIOR
(2012 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 is compulsory.


2) Attempt any 3 from the remaining.
3) Figures to the right indicate full marks.
1. a) What is Organisation ? Define principles of organization and classify the
different organizational structures. Which organizational structure is suitable
for large scale industries ?
15
b) The needs of human beings change / alter continuously in a definite order
who was the management thinker who mapped these needs into motivational
theory ? Explain with diagram.
10
2. Why the theory of Modern management is valid in recent times also ?

15

3. What roles do cohesiveness and norms play in shaping group performance ?

15

4. Why decision making is important in the growth of the organization ?


What are different environments of decision making ?

15

5. What are the different ego states ? Explain use of transactional analysis for
conflict management.

15

6. Write short notes any three :

15

1) Centralisation Vs Decentralisation
2) Planning
3) Qualities of leader
4) Delegation
5) JOHARI window.

B/II/12/5,765

[4280] 102

*4280102*
Seat
No.

M.C.A. (Management Faculty) (Semester I) Examination, 2012


IT-12 : 102 : C PROGRAMMING
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions: 1) Question 1 is compulsory.


2) Solve any six questions from Q.2 to Q.8.
3) Assume suitable data wherever necessary.
1. a) Find and explain the output of the following program.

10

1)
void main ( )
{
int i = 1, j = 1, k = 0, l = 2, m;
m = i ++ && j ++ && k ++ !! l++;
printf (%d %d %d %d %d, i, j, k, l, m) ;
}
2)
# define FALSE 1
# define TRUE 1
# define NULL 0
void main ( )
{
if (NULL) puts (NULL) ;
else if (FALSE)
Puts (TRUE) ;
else
puts (FALSE);
}

P.T.O.

[4280] 102

-2-

*4280102*

3) void main ( )
{
char s [ ] = man;
int i ;
for (i = 0 ; s [i] ; i ++)
{
printf (/n %c %c %c, %c, s [i], * (s+i), * (i+s), i [s]);
}
}
4)

void change (int *p, int n)


{
int i ;
for (i = 0 ; i < n ; i ++)
* (p + i) = * (p + i) + 5 ;
}
void main ( )
{
int a [ ] = {2, 4, 6, 8, 10} ;
int i ;
change (a, 5) ;
for (i = 0; i < = 4; i ++)
printf (%d, a [i]) ;
}

*4280102*

-3-

[4280] 102

2. Write a program which accepts the array of integers and find LCM and GCD.
3. a) Write a program which will accept a number find whether the given number is
perfect, deficient or abundant number.
b) Write short note on C- storage classes.

10
5
5

4. Write a program to read C program file and count the following in the complete
C program.
10
i) Total number of statements.
ii) Total number of opening brackets ([, (, {).
5. Write a program to read a character array and count number of vowels in it using
pointer to array.
10
6. Consider structure
Student
{ int. roll no;
char name [ ];
char course [ ] ;
}

10

Accepts details of 100 students in array of structure. Display details of students


in array of structure. Display details of students who are for MCA course.
7. a) Write a program to print the following pattern.
1
2 3
3 4
5
4 5
6
7
5 6
7
8 9

b) Write a program for a moving car, the car can be drawn using rectangle and
circle.
8. Write a C program to append contents of one file to another file. Filenames
should be accepted from the user through command line.

5
10

B/II/12/2,165

[4280] 103

*4280103*
Seat
No.

M.C.A. (Management Faculty) (Semester I) Examination, 2012


BM 11:- 103 : PRINCIPLES AND PRACTICES OF MANAGEMENT AND
ORGANIZATIONAL BEHAVIOUR
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No.1 is compulsory.


2) Attempt any 3 from the remaining.
3) Figures to the right indicate full marks.
1. A) Define management. State the features and functions of management.

15

B) Leaders and managers carry diverse abilities-Comment by enumerating the


essential qualities of leader and styles of leadership.
10
2. What are the different ego states ? Explain use of transactional analysis for
conflict management.

15

3. Why Scientific management could not attract the promoters of behavioural


approach ? On the other hand explain why the theory of Modern management is
valid in recent times also ?
15
4. The needs of human being change/alter continuously in a definite order who
was the management thinker who mapped these needs into motivational theory ?
Explain with diagram.
15
5. Discuss the 5 stage Group development. What roles does cohesiveness and
norms play in shaping group performance ?

15

6. Write short notes 5 each :

15

1) Centralization Vs decentralisation
2) Decision making environment
3) Planning
4) Conflict management
5) delegation

B/II/12/570

[4280] 104

*4280104*
Seat
No.

M.C.A. (Management Faculty) (Semester I) Examination, 2012


IT 13 : 104 : OPERATING SYSTEM CONCEPTS
(2008 Pattern)
Time : 3 Hours

Total Marks : 70

Note : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three from remaining.
3) Draw neat diagrams wherever necessary.
1. A) Explain process synchronization concept with the help of semaphore.
B) Explain page table implementation in the memory management.
2. A) Differentiate between Internal and External Fragmentation.

10
10
5

B) Explain multiprocessing thread scheduling algorithm.

3. How NFS differs from NTFS ? Explain in brief about directory structure.

10

4. Explain features of NOS and compare it with GOS.

10

5. Explain various disk scheduling algorithms with example.

10

6. Write short notes (any four) :

(54=20 Marks)

a) Disk performance issues


b) FCB
c) States transition diagram
d) RMI
e) Context switching.

B/II/12/775

[4280] 11

*428011*
Seat
No.

M.C.A. (Semester I) (Mgmt. Faculty) Examination, 2012


IT 11 : INFORMATION TECHNOLOGY AND PROGRAMMING
METHODOLOGIES
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q.1 and Q.6 are compulsory.


2) Attempt any three from the remaining.
1. a) Draw basic block diagram of digital computer and explain the function of each
component.
10
b) Solve the following :

i) (20)10(BAC)16 = ( ) 2

ii) (BABA)16 (762) 8 = ( )8.

c) What is a logic gate ? Explain various logic gates.

2. Explain various numbering and coding systems used in computers.

10

3. What is a modem ? Explain its types with advantages and disadvantages.

10

4. Define algorithm and flow chart. Write an algorithm to calculate factorial of any
given number.

10

5. a) Explain the types of software with examples.


b) Explain pre-test and post-test loop statements.
6. Write short notes on (any four) :

5
5
(45=20)

a) Virtual memory.
b) Binding.
c) Input devices.
d) BNF.
e) Image file formats.

B/II/12/230

[4280] 201

*4280201*
Seat
No.

M.C.A. (Semester II) (Management Faculty) Examination, 2012


IT-21-201 : DATA STRUCTURES USING C
(2008 Pattern)
Time : 3 Hours
Instructions: 1)
2)
3)
4)
5)

Max. Marks : 70
Q. No. 1 is compulsory.
Solve any four from the remaining.
Make suitable assumptions if necessary.
Draw suitable diagrams if needed.
Figures to the right indicate full marks.

1. A) A int array is defined as int array 1[250] [100] [30] [10] find the address of cell
array 1 [100] [50] [10] [5].
B) Consider the following graph :

5
4

a) Generate the output of BFS algorithm considering A as the starting vertex.


b) Generate the output of DFS algorithm considering A as the starting vertex.
c) Write adjacency matrix.
d) Write adjacency list.
C) Write a function to generate BFS output for a graph implemented using array.
5

P.T.O.

*4280201*

[4280] 201

2. A) Write a program for multiplication of two polynomial expressions using link


list.
B) Write a function for insertion of a node in a threaded Binary Tree.

7
7

3. A) Write a program to convert infix expression to postfix form.

B) Evaluate the following prefix expression :

+ AB C + DE
where
A = 14, B = 3, C = 2, D = 5, E = 6
Show contents of stack at each step in a tabular form.
4. A) Write functions for insertion and deletion of a node in circular singally link list.
B) Write a program to create a Binary Search Tree using array.

5. A) Write the functions for insert and delete elements in priority queue implemented
using link list.
B) Write a function for non-recursive preorder traversal of a Binary Tree.
6. A) Write a non-recursive function to find whether the Binary Tree is balanced or
not.
B) Write short note on :

7
7
7
7

a) Expression Tree
b) Time complexity.

B/II/12/2,725

[4280] 202

*4280202*
Seat
No.

M.C.A. (Management Faculty) (Semester II) Examination, 2012


IT- 22 202 : DATABASE MANAGEMENT SYSTEM
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. No. 1 is compulsory.


2) Solve any 5 from remaining questions.
3) State assumptions wherever necessary.
1. a) Study the following purchase order details and normalize the data upto 3 Nf.

12

Purchases Order
P.O. No. ...............
P.O. Dt ................
Supplier Name and Address
Sr. No.

Item No. & Description

Supplier Quotation No.


Supplier Quotation Dt.
Qty.

Rate

Amount

Terms & Conditions :


Prepared by :

Approved by :

b) What is database schema ? Explain various types of database schema.

8
P.T.O.

*4280202*

[4280] 202
2. Explain generalization and aggregation.

10

3. Explain various constraints in relational model.

10

4. a) What are the desirable properties of transaction ?

b) What is time stamp ordering protocol ?

5. a) What are various failures classifications ?

b) Explain log based recovery.


6. a) What are types of storage devices ?
b) Explain RAID.

5
5
5

7. Write short notes on (any two) :

10

a) Encryption
b) Views
c) Database users
d) Deadlock.

B/II/12/1,885

[4280] 204

*4280204*
Seat
No.

M.C.A. (Semester II) (Mgmt. Faculty) Examination, 2012


BM 21 : 204 : SOFT SKILLS (2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q.No. one is compulsory.


2) Attempt any three from the remaining questions.
1. a) A committee was appointed by Director to look into problem of absenteeism
of MCA second semester students. You as student representative in the
committee, along with faculty members Prof. A.K. Singh and Prof. S.K. Kulkarni
are required to draft your letter-report on investigation carried out by the
committee. The report is to be submitted to the director.
15
b) Explain Dos and Donts in detail, of process of group discussion.

10

2. Elaborate the 7 Cs of communication.

15

3. Define the process of communication. Discuss the importance of the choice of


media of communication with suitable examples.

15

4. What are the different elements of oral presentations ? What consideration deserve
attention while making oral presentation ?
15
5. Write short notes on any three of the following :

15

1) Minutes of meeting
2) Managing Time
3) e-mail etiquette
4) Gestures and postures.

B/II/12/1,250

[4280] 301

*4280301*
Seat
No.

M.C.A. Management Faculty (Semester III) Examination, 2012


IT 31-301 : WEB TECHNOLOGY (2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q. 1 and Q. 8 are compulsory.


2) Solve any 5 from Q. 2 to Q. 7.
1. Explain DOM and SAX purser with examples.

10

2. Write ASP application for football club membership registration and display
member - ID. (Assume any five suitable fields).

10

3. What is CSS ? Explain different types of CSS with examples.

10

4. Design a form to accept Reservation details of passengers validate any five


fields using Javascript.

10

5. a) Error handing in VB script.

b) Math object in Javascript.

6. Explain Global.asa with suitable examples.

10

7. Explain DOM objects in Javascript.

10

8. Write short notes (any two) :

10

a) XML-DTD
b) ASP Request object
c) <IFRAME> & <META> tags.

B/II/12/5,640

*4280302*

[4280] 302

Seat
No.

M.C.A. (Management Faculty) (Semester III) Examination, 2012


IT : 32 302 : DATA COMMUNICATION AND COMPUTER NETWORKS
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 and Q.8 are compulsory.


2) Attempt any four from remaining.
1. a) Justify with true or false (not more than 60 words) :
i)
ii)
iii)
iv)
v)

10

HTTP is a stateless protocol.


Error detection and correction is control by physical layer of a network.
IP datagram is a fixed length datagram.
FTP uses a single connection between the client and server computers.
Packet-switched networks provide both connection-oriented and
connectionless services.

b) What do you mean by hostid and netid ? How does a netid differ from a
network address ? What is the purpose of subnetting ? How is masking
related to subnetting ?
10
2. Define and explain transport layer services. What are the advantages of UDP
over TCP ?
3. a) Explain domain name space and domain name tree with example.
b) When DHCP is most appropriate ? Describe the operation of DHCP.

10
5
5

4. What is the limitations of network and host of classA, class B and class-C IP
addresses ? Determine the network address for the following IP -addresses.
10
a) 84.42.58.11
b) 144.62.12.9
c) 194.38.14.13.
P.T.O.

[4280] 302

-2-

*4280302*

5. Explain Carrier sense multiple access with collision defection and Carrier sense
multiple access with collision avoidance protocol.
10
6. What are the components of SNMP ? Explain the working of SNMP. What are
the problems with SNMP and how to overcome the problems ?

10

7. Define VPN. What are the different advantages of using VPN ? Explain the working
of VPN.
10
8. Write short notes (any two) :

10

a) MIME
b) ATM Traffic Management
c) X.25 Network
d) Fire wall.

B/II/12/6,215

*4280303*

[4280] 303

Seat
No.

M.C.A. (Management Faculty) (Semester III) Examination, 2012


IT-33-303 : OBJECT ORIENTED PROGRAMMING USING C++ (New)
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 and 8 are compulsory.


2) Solve any four from question No. 2 to 7.
3) Figures to the right indicate full marks.
1. I) Answer the following.

10

Explain what will be the output of following program ?


a) #include<iostream.h>
class base
{
public:
int bval;
base( )
{ bval=0;}
};
class deri:public base
{
public:
int dval;
deri( )
{ dval=1;}
};
P.T.O.

[4280] 303

-2-

void SomeFunc(base *arr , int size)


{
for(int i=0; i<size; i++,arr++)
cout<<arr->bval;
cout<<endl;
}
int main( )
{
base BaseArr[5];
SomeFunc(BaseArr,5);
deri DeriArr[5];
SomeFunc(DeriArr,5);
return 0;
}
b) void main()
{
int a, *pa, &ra;
pa = &a; ra=a;
cout <<a=<<a <<*pa=<<*pa <<ra <<ra ;
}
c) class opOverload{
public:
bool operator= =(opOverload temp)
{
if(*this == temp)
{
cout<<The both are same objects\n;
return true;
}

*4280303*

*4280303*

-3-

else
{
cout<<The both are different\n;
return false;
}
}
};
void main()
{
opOverload a1, a2;
a1 = =a2;
}
d) int main()
{
float a = 12.5;
printf(%d\n, a);
printf(%d\n, *(int *)&a);
return 0;
}
e) void main()
{
cout.setf(ios::left,ios::adjustfield);
cout.width(9);
cout.fill(#);
cout.precision(5);
cout<<-9.99;
cout<<\n;
cout.setf(ios::right,ios::adjustfield);
cout.width(9);
cout.fill($);
cout.precision(5);
cout<<-9.99;
}

[4280] 303

[4280] 303

-4-

*4280303*

II) What is function overloading ? Explain with suitable example.

2. a) What is a friend function ? Explain with suitable example.

b) What is a dynamic constructor ? Explain with suitable example.

3. What is operator overloading ? Write a program to overload minus operator for


getting the substring
For example : stringtemp = examination stringtemp - 5 = examin.

10

4. a) What is virtual base class ? Explain with suitable example.

b) What is RTTI ? Write a program illustrating reinterpret_cast, static_cast and


typeid().
5. a) How do you achieve the following :

5
5

i) Catching all possible exceptions.


ii) Restricting exceptions.
b) Explain any five manipulators with suitable example.
6. What is class template ? Write a program illustrating function templates
overloading.

5
10

7. Write a program to display the size of a file by accepting a filename as a command


line argument.
10
8. Write short notes on the following :

15

a) Virtual Destructors
b) Stream based I/O in C++
c) Nested Namespace.

B/II/12/5,675

[4280] 304

*4280304*
Seat
No.

M.C.A. (Semester III) (Management Faculty) Examination, 2012


IT-34 304 : ADVANCED DATABASE MANAGEMENT SYSTEMS
(New) (2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No.7 is compulsory.


2) Solve any five questions from 1 to 6.
3) Figures to the right indicate marks.
1. Explain spatial data management. Explain various indexing techniques of spatial
data management.
10
2. Explain in brief parallel database architecture.

10

3. Explain in brief two-phase commit protocol.

10

4. Explain Apriori algorithm in data mining.

10

5. What is OLAP ? What are types and operations of OLAP servers ?

10

6. What is XML ? Explain DTD in detail.

10

7. Write short note on (any four) :

(54=20)

a) OID
b) SOAP
c) Knowledge Base System
d) Machine learning
e) Data preprocessing
f) Multimedia database.

B/II/12/5,500

[4280] 305

*4280305*
Seat
No.

M.C.A. (Semester III) (Management Faculty) Examination, 2012


BM : 31 : 305 : MANAGEMENT SUPPORT SYSTEMS & ITS SECURITY
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and 7 are compulsory.


2) Attempt any four from remaining.
1. Explain in detail information requirements for marketing function using systems
approach.
10
2. Define Expert System and describe how it works with neat diagram.

10

3. Define DSS. Explain various components of DSS in detail.

10

4. Explain in brief the need for auditing Information Systems. Describe different
audit methodologies.

10

5. What are the different decision-making environment of an organisation ? Explain


Herbert-Simon Model in detail.
10
6. Explain the need of EIS. State the software and hardware required for implementing
EIS.
10
7. Write short notes (any 4) :

(45=20)

a) Negative Feedback Control.


b) Quality of information.
c) Deterministic and Probabilistic Systems.
d) Simulation.
e) Sensitivity analysis.

B/II/12/5,475

[4280] 31

*428031*
Seat
No.

M.C.A. (Semester III) (Management Faculty) Examination, 2012


IT -31 : WEB SUPPORTING TECHNOLOGIES (2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q.1 is compulsory.


2) Solve any four from the remaining.
3) Figures to the right indicate full marks.
1. Explain client and server side Image mapping with examples.

10

2. A) Explain DOM objects in Java Script.

B) Explain types of CSS with suitable examples.

3. A) Design HTML form for accepting book publishers details. Validate any four
fields using Java Script (Assume suitable structure).
B) Explain Three-tier architecture with suitable examples.

4. A) Write VB script code for accepting the information of Telephone customers.


Validate any four fields.
B) Differentiate between DTP and schema.

8
7

5. A) Error handing in VB script.

B) Create DTP for club members information like member-ID, Name, address,
contact, E mail and member-type.
6. Write short notes on following (any 3) :

7
15

a) Math object in Java Script


b) <IFRAME> and <SPAN>
c) Web publishing
d) Classes in CSS.

B/II/12/50

[4280] 32

*428032*
Seat
No.

M.C.A. (Semester III) (Management Faculty) Examination, 2012


IT-32 : COMPUTER NETWORKS
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 7 are compulsory.


2) Solve any three from the remaining.
1. a) Explain HTTP communication; Request and response messages in detail.
b) Explain OSI reference model in detail.

10
10

2. Explain different transmission protocols used in LAN.

10

3. What is MIME ? Explain its purpose and format in detail.

10

4. What is VPN ? Explain IPSec Protocol role in VPN Communication.

10

5. Define DHCP. Explain DHCP scope resolution with example.

10

6. Explain various IP addressing scheme with example.

10

7. Short notes (Solve any four) :

20

a) ISDN
b) X.25 network
c) IP routing
d) Fire wall
e) ATM Traffic Management
f) Ethernet.

B/II/12/50

[4280] 33

*428033*
Seat
No.

M.C.A. (Semester III) (Mgt. Faculty) Examination, 2012


IT-33 : MANAGEMENT SUPPORT SYSTEM
(2005 Pattern) (Old)
Time : 3 Hours

Max. Marks :70

Instructions : 1) Q. 1 and 7 are compulsory.


2) Attempt any four from remaining.
1. Explain in detail information requirement for marketing function using system
approach.

10

2. What do you mean by Feedback control ? Explain application feedback control.

10

3. Explain structure of M.I.S. based on organizational functions.

10

4. Explain with a neat diagram characteristics and capabilities of DSS.

10

5. Explain steps in Decision Making Process.

10

6. Explain with a neat diagram working of Expert System.

10

7. Write short note on (any 4) :

20

a) Types of systems.
b) Value of Information.
c) MIS Vs Data Processing.
d) Heuristic Programming.
e) Newell Simon Model.

______________
B/II/12/50

[4280] 34

*428034*
Seat
No.

M.C.A. (Management Faculty) (Semester III) Examination, 2012


IT-34 : OBJECT ORIENTED PROGRAMMING USING C++
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question 1 is compulsory.


2) Solve any six from question No. 2 to 8.
3) Figures to the right indicate full marks.
1. I) Answer the following.

What will be the output of following program ?


a) class some{
public:
~some()
{
cout<<somes destructor<<endl;
}
};
void main()
{
some s;
s.~some();
}
b) int main()
{
int cnt = 5, a;
do {
a/=cnt;
} while (cnt --);
printf (%d\n, a);
return 0;
}

P.T.O.

[4280] 34

-2-

*428034*

c) int main()
{
int i = 23;
printf(%d\n,printf(%d,printf(%d,i)));
return 0;
}
d) class base
{
private:
int i;
};
class derived : public base
{
private : int j;
}
void main()
{
cout<<sizeof(derived)<<sizeof(base);
derived d;
base b;
cout<<sizeof(d)<<sizeof(b);
}
II. Explain the use of new and delete operators.
2) a) Explain Class Template with suitable example.
b) Explain constructor overloading with suitable example.
3) What is private inheritance ? Explain protected inheritance with suitable
example.
4) a) Illustrate virtual base class with sample program.
b) What is namespace ? Explain unnamed namespace with suitable example.

2
5
5
10
5
5

*428034*

-3-

[4280] 34

5) a) Write a program to accept two numbers and perform basic mathematical


operation on it. Handle the exception like zero_divide_error.

b) What are containers ? Compare its types.

6) Define a class String. Overload

10

i) = = operator to compare two strings.


ii) + operator to concat two strings.
Include constructors and appropriate access functions.
7) What are file input and file output streams ? Explain seekg(), seekp(), tellg(),
tellp().

10

8) Explain (any two) :

10

a) Exception Handling Mechanism


b) RTTI
c) User Defined Manipulator.

B/II/12/50

*4280401*

[4280] 401

Seat
No.

M.C.A. (Semester IV) (Management Faculty) Examination, 2012


IT 41 401 : JAVA PROGRAMMING
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : i) Question 1 and 8 compulsory.


ii) Solve any five from question 2 to 7.
1. Answer the following :
1) What are Inner classes ?
2) What is reflection API ? How are they implemented ?
3) What are Runtime exceptions ?
4) What is the difference between string and string buffer ?
5) What are Wrapper classes ?

10

2. Write JDBC application for examination registration. (Assume suitable table


structure).

10

3. a) Write Java client side socket programme to accept filename from user and
send it to server.

b) Write Java server side socket programme to accept filename from client
and display the file contents in uppercase if file exists.

4. What is RMI ? Explain RMI Architecture in detail.

10

5. Write an applet to display scrolling text from left to right in an applet window.

10

6. Write a program to design GUI to accept marriage registration details. Throw


Invalid-Age-Exception, if age < 18 for girl and < 21 for a boy.

10

7. a) What are the different types of layouts ?


b) What is thread synchronization ?
8. Write short notes on any two :
a) EJB Architecture
b) Serialization
c) URL.

5
5
10

B/II/12/1,485

[4280] 402

*4280402*
Seat
No.

M.C.A. (Mgmt. Faculty) (Semester IV) Examination, 2012


IT 42 : 402 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2008 Pattern)
Time : 3 Hours

Max. Marks :70

Note : i) Q. 1 and Q. 6 are compulsory.


ii) Solve any three from remaining.
1. Prepare detail test plan for web based Railway reservation system having
following features :
a) Train information search with respect to train number, route.
b) Reservation availability and fair information.
c) Online booking and cancellation of tickets.
system must ensure the security with reference to online transactions.

20

2. What do you mean by structural testing ? How you can perform it using statement,
code and branch coverage ?
10
3. Explain testing life cycle in detail.

10

4. What do you mean by testing strategies ? Explain each strategy in detail.

10

5. Calculate cyclomatric complexity of code which accepts 3 integer values from


user as input and sort them in ascending order ? Find path and design test
cases.
10
6. Write short note on any four :
a) ISO
b) Verification techniques
c) Test automation
d) Testing of object oriented application

20

e) Usability testing.

B/II/12/1,065

[4280] 404

*4280404*
Seat
No.

M.C.A. (Semester IV) (Management Faculty) Examination, 2012


MT-41 405 : OPTIMIZATION TECHNIQUES
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1)
2)
3)
4)

Question No.1 is compulsory.


Attempt any two questions from the remaining.
Figures to the right indicate full marks.
Use of electronic calculator and statistical table is allowed.

1. A) A project has the following activities and other characteristics :

Activity

Preceding Activity

Time Estimates (weeks)


Optimistic

Most likely

Pessimistic

16

15

12

30

11

17

15

27

E,F

19

28

i) Draw the PERT network diagram.


ii) Determine the mean project completion time.
iii) Find the probability that the project is completed in 36 weeks.

P.T.O.

[4280] 404

-2-

*4280404*

B) Find the optimum integer solution to the following linear programming problem
using Gomorys cutting plane method.
Max Z = 3x1 + x 2 + 3x3
Subject to the constraints
x1 + 2x2 + x3 4
2x2 3/2 x3 1
x1 3x2 + 2x3 3
x1, x 2 0 ; x3 non-negative integer.

C) A road transport company has one reservation clerk on duty at a time. He


handles information of bus schedules and makes reservations. Customers
arrive at a rate of 8 per hour and the clerk can service 12 customers on an
average per hour. After stating your assumptions, answer the following :
i) What is the average number of customers waiting for the service of the clerk ?
ii) What is the average time spent by a customer in the system before getting
service ?
iii) What is the average waiting time for a customer in the queue ?

*4280404*

[4280] 404

-3-

D) Solve the following assignment problem :

Tastes

Employees

25

55

60

45

30

45

65

55

35

40

10

35

45

55

65

40

30

70

40

60

55

45

40

55

10

2. a) Find the optimal solution for the following transportation problem (Use VAM
method for Initial solution) :

Warehouse

Factory

W1

W2

W3

Supply

F1

16

20

12

200

F2

14

18

160

F3

26

24

16

90

Demand

180

120

150

[4280] 404

-4-

*4280404*

b) A company has 800 equipments of a certain items. The cost of replacing the
item is Rs. 5 and cost of replacing all items simultaneously is Re.1 per item.
The failure probability of items is as follows :

Week

Probability

0.1

0.2

0.15

0.25

0.3

i) Find the average, replacement cost (per item).


ii) Find the interval of group replacement and its average cost.
c) Draw a network diagram for the project :

Activity

Predecessor Activity

B,C

D,F

*4280404*

-5-

[4280] 404

3. A) Use Two-phase simplex method to solve the following LPP :

Min Z = 5x1 + 3x2


Subject to the constraints
2x1 + 4x2 12
2x1 + 2x2 = 10
5x1 + 2x2 10
x1, x2 0
B) A trading company buys and sells 10,000 bottles of pain-balm every year.
The cost per bottle is Rs. 2 and the companys cost of placing an order of
pain-balm is Rs.100. The companys standard annual rate of return on working
capital funds is 15%. The cost of physical storage of the pain-balm is fixed.
i) Determine the optimum order quantity.
ii) How many orders should be placed each year ?
iii) Find the total annual inventory cost.
C) Describe the characteristics of queuing system.

6
5

[4280] 404

*4280404*

-6-

4. a) The following is a table showing details of a project :

Activity

Normal

Crash

Time

Cost (Rs.)

Time

Cost

1 4

10

20

30

1 2

15

20

24

14

23

11

15

34

25

15

56

46

12

Indirect cost is Rs. 400 per day.


Find the optimum duration and the associated minimum project cost.
b) Write the dual of the following primal LP problem :
Min Z = x1 + x2 + x3
Subject to constraints
x1 3x2 + 4x3 = 5
x1 2x2 3
2x2 x3 4
x1, x2 0

*4280404*

[4280] 404

-7-

c) Express the following assignment problem as LPP :

Operators

Machines

II

III

IV

10

13

15

16

18

10

11

12

10

12

B/II/12/1420

[4280] 409

*4280409*
Seat
No.

M.C.A. (Mgt. Faculty) (Semester IV) Examination, 2012


BME-5 Elective : 415 : DECISION SUPPORT SYSTEMS
(2008 Pattern) (New)
Time : 3 Hours

Max. Marks : 70
Note: 1) Q. 1 and Q. 7 are compulsory.
2) Solve any four from the remaining.

1. What is Data Mining ? Explain the classification of data mining tools and
techniques.

10

2. Explain how EIS helps top management in better decision making.

10

3. Compare and contrast value chain and supply chain. Also give the major problems
that could develop along the supply chain.
10
4. Explain traditional system development life cycle and state alternate development
methodologies.
10
5. Enumerate and briefly explain the various tools that are used for DSS
development. How would you choose a DSS development tool ?

10

6. Explain Enterprise Resource Planning and its benefits.

10

7. Write short notes on (any four) :

(45=20)

a) Organizational DSS.
b) Virtual Reality.
c) Risk factors in end user developed DSS.
d) Knowledge based export system.
e) Business Intelligence.

B/II/12/685

[4280] 41

*428041*

M.C.A. (Semester IV) (Management Faculty) Examination, 2012


401 IT-41 : JAVA PROGRAMMING (2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions :1) Question 1 is compulsory.


2) Solve any four from remaining.
1. Answer the following questions with justification.
a) Types of Lay outs.
b) What are Inner classes ?
c) Differentiate between throw and throws.
d) What is Thread ? Explain Thread class.

10

e) Explain Marshaling and unmarshaling.


2. a) Write an applet to change the color of text after every 5 seconds.
b) Explain servlet life cycle.

8
7

3. a) Write JDBC application to display coursewise placed student list for training
and placement department.

b) Explain RMI Architecture.

4. a) Write client server socket program client will send a string to server. Server
program checks if string is palindrom or not and sends the response back to
the client.
b) What are Java Beans ? Explain the types of Java beans.

8
7

5. a) Write a JAVA program to accept the directory name, if directory exist, display
names of files in given directory.
b) Explain Event- delegation model.

8
7

6. Write short notes on (any three) :


a) JDBC drivers.
b) Applet life cycle.
c) URL class.
d) Explain try, catch, finally.

15

B/II/12/285

[4280] 410

*4280410*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


BME 6 : Elective : 416 : ENTERPRISE RESOURCE MANAGEMENT
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q. 1 and Q. 6 are compulsory.


2) Solve any three questions from Q. 2 to Q. 5.
3) Figures to right indicate full marks.
1. Indian Steel is a medium size organization. They implemented an ERP system
three years back to support their expanding operations in India and abroad.
Now after three years the management perceives that they have not received
the expected benefits from it. They have hired you as an ERP consultant to
look into the matters. You have to perform a post evaluation study and prepare a
detailed plan to rectify the situation.
20
2. a) List and briefly explain the various components of an ERP system.

b) Discuss the architecture of a generic Management Information System (MIS).


3. Discuss the following modules of an ERP system in detail :

5
10

a) Finance Module
b) Production Planning, Control and Management.
4. Discuss in detail the various steps involved in evaluation and selection of an
appropriate ERP package.

10

5. a) How to provide the End User Training in an organization undergoing ERP


implementation process ?

b) Is it mandatory for an organization to purchase an ERP package which is


available in the market ? Discuss in brief.

6. Write short notes on any four of the following :


a) Business Process Reengineering
b) Data Mining
c) Decision Support System
d) Applications of On-Line Analytical Processing
e) Supply Chain Management.

20

B/II/12/445

[4280] 43

*428043*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


403 IT-43 : SOFTWARE ENGINEERING
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Q.1 and Q.6 are compulsory.


2) Attempt any three from the remaining.
1. Sneha Gas is a firm engaged in distribution of LPG cylinders to their customers.
The proprietor of the firm has decided to develop computerised system for the
routine day to day transactions. He wants to provide quick service and response
to the customers. He is also interested to get various reports required to take
decision.
Prepare SRS and system specification for the above case.

20

2. Explain software review process in detail.

10

3. Explain various tools available for Project Management Support in CASE


Tool.

10

4. Design a form layout to accept the order details for, the new or existing customers
like order number, date, quotation number, probable delivery date, place to
make delivery, details of ordered items, terms and conditions etc. Use suitable
validation controls.
10
5. Explain methods of estimating software maintenance cost. Give various
components of legacy system.

10

6. Write short notes on (any four) :

20

a) Agile Process
b) Types of Feasibility study
c) Software Acquisition
d) RAD
e) WIN-WIN spiral model.

B/II/12/230

[4280] 44

*428044*
Seat
No.

M.C.A. (Semester IV) (Management Faculty) Examination, 2012


404 MT-41 : OPTIMIZATION TECHNIQUES
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

N.B. : 1) Q. No. 1 is compulsory.


2) Attempt any two questions from Q. 2, 3 and 4.
3) Use of electronic calculator and statistical table is allowed.
1. a) Following table lists the data for PERT Network.
Activity

to

tm

tp

12

13

14

12

24

23

25

11

14

28

34

15

24

45

36

46

15

27

56

10

16

i) Draw the Network Diagram and find the critical path.


ii) Find the expected Project Duration.
iii) What is the probability that the project duration will exceeds 60 days.

P.T.O.

[4280] 44

*428044*

-2-

b) Solve the Integer Programming Problem using Gomorys Cutting Plane


Algorithm.

Max : Z = 3x1 + 4x2


Subject to : 2x1 + x2 6
2x1 + 3x2 9
x1, x2 0 and are integers.
c) In a clinic, patients arrive in poisson manner at the rate of 20 per hour. The
waiting room does not accommodate more than 14 patients. Examination
time per patient is exponential with mean rate of 30 per hour.

i) What is the probability that the arriving patient will not wait ?
ii) What is the expected waiting time a patient spent in the clinic ?
d) Solve the following assignment problem and write all possible assignments.

Jobs
A

Men 2

2. a) Find the initial solution by NWCR, and solve for optimal solution for the following
transportation problem.
Distribution Centres

Plants

Supply

11

15

10

Demand

*428044*

[4280] 44

-3-

b) A firm is thinking of replacing a particular machine whose cost price is


Rs. 12,200/-. The scrap value of this machine is only Rs. 200/-. The
maintenance costs are found to be as follows :
Year

Mainteance
220
cost

2
500

800 1200 1800

2500

3200

4000

Determine when the firm should replace the machine.


c) Define the following :

i) Optimal solution
ii) Infeasible solution
iii) Objective function
iv) Total float
v) Free float
3. a) Solve the following LPP by Big-M method.

Max : Z = 5x1 2x2 + 3x2


Subject to : 2x1 + 2x2 x3 2
x2 + 3x3 5
x1, x2, x3 0
b) A company uses 1200 units per month of an electronic component, each
costing Rs. 2.00. Placing each order costing is Rs. 50/- and the carrying cost
is 6% per year of the average inventory

i) Find EOQ
ii) Annual inventory cost
iii) Total cost
c) Write notes on various replacement models.

[4280] 44

*428044*

-4-

4. a) The table below provides cost and time estimates of seven activities of a
project.

Activity

Time (in weeks)

Cost (in Rs. '000)

Normal

Crash

Normal

Crash

12

10

15

13

15

21

24

20

25

34

35

15

46

10

15

5-6

12

32

i) Draw the Project Network based on Normal time.


ii) Find the critical path, Normal Duration and Normal Cost.
iii) Crash the activities to obtain optimum project cost and duration.
b) Describe the various characteristics of Queuing Theory.

c) Obtain the dual of the following LPP.

Max : Z = 4x1 + 5x2 + 12x3


Stc : 2x1 + x2 + x3 4
3x1 2x2 + x3 = 3
x1 + 4x 2 2x3 1
x1, x2 0 x3 unrestricted.

B/II/12/285

[4280] 45

*428045*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


Management Elective : 405
BME 1 : MIS FRAMEWORK AND IMPLEMENTATION
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Q.1 and Q.7 are compulsory.


2) Solve any four from remaining questions.
3) Figures to right indicate full marks.
1. Elaborate with suitable examples, how information technology is improving the
way customer relationship are maintained.

10

2. Who are different types of users of IT infrastructure ? How IT infrastructure


caters to the needs of different users ?

10

3. Explain the architecture of DSS with a diagram and its role in an organizational
decision making.
10
4. Define MIS with its features and limitations.

10

5. What are different socio-economic factors to be considered while designing


information systems ? Illustrate the same with reference to the e-Governance
applications.
10
6. Explain the importance of information system to handle challenges global
scenario.
7. Write short notes on (any four) :
a) Expert systems
b) Critical success factors in implementing IT applications
c) IT policy
d) Cost-Benefit analysis of Information systems
e) GDSS.

10
20

B/II/12/175

[4280] 46

*428046*
Seat
No.

M.C.A. (Management Faculty) (Semester IV) Examination, 2012


BME-2 : FOUNDATIONS OF DECISION PROCESSES
405 : Management Elective
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No.4 is compulsory.


2) Solve any two questions from the remaining.
3) Figures to the right indicate full marks.
4) Use of Electronic Calculator is allowed.
1. a) Explain Monte-Carlo simulation and random numbers.

10

b) A producer of boats has estimated the following distribution of demand for a


particular kind of boat.
Demand
Probability

0.14

0.27

0.27

0.18

0.09

0.04

0.01

Each boat costs him Rs. 7,000 and he sells them for Rs. 10,000 each. Any
boats that are left unsold at the end of the season must be disposed off for
Rs. 6,000 each. How many boats should be in stock so as to maximize
his expected profit ?

10

2. a) State the axioms of utility. Explain the use of utility theory in Decision Making.

10

b) The buying habits of customers were studied which revealed : Those buying
brand X today 60% continue with brand X, 30% shift to brand Y and 10% shift
to brand Z in the next quarter. Those buying brand Y today 50% continue with
brand Y, 40% shift to brand X and 10% shift to brand Z in the next quarter.
Those buying brand Z today 70% continue with brand Z, 20% shift to brand X
and 10% shift to brand Y in the next quarter.
The market shares of brands X, Y and Z are 20%, 50% and 30% today.
Determine their market shares in steady state condition.
10
P.T.O.

[4280] 46

*428046*

-2-

3. a) An offer is made to all the bank customers with the objective of preventing the
most desirable customers from moving their accounts to a competitors bank.
We assume a negligible cost is associated with making offer.
The probability that customers are good is 90% with an offer chance that
good customers stay is 90% and with no offer 80%.
We estimate 93% of bad customers will stay if offer is made and 90% if the
offer is not made.
A customer who stays and is a good customer, produces a net profit of
Rs. 120 to the bank whereas a bad customer results in a loss of Rs. 1,000/Using Decision tree determine whether the bank should make an offer to
prevent the customers from moving their accounts to the competitors bank. 10
b) Solve the following game :

10

Player B
B1

B2

B3

A1

10

A2

A3

Player A

4. A book store wishes to carry a particular book in stock. Demand is probabilistic


and the replenishment of stock takes 2 days (i.e. if an order is placed on March
1, it will be delivered at the end of the day on March 3). The probabilities of
demand are given below :

Demand (daily)

Probability

0.05

0.10

0.30

0.45

0.10

*428046*

-3-

[4280] 46

Each time an order is placed, the store incurs an ordering cost of Rs. 10 per
order. The store also incurs a carrying cost of Rs. 0.5 per book per day. The
carrying cost is calculated on the basis of stock at the end of each day. The
manager of the book store wishes to compare two options for his inventory
decision.
A : Order 5 books when the inventory at the end of the day plus outstanding is
less than 8 books.
B : Order 8 books when the inventory at the end of the day plus outstanding is
less than 8 books.
Currently (beginning of 1st day) the store has a stock of 8 books plus 6 books
ordered two days ago and expected to arrive next day. Using Monte Carlo
simulation for 10 cycles recommend which option the manager should choose.
The random numbers are :
89, 34, 78, 63, 61, 81, 39, 16, 13, 73.

30

B/II/12/170

[4280] 501

*4280501*
Seat
No.

M.C.A. (Semester V) (Management Faculty) Examination, 2012


IT 51 : HUMAN COMPUTER INTERFACE
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note : 1) Question No. 1 is compulsory.


2) Answer any five from the remaining.
3) Figure at right hand indicate full marks.
1. Answer any four :
a) What are the goals of System Engineering ?
b) What are the guidelines for data display ?
c) Explain hypertext and hypermedia.
d) What are the benefits of touch screen input ?

(54=20)

e) Explain the principle Recognize the diversity.


2. Explain WIMP interfaces with example. Also explain the four levels of icon design.

10

3. Discuss participatory design. State its advantages and disadvantages.

10

4. Discuss any two specification methods in detail.

10

5. What is usability testing ? What is its purpose ? How it is conducted ?

10

6. Discuss OAI model for website design.

10

7. Write short notes on (any two) :


a) Comment on Use of Natural language.
b) Image browsing.
c) Information visualization.

10

B/II/12/3615

[4280] 502

*4280502*
Seat
No.

M.C.A. (Management Faculty)(Semester V) Examination, 2012


IT-52 SOFTWARE I.T. PROJECT MANAGEMENT (2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Note :1) Q. 1 is compulsory.


2) Solve any five from Q. 2 to Q. 8.
1. a) ABC institute of management has decided to opt for automated Library
management system. As an expert, You are asked to list the major modules to
be considered and estimate the cost of library management system.
10
b) Draw a network diagram and calculate critical path.
Activity

10

Predecessors Time (in days)

A. Select steerting committee

15

B. Develop requirement list

40

C. Develop system size estimates

10

D. Determine vendors

E. Form evaluation team

B,C,D,E

G. Bidders conference

H. Review submissions

25

I. Select vendor short list

J. Check vendor reference

K. Vendor demonstration

20

L. User's site visit

M. Select vendor

J,K,L

N. Volume sensitive test

10

O. Negotiate contracts

10

N,o

F. Issue request for proposal

P. Cost Benefit Analysis


Q. Obtain Board of directors approval

P.T.O.

*4280502*

[4280] 502

2. Explain the term project management and elaborate project management life
cycle.

10

3. What are different software quality standards ? Explain in detail SEI-CMM and
its significance with software projects.

10

4. What do you mean by software configuration management ? Explain importance


of version and release management.

10

5. Explain software team structure and discuss about the team communication.

10

6. List the various users of software project. Also explain their role in project
management.

10

7. Explain the process of Risk management in software project management.

10

8. Write a short note on (any two) :


a) MS Project
b) Role of Testing
c) Request For Proposal (RFP)
d) WBS.

10

____________

B/II/12/3,575

[4280] 504

*4280504*
Seat
No.

M.C.A. (Semester V) (Management Faculty) Examination, 2012


IT-55 : ADVANCED INTERNET TECHNOLOGY
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question 1 and Question 7 are compulsory.


2) Attempt any four questions from remaining.
1. What is E- Commerce ? Explain the concept of Cryptography.

15

2. Write a servlet program to accept online registration details of users for Dancing
Competition. Assume suitable table structure.
10
3. Write a JSP code, to generate area wise, product sales report, for cosmetic
company. Display the report in proper format.

10

4. Write a PHP code for online shopping of books using sessions. At the end display
details of books added in shopping cart.
10
5. Explain pattern matching in PERL with example.

10

6. Explain with example cookies in PHP.

10

7. Write short notes on (any three) :

15

a) JSP directives.
b) CGI Architecture.
c) Thread safe servlets.
d) Loops in PHP.

B/II/12/3,625

*4280508*

[4280] 508

Seat
No.

MCA (Management Faculty) (Semester V) Examination, 2012


ITE.4 Elective : MOBILE WIRELESS COMPUTING
(2008 Pattern)
Time : 3 Hours

Max. Marks : 70

Instructions : 1) Question No. 1 and 7 are compulsory.


2) Attempt any three questions from the remaining Q. 2 to Q. 6.
1. a) Define the following terms and write their functions (any four) :
I) BSC
II) MSC
III) MSRN
IV) SIM
V) IMEI
VI) WTP

10

b) How GSM frequency allocation are done ? Explain the importance and impact
of framing and logical channels.
10
2. What is DHCP ? How does DHCP supports dynamic address allocation ?

10

3. Explain functions of each layer in WAP architecture.

10

4. Explain frequency hopping with its advantages and disadvantages.

10

5. Explain how does the dynamic rource routing handle the rource routing with
example.

10

6. What is SIP ? How does SIP handle call setup teardown of calls ? Explain.

10

7. Write short notes (any four) :


I) Mobile agents
II) Mobile-IP
III) SPIN
IV) 802.11
V) Push-Pull protocol
VI) Indirect TCP.

20

B/II/12/630

[4280] 509

*4280509*
Seat
No.

M.C.A. (Semester V) (Management Faculty) Examination, 2012


ITE-5 : Elective : DISTRIBUTED DATABASE MANAGEMENT SYSTEM
(2008 Pattern)
Time : 3 Hours
Note : 1)
2)
3)
4)

Max. Marks : 70
Q.No. 7 is compulsory. Solve any 5 from the remaining.
State assumptions wherever necessary.
Draw suitable diagram when needed.
Give suitable examples if required.

1. What is DDBMS ? Explain its advantages and disadvantages in detail.

10

2. Define transaction. Explain the goals of transaction management.

10

3. Explain client-server reference architecture in detail.

10

4. Explain Concurrency control for distributed database systems.

10

5. Explain object caching, object clustering and object migration.

10

6. Explain various distribution design issues.

10

7. Write short notes on following (any four) :

(45=20)

a) RDBMS
b) Horizontal Fragmentation
c) Cold restart
d) Two phase commit protocol
e) Homogeneous and Heterogeneous DDBMS.

B/II/12/435

[4280] 51

*428051*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


IT-51 : SOFTWARE TESTING AND QUALITY ASSURANCE
(2005 Pattern)
Time : 3 Hours
Instructions: 1)
2)
3)
4)

Max. Marks : 70
Q.1 and Q.6 are compulsory and of 20 marks each.
Solve any three from remaining.
State assumptions if any.
Figures to the right indicate marks.

1. a) An online railway booking system designed by XYZ software firm wants to


perform a complete testing for the booking module of the system to ensure
that :
15
i) System supports the booking and cancellation of tickets.
ii) General booking opens with 90 days in advance.
iii) System supports the tatkal booking prior to 3 days of journey excluding
the date of commencement of journey.
Prepare a test plan stating the scope, strategies, coverage, environment and
other desired details.
b) Differentiate functional and structural testing.
5
2. How inspection differs from Walk through ? Explain the formal review process in
detail.
10
3. Explain in detail V and V life cycle.

10

4. An application receives an integer value as input between 6 and 50 (inclusive of


6 and 50). The application calculates the area of a circle, of an equilateral triangle
and of a square and accordingly displays the message. Draw the flow graph,
find the cyclometric complexity and design the test a cases for this code.
10
5. Define Product and Process Standards. Explain CMM in detail.
6. Write short notes (any four) :
a) Six sigma.
b) Cleanroom software engineering.
c) BVA.
d) Web Based Application Testing.
e) Quality Metrics.

10
(45= 20)

B/II/12/285

[4280] 52

*428052*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


IT-52 : ADVANCED INTERNET TECHNOLOGY (2005 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Q. 1 is compulsory.
2) Solve any 3 questions from remaining.

1. What is E-commerce ? Explain Benefits of e-commerce with example.

10

2. a) Write ASP code to accept complaint number and if complaint is register


display status of complaint (Assume suitable table structure).

10

b) Explain JSP Implicit Objects with example.

10

3. a) Write PHP code to accept citizen registration details. Assume suitable table
structure.

10

b) Describe CGI architecture and environment variables in CGI.

10

4. a) Write JSP code to display list of blood donors with details for particular
blood group. Assume suitable table structure.

10

b) Explain Application and Session objects in ASP with example.

10

5. a) Write a perl code to display number of vowels and consonants in given file.
b) What are cookies ? Explain with example cookies in PHP.

10
10

B/II/12/275

[4280] 56

*428056*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


Management Elective IT-2
(2005 Pattern)
ARTIFICIAL INTELLIGENCE
Time : 3 Hours
Instructions: 1)
2)
3)
4)

Max. Marks : 70
Q.1 is compulsory.
Solve any five questions from Q.2 to Q.7.
Figures to right indicate full marks.
Draw neat and suitable diagram wherever necessary.

1. a) Discuss the concept of AI in brief with an appropriate example.

b) Discuss the concept of knowledge representation in brief.

c) Write short notes on any two of the following :

10

i) 8-Queens Problem
ii) Traveling Salesman Problem
iii) Missionary and Cannibals Problem.
2. Discuss the Depth First Search algorithm along with an appropriate example.

10

3. Discuss the resolution principle in brief along with an appropriate example.

10

4. a) What is an Associative Network ?


b) Construct the semantic net for the following statement :

5
5

Sachin Tendulkar gave an autograph to Satish.


5. What is semantic analysis ? Discuss in detail along with appropriate examples. 10
6. a) What is an Expert System ? Explain in brief.
b) Discuss the architecture of an Expert System in brief.
7. Write short notes on any two of the following :
a) PROSPECOR
c) Probabilistic Reasoning.

5
5
10

b) Neural Network

B/II/12/175

[4280] 60

*428060*
Seat
No.

M.C.A. (Semester V) (Management Faculty) Examination, 2012


Management Elective : IT-6 : HUMAN COMPUTER INTERFACE
(2005 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Q. 1 and Q. 7 are compulsory.
2) Solve any three from remaining.

1. a) What are the goals of system engineering ?

10

b) Explain eight golden rules of interface design.

10

2. Explain different types of menus.

10

3. a) What is participatory design ? Explain.

b) What are the benefits of direct manipulation ?

4. a) Explain coordination of multiple windows.

b) Discuss guidelines for data entry.

5. Explain various types of keyboards. Explain Response time and display rate.

10

6. Discuss LUCID in detail.

10

7. Write short notes (any four) :

(45=20)

a) WIMP interface
b) Hypermedia and Hypertext.
c) LTM and STM.
d) Speech recognition.
e) Image Browsing.

______________
B/II/12/130

[4280] 63

*428063*
Seat
No.

M.C.A. (Management Faculty) (Semester V) Examination, 2012


Management Elective : IT 9 : PROGRAMMING LANGUAGES AND
PARADIGMS (2005 Pattern)
Time : 3 Hours

Max. Marks : 70
Note : 1) Q. 8 is compulsory.
2) Solve any 5 from the remaining.

1. Explain procedural, functional and logic programming paradigms with example.

10

2. Explain the process of translation of a program from source program to object


program.
10
3. What is software simulation ? How a language is actually implemented it ?

10

4. What is binding ? Explain classes of binding times.

10

5. Explain sequencing with arithmetic expression with example.

10

6. Explain attributes of data control.

10

7. Explain Heap storage management with suitable example.

10

8. Write note on (any four) :

20

a) Parameter Transmission
b) Elementary Data Types
c) Static and Dynamic scope
d) Perl Overview
e) Vector and arrays
f) Abstraction.

B/II/12/260

Total No. of Questions : 7]

P2288

SEAT No. :
[Total No. of Pages : 2

[4675] - 101
M.C.A. (Management)
IT-11: COMPUTER ORGANIZATION
(2012 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Q.No.1 and Q.No. 7 are compulsory.
2) Answer any FOUR from Q.2 to Q.6.
3) Figures to right indicate marks.
4) Draw neat diagrams wherever necessary.

Q1) a)
b)

[Max. Marks : 70

Compare the architectural features of 32 bit and 64 bit architecture.[10]


Discuss the characteristics of system Buses.

[5]

Q2) a)

Construct 38 decoder and explain its truth table.

[5]

b)

Construct JK flip-flop and describe its functions.

[5]

Convert the following:

[5]

Q3) a)

b)

i)

(127.6)8 = (

) 16

ii)

(AFED.15)16 = ( )10

Solve F(A, B, C, D) = (1,3,5,9,13,15) using Karnaughs map.

[5]

Q4) What are the registers used in DMA? Discuss DMA interfacing with processor.
[10]
Q5) Explain various types of interrupts. Draw the state diagram of Instruction
Execution cycle with interrupts.
[10]

P.T.O.

Q6) a)
b)

Compare Hardwired Vs micro program control unit.


[5]
What is pipelining? Discuss hazards and overcoming techniques in
pipelining.
[5]

Q7) Write short notes (any THREE)

[15]

a)

Types if parallel processors.

b)

System software.

c)

Functional units of pentium processor.

d)

RISC.

R R R

[4675]-101

Total No. of Questions : 7]

P2289

SEAT No. :

[4675] - 102
M.C.A. - I (Management)
IT - 12 : C PROGRAMMING
(2012 Pattern) (Semester - I)

[Total No. of Pages : 2

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 is compulsory.
2) Solve any five questions from question number 2 to 7.
3) Assume suitable data whenever necessary.
4) Figures at right hand indicates full marks.

[Max. Marks : 70

Q1)Answer the following questions. (any four).


a)

What are the control structures in C? Give an example each.

b)

What are escape sequences?

c)

What are the actual and formal parameters of the function?

d)

Distinguish between malloc ( ) and calloc ( ).

e)

Distinguish between break and continue.

Q2) a)
b)

[20]

Find GCD of a number using recursion in c program.

[5]

Write a C program to find the sum of following series.

[5]

x3 x5 x 7
xn
sin( x) = x + + .....
3! 5! 7!
n!

Q3) a)

Write a C program that find the sum of minor diagonal elements of


matrix.
[5]

b)

Write a function to reverse the string with out using library function. [5]

P.T.O.

Q4) a)
b)

Write a function to find x rise to y using bit wise operators.

[5]

What is bit field operator? Explain with example.

[5]

Q5) Write a graphics C program that accept n year and rain fall on that year and
display pie chart for it.
[10]

Q6) Write a C program to calculate difference between two time periods. (use
structure variable to store time in hour, minute and second).
[10]

Q7) Write a C program to compares two binary files, printing the first byte position
where they differ.
[10]

R R R

[4675]-102

Total No. of Questions : 6]

SEAT No. :

P2290

[Total No. of Pages : 1

[4675]-103
M.C.A. (Management Faculty)
BM - 11 - 104 : PRINCIPALES AND PRACTICES OF
MANAGEMENT AND ORGANIZATIONAL BEHAVIOUR
(2012 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Attempt any 3 from the remaining.
3) Figures to the right indicate full marks.

[Max. Marks : 70

Q1) a)

Classify various types of structure of organization with examples? Which


structure is suitable in companies like TVS motors.
[15]

b)

Define motivation? Describe the role of Meslows theory with its limitation.
[10]

Q2) Explain the process of Management? Discuss the Managerial Functions.[15]


Q3) Define organization and discuss different types of organizational structures.[15]
Q4) Explain briefly Role of Decision Making in increasing organisation effectiveness.
[15]
Q5) Classify the contribution of Mr. Fayol in modern theory of Management?[15]
Q6) Write Short Notes on (any three):

[15]

a)

Level of Management.

b)

Team building.

c)

Conflict Management.

d)

leadership.

e)

Group and Group Dynamics.

Total No. of Questions : 7]

P2291

SEAT No. :
[Total No. of Pages : 2

[4675]-104
M.C.A. - I (Management)
IT - 13 : SOFTWARE ENGINEERING
(2012 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1, and Q.7 are compulsory.
2) Attempt any Three From Q.2 To Q.6.
3) Figures to right indicate marks.
4) Write Assumptions wherever Necessary.

[Max. Marks : 70

Q1) A RTO has laid down following procedure for obtaining Permanent Driving
License for various non commercial vehicles. A candidate for valid Learning
License can submit his form and License test fees of his own or through
Motor Driving School. The data on form is entered and exact date and time of
driving test will be allocated to the candidate. On the days of test candidate
can bring has own vehicle or can use vehicle of Motor Driving School. The
available Inspector will conduct Test and ask question related to traffic sine to
the candidate. On the basis of test and answer, the concerned Inspector puts
his remarks on the form and makes signature along with his name and
designation. If the remark is PASSING, the candidate has to pay License Fees
at a cash counter and a cash receipt will be given to candidate. Candidate can
collect License after 3 days. The clerk at cash counter adds the test data, Fees
data details to the form record. The form test data then is complied by EDP
officer and generates license for the day and hands it over to counter clerk. A
License will be given to candidate after the cash receipt.
a) Draw Context & First Level DFD.
[10]
b) Prepare software requirement specification in detail.
[10]
Q2) All the states in country have arranged to implement Value Added Tax(VAT)
on the various commodities sold in their respective states. The VAT rules are
as follows:
[10]
If the commodity is product within the state 4% VAT is applicable.
If commodity falls in Specified List. Non-listed Commodities will be
charged 8% VAT.
If the commodity is from outside state, 8% VAT is applicable for all.
If the commodity is imported, then 12% VAT is applicable for all.
If it is second sale, the 4% VAT is applicable for all Commodities
Draw Decision Table and Decision Table and write Structured English to
compute VAT.
P.T.O.

Q3) CASE tools assists various phases of software development - justify.

[10]

Q4) Explain features of good GUI Design with example.

[10]

Q5) Explain method of estimating software maintenance cost. Give various


components of legacy system.
[10]
Q6) Explain importance of FDD & E-R Diagram.

[10]

Q7) Write short notes on (Any Four):


a) Reverse Engineering.
b) Web Engineering.
c) Object Oriented Methodology.
d) Agile Process.
e) Spiral Model.

[20]

[4675]-104

Total No. of Questions : 4]

SEAT No. :

P2292

[Total No. of Pages : 3

[4675] - 105
M.C.A.
(Management Faculty)
MT - 11 - 105 : DISCRETE MATHEMATICS
(2012 and 2013 Pattern) (Semester - I)
Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:
1) Q.No. 1 is compulsory
2) Solve any two from Question numbers 2,3 & 4.
3) Use of statistical table and non programmable calculator is allowed.
4) Figures to the right indicate full marks.

Q1) Attempt the following:


a)

Using the following statements:

[5]

P : This book is good. Q : This book is costly.


Write the following statements in symbolic form.
i)

This book is good & costly.

ii)

This book is not good but costly.

iii)

This book is cheap but good.

iv)

This book is neither good nor costly.

v)

If this book is good then it is costly.

b)

Define Bijective Function and illustrate with an example.

c)

If ten identical paintings are allocated to n rooms so that no room gets


more than 1 painting. calculate if : 1) n = 12 2) n = 4.
[5]

d)

If 8 identical blackboards are to be divided among 4 schools, how many


divisions are possible?
[5]
i)

With no restriction.

ii)

If each school must get at least 1 blackboard.

[5]

P.T.O.

e)

State & Prove Generalized Principle of Inclusion and exclusion.

[5]

f)

Let (G,*) be a group of integers under addition operation. Determine


whether set of all even integers is a subgroup of G or not.
[5]

Q2) Solve the following:


a)

(x)M( x ) logically
(( x) (H( x ) M( x)) and (x)H( x ) .

Show that :

follows from the premises


[5]

b)

Let X = {1,2,3,4,5}. and R : X X where R = {<x,y>/x<y}Find R.


Draw Matrix and digraph of R?
[7]

c)

1)

How many seven letter palindromes can be made out of English


Letters.
[8]
i)

2)

If no letter can be repeated

ii)

If letters can be repeated

How many Permutations can be formed from the words:


i)

MATHEMATICS

ii)

ENGINEERING

Q3) Solve the following:


a)

Check the equivalence of the following statements using truth tables:[5]


A (B C ) (A B ) C

(A C ) (B C ) (A B) C
b)

Find the code words generated by H, where


1 1 1 1 0 0
H = 1 1 0 0 1 0
1 0 1 0 0 1

[4675] - 105

[7]

c)

i)

Each of the n children in a class is given a book by the teacher, the


books are all distinct. The students are required to return the books
after 1 week. The same n books are again distributed for another
week. In how many distributions does nobody get the same book
twice?
[4]

ii)

How many integers between 1 and 500, both inclusive are divisible
by 3 or 5.
[4]

Q4) Solve the following:


a)

Let A = {a,b,c,d,e} and R : R : A A where R = {(a,c), (a,b), (b,d),


(b,c), (c,e), (d,d),(d,e), (e,d)}. Find Complement and Converse of R?[5]

b)

Obtain PCNF for the following: (P Q ) (P R ) .

c)

State and prove multinomial theorem and hence find the coefficient of
[8]
X6Y6Z5 in the expansion of (2X23Y3+5Z)10.

l l l l

[4675] - 105

[7]

Total No. of Questions : 7]

P2254

SEAT No. :
[Total No. of Pages : 2

[4675] - 11
M.C.A. (Management Faculty)
IT-11: COMPUTER ORGANIZATION
(2008 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Q.No.1 and Q.No. 7 are is compulsory.
2) Answer any four from the remaining.
3) Figures to right indicate marks.
4) Draw neat diagrams wherever necessary.

Q1) a)
b)

[Max. Marks : 70

Explain 80486 Architecture with neat diagram.

[10]

Explain parallel processing concept in detail.

[5]

Q2) Convert the following:


a)

(101110)2 = ( ?)8

b)

(952)10 = (?)8

c)

(11010011)2 = (?)16

d)

(ABC)16 = (?)2

e)

(127.54)8 = (?)10

Q3) Explain DMA working in detail with neat diagram.

[25 = 10]

[10]

Q4) Explain Instruction-Execution-Interrupt cycle in detail with neat diagram.[10]


Q5) Explain memory Hierarchy with neat diagram in detail.

[10]

Q6) What is Demultiplexer? Explain working of D-latch in detail.

[10]
P.T.O.

Q7) Write short notes (Any THREE)


a)

Types of softwares.

b)

Performance of processor.

c)

Addressing modes.

d)

Pipelining Hazards.

[35 = 15]

R R R

[4675]-11

Total No. of Questions : 7]

P2255

SEAT No. :

[4675] - 12
M.C.A. (Management Faculty)
IT - 12 : C PROGRAMMING
(2008 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 is compulsory.
2) Solve any five questions from 2 to 7.
3) Assume suitable data whenever necessary.
4) Figure write hand indicates full marks.
5) Answer all parts of a question at one place.
6) Answer each part concisely.

[Total No. of Pages : 4

[Max. Marks : 70

Q1) Explain and find output of the following programs.


a)

[20]

# include <stdio.h>
int main( ) {
static char *s[ ] = {black, white, pink, violet};
char **ptr[ ] = {s+3, s+2, s+1, s}, ***p;
p = ptr;
++p;
printf(%s, **p+1);
return 0;
}

b)

# include<stdio.h>
void fun(void *p);
int i;
int main ( ){
P.T.O.

void *vptr;
vptr = & i;
fun(vptr);
return 0;
}
void fun(void *p) {
int **q;
q = (int**) & p;
printf(%d\n, **q);
}
c)

# include <stdio.h>
int main ( ) {
printf(%d, %d\n, size of (NULL), sizeof());
return 0;
}

d)

#include <stdio.h>
int main (){
void *vp;
char ch = 74, *cp = JACK;
int j = 65;
vp = & ch;
printf(%c, *(char*) vp);
vp =&j;
printf(%c, *(int*) vp);
vp = cp;
printf(%s, (char*) vp+2)
return 0;
}

[4675]-12

e)

#include<stdio.h>
int main() {
int arr[2][2][2] = {10, 2, 3, 4, 5, 6, 7, 8};
int *p, *q;
p = & arr[1][1][1];
q = (int*) arr;
printf(%d, %d\n, *p, *q);
return 0;
}

Q2) a)

Write a recursive function to display string in reverse.

[5]

b)

Write a C program to find out the sum of series 1^3 + 2^3 +... + n^3.[5]

Q3) a)

Write a C program to display major diagonal elements of a matrix. [5]

b)

Write a C program to print the following triangle:

[5]

Q4) Write a c program to Concatenate many files and store them in a file using
command line argument.
[10]

Q5) Write a C program to create student structure having field roll_no, stud_name,
mark 1, mark 2, mark 3 calculate the total and percentage of each student and
arrange the records in descending order of percentage.
[10]
[4675]-12

Q6) a)

Write a graphics program to accept n points from user and draw a


polygon. Fill this polygon with lines.
[5]

b)

Accept a string in upper case and convert it into lower case without
using library function.
[5]

Q7) Write Short notes on (any Two).


a)

Bitwise operators.

b)

Storage classes in C.

c)

Branching statements in C.

[10]

R R R

[4675]-12

Total No. of Questions : 6]

SEAT No. :

P2256

[Total No. of Pages : 1

[4675]-13
M.C.A. (Management Faculty)
BM - 11 : PRINCIPLES AND PRACTICES OF MANAGEMENT
FUNCTION AND ORGANIZATIONAL BEHAVIOUR
(2008 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Attempt any 3 from remaining.
3) Figures to the right indicate full marks.

Q1) a)
b)

[Max. Marks : 70

What is organization? Define principles of organization and classify


different structures of organization.
[15]
Discuss Theory X and Theory Y of motivation.
[10]

Q2) Signify the role of Decision making for improving organization effectiveness.
Discuss Herbert Simons Model in brief.
[15]
Q3) Explain how motivation helps to achieve success in an IT industry with the
help of Maslows need hierarchy theory.
[15]
Q4) What is Conflict Management? How can conflict be resolved in organisations?
[15]
Q5) Henry Fayol is known as Father of modern Management. Discuss.

[15]

Q6) Write Short Notes (any 3):


a) Team Building.
b) Johari Window.
c) Centralisation Vs Decentralisation.
d) H.R. approaches to Management.
e) Leadership style.

[15]

Total No. of Questions : 7]

P2257

[Total No. of Pages : 2

[4675]-14
M.C.A. (Management Faculty)
IT - 13 : OPERATING SYSTEM CONCEPTS
(2008 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. 7 is compulsory.
2) Solve any five questions from 1 to 6.
3) Figures to the right indicate full marks.

Q1) a)
b)

SEAT No. :

[Max. Marks : 70

Explain priority scheduling with example. Also explain the problem of


starvation for priority scheduling.
[5]
Explain the Reader-Writer synchronization problem and solution for
solving the Problem.
[5]

Q2) Explain the concept of


a) Free space Management.
b) Virtual file system.

[5]
[5]

Q3) Consider the system with five processes P={p0, p1, p2, p3, p4} and four
resources type {W, X, Y, Z}. There are 3 instances of type W, 14 instances of
type X, 12 instances of type Y, 12 instances of type Z. the allocation and
maximum demand matrix are as follows.
Process Allocated
Maximum
Resources
requirements
W X Y Z
W X Y Z
P0
0
6
3
2
0
6
5
2
P1
0
0
1
2
0
0
1
2
P2
1
0
0
0
1
7
5
0
P3
1
3
5
4
2
3
5
6
P4
0
0
1
4
0
6
5
6
Answer the following questions:
a) Is the system in a safe state.
[8]
b) Can the request made by process p4 (0, 0, 4, 1) be granted?
[2]
P.T.O.

Q4) a)
b)

Explain logical and physical address space and role of MMU.


How swapping is applied between memory and backing store.

[5]
[5]

Q5) What is deadlock? Explain deadlock prevention and deadlock detection with
example.
[10]
Q6) Suppose that a disk drive has 200 tracks and the read/write head starts at
track 100. The request queue, in order, contains requests for tracks:
55, 58, 18, 90, 160, 38
Starting from the current head position, what is the total distance that the disk
arm moves to satisfy all pending requests for each of the following disk
scheduling algorithms.
a) SSTF.
[5]
b) SCAN.
[5]
Q7) Write short notes on (Any four) :
a) Multiprogramming.
b) Android Features.
c) Features of Distributed OS.
d) Shared pages.
e) Process Simulation.

[4675]-14

[20]

Total No. of Questions : 4]

P2258

SEAT No. :
[Total No. of Pages : 2

[4675] - 15
M.C.A. (Management Faculty)
MT - 11 : DISCRETE MATHEMATICS
(2008 Pattern) (Semester - I)
Time : 3 Hours]
Instructions to the candidates:
1) Question No.1 is compulsory.
2) Attempt any two questions from Q.No. 2, 3 and 4.
3) Figures to the right side indicate full marks.
4) Use of Scientific Calculator is allowed.

Q1) a)

[Max. Marks : 70

Check the equivalence of the following statements truth tables:

[5]

P (Q R ) (P Q ) R )

(A C ) (B C ) (A B ) C )
b)

Find the number of regions defined by a connected planar graph with 6


nodes and 10 edges. Draw one such graph.
[5]

c)

Let A = {1, 2, 3, 4, 5}, R = { < 1, 1 >, < 1, 2 >, <2,1>, < 2, 2 >, <3, 4>,
< 4, 3>, <3, 3>, < 4, 4 >, < 5, 5 >}. Is R an equivalence relation? [5]

d)

Let S = {1, 2, 3, 6 ,12} and * be a binary operation defined on S where


a* b = G.C.D(a,b ). Determine whether (S,*) is a
[5]
i)

Semigroup

ii)

Monoid

e)

Prove that in any graph the number of odd vertices is always even. [5]

f)

Let I7 be the set of integers modulo 7. Define f : 17 17 by f(x) = 3x


(mod 7). Determine whether the function is one-to-one and onto. [5]

Q2) a)

Express following using quantifiers.

[5]

i)

There exists a polar bear whose colour is not white.

ii)

Every polar bear that is found in cold region has a white colour.
P.T.O.

b)

Check the following statement is tautology or contradiction:

[7]

((P R ) (Q P )) ((P Q ) (P R ))
((P Q ) (P R )) (P R )
c)

i)

Let A = {2, 3, 4, 5} R = { (2,3), (3,3), (4,5), (5,1) }. Is R asymmetric


or antisymmetric?
[4]

ii)

Let f and g be two permutations of degree 5 as given below. Find


fog and gof
[4]
1 2 3 4 5
f =

2 3 4 5 1

Q3) a)

1 2 3 4 5
and g =

1 2 4 5 3

Find the converse and contra positive of the implication:

[5]

If you are good in Mathematics then you are good in Logic.


b)

Let A = {1, 2, 3, 4, 5} and R : A A such that R = { (x,y)/X > Y}, then


Find R, Draw Matrix and draw the graph of R.
[7]

c)

Write the code words generated by H, where

[8]

1 1 0 1 0 0
H = 1 0 1 0 1 0

0 1 1 0 0 1

Q4) a)

Obtain the PDNF for the following:

[5]

(P Q ) (P Q ) (P Q )
b)

c)

Find the total number of nodes in a full binary tree with 20 leaves. Draw
the following graphs.
[7]
i)

Two ternary trees with 9 leaves.

ii)

Two binary trees with 7 leaves

Define the following terms with suitable examples:


i)

Eccentricity of a vertex.

ii)

Edge connectivity and vertex connectivity.

iii)

Complete Bipartite Graph.

iv)

Isomorphic graphs.

l l l l
[4675] - 15

[8]

Total No. of Questions : 7]

P2295

SEAT No. :
[Total No. of Pages : 2

[4675] - 203
M.C.A. (Management Faculty)
IT -23: OPERATING SYSTEM CONCEPTS
(2012 & 2013 Pattern) (Semester - II)

Time : 3 Hours ]
Instructions to the candidates:
1) Questions 1& 7 are compulsory.
2) Solve any 4(four) from remaining.
3) Make suitable assumptions & draw neat diagrams if required.

Q1) a)
b)

[Max. Marks : 70

What do you mean by preemptive algorithm? Explain any two preemptive


scheduling algorithm for CPU with example.
[10]
Explain Resource allocation graph.

[5]

Q2) Explain RAID structure in detail.

[10]

Q3) What is demand paging? Explain how it is implemented by OS.

[10]

Q4) Explain the working of Bankers algorithm for the deadlock avoidance with
example.
[10]

Q5) Explain inter process communication & its various techniques in detail. [10]

Q6) Consider the following page reference string. Calculate total page faults for
LRU & FIFO with 3 frame list.
[10]
7, 0,1,2,0,3,0,4,2,3,0,3,2,1,2,0,1,7,0,1

P.T.O.

Q7) Write short Notes (any 3).

[15]

a)

Features of Android OS.

b)

Disk performance Issues.

c)

Page fault.

d)

Logical & physical view of OS.

R R R

[4675]-203

Total No. of Questions : 7]

P2296

SEAT No. :
[Total No. of Pages : 2

[4675] - 204
M.C.A.
MANAGEMENT FACULTY
BM 21 - Management Information System and
Business Intelligence
(2012 and 2013 Pattern) (Semester - II)
Time : 3 Hours]
Instructions to the candidates:
1) Q.No. 1 is compulsory.
2) Attempt any 5 questions from Q.2 to Q.7.

[Max. Marks : 70

Q1) Answer the following:


a)

What mean by BUSINESS INTELLIGENCE.Explain its need for


business.
[7]

b)

Draw BUSINESS INTELLIGENCE Architecture and explain it in


details.
[7]

c)

Explain use of Data Warehousing and Data mining in modern business.[6]

Q2) How could you define Information and data? Explain the factors in deciding
quality of Information and data.
[10]
Q3) What are its limitations and advantages of Herbert - Simon model of decision
making?
[10]
Q4) Explain role of M.I.S in todays business world. Write the MIS structure
based on organizational functions and process?
[10]
Q5) Differentiate the following in details with example
a)

D.S.S. and Expert System.

b)

Enterprise and Executive Support System.

[10]

P.T.O.

Q6) Wal-Mart house India is in the business of sales and distribution of consumer
goods in all categories. You as an IT expert prepare a BI solution for the WalMart house India operation. Assume suitable data and prepare a decision
making solution for it.
[10]
Q7) Write short note on following (Any 2)
a)

Simulation.

b)

Law of requisite variety.

c)

BI Tools - concept of dashboard.

l l l l

[4675] - 204

[10]

Total No. of Questions : 7]

P2297

SEAT No. :
[Total No. of Pages : 2

[4675] - 205
M.C.A. (Management Faculty)
IT-24: ENTERPRISE RESOURCE PLANNING
(2012 and 2013 Pattern) (Semester - II)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 is compulsory.
2) Attempt any 5 questions from Q2 to Q7.
3) Figures to the right indicate full marks.

Q1) a)

[Max. Marks : 70

A $5M Company that Manufactures and Sells Storage Solutions for


various firms in India. They use an outside contractor to build software/
hardware appliances for storage, then sell through a distribution channel,
sell service and support it. They needed software to track components
and their stock.
Their key requirements were inventory management, PO, ECO change
history, serialization of customer equipment and integration with Salesforce
for customer history.
But they ran into trouble from the very beginning. The consultant assigned
to work with them-one of the vendors less capable staff members-did
not understand their type of business.
The company found that the software was not set up properly and required
customizations from the beginning, which has locked them into
unresolvable problems. They also feel its overall capabilities for
manufacturing are very limited. The software was overly complicated
for their needs.

b)

Discuss BPR lifecycle in detail with suitable diagram.

[10]

Explain the need and importance of ERP system.

[10]

Q2) Discuss the modules and sub modules in Human Resource Management.[10]
Q3) Explain the modules in Purchase and Sales management in ERP systems.[10]
P.T.O.

Q4) Explain the important role in ERP implementation.

[10]

Q5) Explain in detail ERP-Human Resource Management and Production Planning,


Control and Management.
[10]
Q6) What are the ERP V/S In-house Applications?

[10]

Q7) Write a short note on (any Two).


a) OLTP.
b) Post Evaluation and Maintenance.

[10]

c)

Customer Relationship Management.

R R R

[4675]-205

Total No. of Questions : 6]

P2261

SEAT No. :
[Total No. of Pages : 1

[4675]-23
M.C.A. (Management Faculty)
IT - 23 : SOFTWARE ENGINEERING
(2008 Pattern) (Semester - II)

Time : 3 Hours]
Instructions to the candidates:
1) Q. 1 and 6 are compulsory.
2) Attempt any three from the remaining.

[Max. Marks : 70

Q1) The ABC institute wants to computerize its Course Management System. The
institute offers various courses. Each course is made up of set of subjects.
Teachers in the institute are assigned the courses and the subjects according
to the area of their specialization. Each course has a co-ordinator who manages
the course contents, assigns subject to the teacher, schedules the lectures and
examination.
You are required to study the system and
a) Draw context level and first level DFD.
[10]
b) Prepare the SRS (scope, objective, function/non functional requirements,
system specification) for the same.
[10]
Q2) Explain decision tree, decision table with proper examples.

[10]

Q3) Describe the phases of SDLC in detail.

[10]

Q4) Explain method of estimating software maintenance cost. Give various


components of legacy systems.
[10]
Q5) Explain the role of CASE tools throughout the software development life
cycle along with its advantages.
[10]
Q6) Write Short Note: (any four):
a) Spiral Models.
b) Reverse engineering.
c) Code Design.
d) Types of Documentation.
e) Agile Process.

[4 5 = 20]

Total No. of Questions : 6]

SEAT No. :

P2262

[Total No. of Pages : 1

[4675] - 24
M.C.A. (Management Faculty)
BM - 21 : 204 : SOFT SKILLS
(2008 Pattern) (Semester - II)
Time : 3 Hours]
Instructions to the candidates:
1) Q.No. 1 is compulsory.
2) Attempt any three questions from remaining questions.

Q1) a)
b)

[Max. Marks : 70

What do you mean two way communication.


[10]
What is body language? Importance in inter personal communication of
body language.
[15]

Q2) Explain written communication plays important role in organisation.

[15]

Q3) What is report writing? Explain good qualities of business report writing.[15]
Q4) What are the advantages and limitations of e-mail? Importance of e-mail in
business.
[15]
Q5) Explain the role of communication in an organisation and its purpose.

[15]

Q6) Short notes (Write any three):


a) Business communication.
b) ABC rule of communication.
c) Self - esteem.
d) Notice of meeting.

[15]

l l l l

Total No. of Questions : 6]

P2263

SEAT No. :
[Total No. of Pages : 3

[4675] - 25
M.C.A. (Management Faculty)
MT-21:205- PROBABILITY & COMBINATORICS
(2008 Pattern) (Semester - II)

Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:
1) Q.No.1 and Q.No. 4 are compulsory.
2) Solve any one from Question Nos. 2 and 3. And solve any one from Question Nos. 5
and 6.
3) Use of statistical table and non programmable calculator is allowed.
4) Figures to the right indicate full marks.

Q1) a)
b)

State and prove generalized principle of Inclusion and Exclusion.

Find the number of integer valued solutions of the following equation.[5]


x1 + x2 + x3 = 34

c)

x1 > 3, x2 2, x3 2

Solve the following Recurrence relation


ar 7 ar 1 + 10 ar 2 = 0,

d)

Q2) a)

b)

[5]

[5]

given that a0 = 0, a1 = 3.

Find the coefficient of x 2 y 4 z 3 in the expansion of (7 x + 3 y 2 + 3 z ) .[5]


7

Using combinatorial argument prove the following binomial identities.[8]


i)

n n
n n
0 + 2 + .... = 1 + 3 +....

ii)

2n
n
2
=
2
2
2 + n

How many integers between 999 and 9999 either divisible by 2 or 5?


[7]

P.T.O.

Q3) a)

Determine the Discrete Numeric Function corresponding to generating


z5
function
.
1 6 z +z 2

b)

Q4) a)

[8]

If 4 Americans, 3 Frenchman and 3 Indians are to be seated for dinner.


How many ways they can sit on circular table if:
[7]
i)

There is no restriction

ii)

Same nationality must sit next to each other?

Derive probability mass function of Binomial random variable.

[6]

b)

Calculate mean and Variance of Poisson random variable X.

[7]

c)

A two dimensional r.v. (X,Y) have a bivariate distribution given by


x2 + y
P (X =x, Y = y ) =
, for x = 0,1, 2, 3 & y = 0,1 . Find marginal
32
distributions of X and Y conditional distribution of Y given X = 2. [7]

Q5) a)

A factory produces a certain type of outputs by three types of machine.


The respective daily production figures are: Machine I-3000 units,
Machine II-2500 units and Machine III-4500 units. Past experience show
that 1% of the output produced by Machine I is defective, and
corresponding fraction of defectives for the other two machines are 1.2%
and 2% respectively.
An item is drawn at random from the days production run and is found
to be defective. What is the probability that it comes from the output of
machine I. State the theorem used to solve above problem.
[8]

b)

If the M.G.F. of random variable X is given by M X (t ) = 2 obtain the


2t
standard deviation of X.

[4675]-25

[7]

Q6) a)

Joint probability distribution of two dimensional random variable (X,Y)


is given below.
[8]
Y

0.05

0.10

0.15

0.05

0.08

0.09

0.15

0.03

0.05

0.09

0.03

0.03

0.03

0.03

0.02

0.02

Find:

b)

i)

Marginal distributions of X and Y.

ii)

Conditional distributions of X given Y = 2.

iii)

P [Y>X].

Prove that Poisson distribution is limiting case of Binomial distribution.


[7]

R R R

[4675]-25

Total No. of Questions : 7]

P2298

SEAT No. :

[4675] - 301
M.C.A. (Management Faculty)
IT-31: WEB TECHNOLOGIES
(2012 Pattern) (Semester - III)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 is compulsory.
2) Solve any five from Q.2 to Q.7.
3) Draw neat diagrams wherever necessary.

Q1) a)
b)

[Total No. of Pages : 2

[Max. Marks : 70

Explain configuration file and creation of SSL certificate.

[10]

Explain DOM and SAX parser with examples.

[10]

Q2) Design an application form for conference registration on entitled IT in


Academics and validate the form using Javascript. (login, password, name,
date-of - birth, e mail).
[10]
Q3) Explain properties of CSS.
a)

List

b)

Text

c)

Margin

[10]

Q4) Write steps to create basic plugin in Jquery. Using javascript and its
implementation in HTML.
[10]
Q5) Explain chaining, Getters and setters in Jquery with examples.

Q6) a)
b)

Explain N-tier architecture.


<div> and <span> tag.

[10]

[5]
[5]
P.T.O.

Q7) Write short notes on (any 2)

[52 = 10]

a)

DTD attribute types.

b)

Virtual hosting.

c)

Event handling in JavaScript.

R R R

[4675]-301

Total No. of Questions : 7]

P2299

SEAT No. :
[Total No. of Pages : 2

[4675] - 302
M.C.A. (Management Faculty)
IT-32: DATA COMMUNICATION AND COMPUTER NETWORKS
(2012& 2013 Pattern) (Semester - III)
Time : 3 Hours]
Instructions to the candidates:
1) Q.1 and Q.7 are compulsory.
2) Attempt any Three from remaining.
3) Neat diagrams must be drawn wherever necessary.
4) Figures to the right side indicate full marks.

Q1) a)

b)

[Max. Marks : 70

Justify with True or False (not more than 60 words)

[10]

i)

The switch-based Ethernet eliminates collisions.

ii)

If a parity setting is even then the sum of all the characters bits plus
the parity bit should be equal to an odd number.

iii)

The OSPF protocol is link state route discovery protocol.

iv)

The Packet-switching method provide dedicated communication


channel between two stations.

v)

The more Host addresses allocated for, the fewer Network Address
available.

Generate CRC code for the data word 1010001011 using the divisor
11101.
[10]

Q2) Define the subnet mask to be used in Class -B addressing to support 30


subnets and also find the most hosts possible in each subnet.
[10]

Q3) Define HTTP. What are the features of HTTP. What are the different types of
HTTP Request? Explain each of them.
[10]

P.T.O.

Q4) What are the options of DHCP? What are the advantages of DHCP? List and
explain the characteristics of DHCP.
[10]

Q5) Explain with example the funcitons of SMTP and POP. What are the advantages
of IMAP?
[10]

Q6) Define and explain Symmetric key Cryptography? Why Digital signature is
used.
[10]

Q7) Write short notes (Any Four)


a)

Wireless LAN.

b)

Loop-back addressing.

c)

Addressing scheme of IPv6.

d)

Telnet.

e)

IEEE 802.11.

[20]

R R R

[4675]-302

Total No. of Questions : 7]

P2300

[Total No. of Pages : 2

[4675] - 303
M.C.A. (Management Faculty)
IT-33: DATA STRUCTURE USING C++
(2012 Pattern) (Semester - III)

Time : 3 Hours]
Instructions to the candidates:
1) Questions 1 is compulsory.
2) Solve any four questions from Q.2 to Q.7.

Q1) a)
b)

SEAT No. :

[Max. Marks : 70

An integer array is defined as [250] [400] find the address of cell


[90][30].
[5]
Construct a Binary tree from the given traversals
[5]
Preorder: A B D G H E I C F J K
Inorder: G D H B E I A C J F K

Q2) a)
b)

Write a C++ program for addition of sparse matrices.


[7]
Show the AVL tree construction for the following.
[8]
MAR, MAY, NOV, AUG, APR, JAN, DEC, JUL, FEB, JUN, OCT,
SEP.

Q3) a)

Convert the following expression to prefix expression. Show the contents


of the stack at each step.
A* (B + C D) *E/F *G.
[7]
Write a C++ program to reverse a singly linked list.
[8]

b)
Q4) a)

Generate DFS, BFS for the Node A. Write the adjacency matrix and
adjacency list for the following graph.
[8]

P.T.O.

b)

Write a C++ function to insert a node at a given position in a circular


linked list.
[7]

Q5) a)

Write a C++ function for non recursive preorder traversal of a binary


tree.
[8]

b)
Q6) a)
b)

Q7) a)
b)

Write a program to implement a circular queue.

[7]

Write a program for multiplication of polynomials.

[7]

Write the following C++ function for AVL trees.

[8]

i)

Right Left Rotation

ii)

Left Right Rotation

Write a C++ function for merging two sorted linked lists.

[7]

Build a B-tree of order 5 for the following.

[8]

10, 70, 60, 20, 110, 40, 80, 130, 100, 50, 190, 90, 180, 240, 30.

[4675]-303

Total No. of Questions : 7]

SEAT No. :

P2301

[Total No. of Pages : 1

[4675]-304
M.C.A. (Management Faculty)
IT - 34 : ADVANCE DATABASE MANAGEMENT SYSTEM
(2012 & 2013 Pattern) (Semester - III)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Solve any five questions from 2 to 7.
3) Figures to the right indicate full marks.

Q1) a)
b)

[Max. Marks : 70

What do you understand by OODBMS? Explain the features of


OODBMS.
[10]
Explain different schema in dimentional data modeling.
[10]

Q2) Explain I/O parallelism? Define Parallelism on Multicore processor.

[10]

Q3) Explain concurrency control in Distributed Database.

[10]

Q4) What is anociation Rule? Explain with example frequent-pattern tree algorithm.
[10]
Q5) What are the various application of XML? Explain XML Parsers.

[10]

Q6) Explain multimedia Architecture? Mentioned the requirement for mobile


database.
[10]
Q7) Write short notes (Any 2):
a) Cloud Band Server.
b) SOAP.
c) Data-visualization.
d) OLAP.

[10]

Total No. of Questions : 8]

P2264

SEAT No. :

[4675] - 31
M.C.A. (Management Faculty)
IT-31:WEB TECHNOLOGIES
(2008 Pattern) (Semester - III)

[Total No. of Pages : 2

Time : 3 Hours]
Instructions to the candidates:
1) Q.No.1 and Q.No. 8 are compulsory.
2) Solve any five from Q.2 to Q.7.
3) Draw neat diagrams wherever necessary.

[Max. Marks : 70

Q1) Write DTD program for online information submission to voter card application
(Take 7 elements)
[10]
a)

Looking at DTD create XML file.

b)

Apply CSS to XML file.

Q2) Explain event handling in Javascript with examples.

[10]

Q3) Write ASP program to fill on-line form for Car insurance with suitable fields
and insert into database.
[10]
Q4) Explain Date and Array objects with examples in VBscript.

[10]

Q5) Explain following tags:


a) <IFRAME>

[10]

b)

<DIV>

c)

<META>

d)

<SPAN>

Q6) Explain CSS and its different types with examples.

[10]
P.T.O.

Q7) Design HTML form for Fixed deposit scheme, Take suitable fields using
Javascript.
[ 10]

Q8) Write short notes (Any Two)


a)

Global asa.

b)

SOAP.

c)

Three tier architecture.

[4675]-31

[10]

Total No. of Questions : 7]

P2265

SEAT No. :
[Total No. of Pages : 2

[4675] - 32
M.C.A. (Management Faculty)
IT - 32 : DATA COMMUNICATION AND COMPUTER NETWORKS
(2008 Pattern) (Semester - III)
Time : 3 Hours]
Instructions to the candidates:
1) Q.1 and Q.7 are compulsory.
2) Attempt any Three from remaining.
3) Neat diagrams must be drawn wherever necessary..
4) Figures to the right side indicate full marks.

Q1) a)

Justify with True or False (not more than 60 words).

[Max. Marks : 70

[10]

i)

In OSI network Architecture the dialogue Control and Token


Management are responsibilities of Session Layer.

ii)

To connect LANs with different protocols a translating bridge can


be used.

iii)

Firewalls operate in one of two filtering modes: Deny all or pass all.

iv)

RIP is a dynamic distance vector method based on Hop counts.

v)

Sequencing is provided in virtual circuit approach, since all packets


follow the different route.

b)

Define HTTP. What are the features of HTTP, What are the different
types of HTTP Request? Explain each of them.
[10]

Q2) a)

Find the maximum number of hosts available on a class-B address with


a subnet mask of 255.2555.255.192.

b)

Find the subnet ID for the IP address 202.127.19.94 with a subnet mask
of 255.255.255.248.
[10]

P.T.O.

Q3) Describe the meaning and purpose of DNS. Explain Name resolution and
inverse resolution. Define Partially Qualified and Fully Qualified.
[10]

Q4) What are the purpose of ARP, RARP, ICMP and IGMP of IP layer? Explain
each of them.
[10]

Q5) Define threat and attacks. Explain active attack and passive attack. Why
Digital Signature is used?
[10]

Q6) What is MIME? Explain its purpose and format in detail.

[10]

Q7) Write short notes (any four).

[20]

a)

Topologies.

b)

X.25

c)

LAN access techniques.

d)

VSAT.

e)

IP routing.

f)

SNMP.

R R R

[4675]-32

Total No. of Questions : 8]

P2266

SEAT No. :
[Total No. of Pages : 6

[4675]-33
M.C.A. (Management Faculty)
IT - 33 : Object Oriented Programming Using C++
(2008 Pattern) (Semester - III)

Time : 3 Hours]
Instructions to the candidates:
1) Question 1 is compulsory.
2) Solve any six from Q.2 to Q.8.

Q1) What will be the output of the following program?


a) #include<iostream.h>
#include<string.h>
class A
{
char *str;
public:
void set (char *s)
{
strcpy(str, s);
}
static void show( )
{
cout<<str;
}
};
void main ( )
{
A obj;
obj.set(Hello);
A : : show( );
}

[Max. Marks : 70

[10]

P.T.O.

b)

c)

#include<iostream.h>
void main( )
{
cout.setf(ios::left);
cout.width(9);
cout.fill(#);
cout.precision(5);
cout<<-5.25;
cout<<endl;
cout.setf(ios::right, ios::adjustfield);
cout.width(9);
cout.fill(*);
cout.precision(7);
cout<<10.25;
}
#include<iostream.h>
class A
{
int x;
public:
void setA(int x)
{
this->x=x;
}
void putA( )
{
cout<<x;
}
};
class B : protected A
{
int y;
public:

[4675]-33

void setB(int y)
{
this->y=y;
}
void putB( )
{
cout<<y;
}
};
void main ( )
{
B obj;
obj.setA(10);
obj.putB( );
}
d)

#include<iostream.h>
class base
{
private:

int i;

};
class derived : public base
{
int j;
};
void main( )
{
cout<<sizeof(derived)<<endl<<sizeof(base);
base bobj;
[4675]-33

derived dobj;
cout<<endl<<sizeof(dobj)<<endl<<sizeof(bobj);
}
e)

#include<iostrem.h>
class A
{
public:
virtual void show( )
{
cout<<I am in show A;
}
void display( )
{
cout<<I am in display A;
}
};
class B : public A
{
public:
void show( )
{
cout<<I am in show B;
}
};
class C : public A
{
public:
void display( )
{
cout<<Iam in display c

[4675]-33

}
};
void main( )
{
A *aa=new B( );
aa->show( );
aa=new C( );
aa-> display( );
}

Q2) a)

Write a function template to calculate area of circle.

[5]

b)

Explain any five manipulators with suitable example.

[5]

Q3) Write a program to create Template class circular queue to implement insertion
and deletion operation.
[10]

Q4) a)
b)

Write a program to accept a string and throw Too Few Vowels


Exception if the string contain less than 3 vowels.
[5]
What is STL? Explain different container classes.

Q5) Write a program to overload [] and != operators.

[5]

[10]

Q6) Write a program to read the records from Bank.txt file and delete records
of customers whose balance is less than 1000.
[10]

[4675]-33

Q7) Define a class to represent Library information include student information &
book information.
[10]
Student Information includes:
Data members: student id, name, course
Member function:
a)

Get Student data

b)

Display student data

Book Information includes:


Data Members: Book id, book name, price
Member function:
a)

Get Book data

b)

Display Book data

Library Information Includes:


Data Member: book issue day, book return day, fine
Member Function:
Calculate fine who exceeds limit of return days
Q8) Write short notes on the following: (Any TWO):
a)

Exception Handling Mechanism.

b)

New Style Cast.

c)

Standard Template Library.

d)

RTTI.

[4675]-33

[10]

Total No. of Questions : 7]

SEAT No. :

P2267

[Total No. of Pages : 1

[4675]-34
M.C.A. (Management)
IT - 34 : ADVANCED DATABASE MANAGEMENT SYSTEMS
(New) (2008 Pattern) (Semester - III)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. 7 is compulsory.
2) Solve any five questions from 1 to 6.
3) Figures to the right indicate full marks.

[Max. Marks : 70

Q1) Discuss OODBMS, ORDBMS, RDBMS.

[10]

Q2) Explain concurrency control and deadlock handling in distributed DBMS.[10]


Q3) Explain the characteristics of a Data warehouse & its architecture in detail.[10]
Q4) What do you mean by Inter-Query & Intra-query parallelism?

[10]

Q5) What is OLAP? Discuss the types of OLAP servers.

[10]

Q6) Discuss Apriori algorithm.

[10]

Q7) Write short Notes any four:


a) Snowflake Schema.
b) Spatial databases.
c) Data mart.
d) DTD.
e) Outlier analysis

[20]

Total No. of Questions : 8]

SEAT No. :

P2303

[Total No. of Pages : 2

[4675]-401
M.C.A (Management Faculty)
IT - 41 : JAVA PROGRAMMING
(2012 Pattern) (Semester-IV)
Time : 3 Hours]
Instructions to the candidates:
1) Q. No. 1 is compulsory.
2) Solve any six from remaining.

[Max. Marks : 70

Q1) Solve the following:

[10]

a)

What is garbage collection?

b)

List out any four methods of Hash Map class.

c)

What is difference between abstract and final keyword?

d)

Which methods are used for interthread communication?

e)

What is port?

Q2) Write JDBC application that will accept name of constituency. List signs and
names of candidates who got party tickets from given constituency. [Assume
suitable table structure].
[10]

Q3) Write Java application to demonstrate add, replace, delete, copy objects in
linked list.
[10]

Q4) Write socket application to do following. Client will accept file name from
user and send to server. Server will check it file present and send contents of
file in reverse order to client as a single response. Client will display response
sent by server.
[10]

[4675]-401

P.T.O.

Q5) Write an applet to display scrolling text left to right in window. Using thread.
Accept text as parameter.
[10]

Q6) Write RMI application to calculate simple interest. Accept amount, rate and
tenure from user.
[10]

Q7) Explain types of exception with example.

[10]

Q8) Write notes on (Any Two):

[10]

a)

Rules for writing Java bean class.

b)

Event delegation model.

c)

JDBC drivers.

[4675]-401

Total No. of Questions : 7]

P2305

SEAT No. :
[Total No. of Pages : 1

[4675] -403
M.C.A. (Management Faculty)
IT -43: INFORMATION SECURITY AND AUDIT
(2012 Pattern) (Semester - IV)

Time : 3 Hours ]
Instructions to the candidates:
1) Q.1and Q.7 are compulsory.
2) Solve any four from Q.2 to Q.6.
3) Figures to the right side indicate full marks.

[Max. Marks : 70

Q1) User receives a mail with an URL for winning a prize of Rs. 1 lack. User has to
register and enter details of bank account. Discuss security related issues.[10]
Q2) Explain ISMS in detail.

[10]

Q3) What are the cyber-crimes and attacks?

[10]

Q4) Explain policy design life cycle.

[10]

Q5) Explain IT-governance framework in detail.

[10]

Q6) Explain auditing techniques and methodologies.

[10]

Q7) Short notes (any Four).


a)

Windows password auditor.

b)

E-mail security.

c)

BCP

d)

Logical and physical access controls.

e)

Ethical hacking.

[45 = 20]

Total No. of Questions : 5]

SEAT No. :

P2306

[Total No. of Pages : 4

[4675] - 404
M.C.A. (Faculty of Management)
MT - 41 : OPTIMIZATION TECHNIQUES
(2012 Pattern) (Semester - IV)
Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Attempt any THREE from the remaining.
3) Use of statistical table and non programmable calculators is allowed.
4) Figures to the right indicate full marks.

SECTION - I
Q1) a)

The cost in Rs. of transportation of each unit from various warehouses


to different markets is given below: Find optimum solution?
[7]

The capacity of warehouse are 200,500,300 for X,Y,Z respectively and


demand for markets A,B,C,D are 180.320,100 and 400 respectively.

P.T.O.

b)

A project consists of nine activities whose time estimates and others


characteristics are given below:
[7]

Activity

Preceding

Time estimates (in weeks)

Activity

Optimistic

Most likely Pessimistic

------

------

------

12

24

11

14

23

B,D

10

12

B,D

C,F

15

27

10

16

i)

Draw the network diagram and find the critical path?

ii)

Find project completion time and project variance?

iii)

A penalty of Rs 15,000 per week is to be imposed on the contractor


if the project is not completed in 36 weeks. What is the probability
that he has to pay penalty of Rs 45,000?

c)

A repairman is to be hired by a company to repair machines that


breakdown following poison process with an average rate of four per
hour. The cost of non-productive machine time is Rs. 90 per hour. The
company has an option of choosing either a fast or a slow repairman.
The fast repairman charges Rs. 70 per hour will repair machines at an
average rate of 7 per hour, while the slow repairman charges Rs. 50 per
hour and will repair machines at an average rate of 6 per hour. Which
repairman should be hired?
[7]

d)

A large computer installation contains 2000 components of identical nature


which are subject to failure as per probability distribution that follows:
Month ends
% failure to date

[4675] - 404

10

25

50

80

100

Components which fail have to be replaced immediately for efficient


working. If they are replaced individually, the cost is Rs. 45. If the items
are replaced in a lot the cost per item will be Rs. 15. Find which policy
of replacement should be adopted and why?
[7]
Q2) a)

b)

Q3) a)

b)

Solve the following LPP by using two phase simplex method.


[7]
Min Z = 40x1 + 24x2
Subject to 20x1 + 50x2 > 4800
80x1 + 50x2 > 7200
x1, x2 > 0
A company has categorized its investments proposals into seven types.
The financial analysts are needed to analyse the risk and return
characteristic of these types. The time that the analyst and the committee
take is based on the size of the project. If it is required to minimize the
time taken in evaluating these proposals, how should they be scheduled?
The time required in hours is as below:
[7]
Investment
A
B
C
D
E
F
G
Analysis
8
5
10
8
14
10
7
Evaluation
3
3
7
4
8
6
5
What is total completion time required for analysis and evaluation?
The purchase manager of Sigma company is contacted by a new supplier
who offers a quantity discount on an item KR - 100 being used by the
company. The ordering cost is Rs. 80 per order holding cost is 25% of
the average inventory value on a yearly basis. The annual demand for
this item is 40,000 units at a constant daily rate. The price of an item is
Rs. 80 and the supplier offers the discount of Rs. 4 per unit if the company
places an order for at least 2000 units of the items at a time. Should the
manager take benefit of discount and why?
[7]
A fast food chain wants to build four stores say A, B, C and D. Six different
construction companies were invited to bid on each job. Their quotation in
thousand rupees was as shown in the following table. Each company will be
assigned at most one store, find the optimum assignment?
[7]

[4675] - 404

Q4) a)

b)

Q5) a)

b)

Define the following:


i) Critical path.
ii) Unbalanced transportation problem.
iii) Group replacement.
iv) EOQ.
v) Slack variable.
vi) Cost slope of an activity.
vii) Holding cost.
Solve the following LPP:
Max Z = 2x1 + 4x2
Subject to 2x1 + x2 < 18
3x1 + 2x2 > 30
x1 + 2x2 = 26
x1 , x2 > 0

[7]

[7]

The data for the project are


[7]
Preceding
Time (in weeks)
Cost (in Rs.)
Activity
activity
Normal Crash
Normal
Crash
A
-----3
2
18000
19000
B
-----8
6
600
1000
C
B
6
4
10000
12000
D
B
5
2
4000
10000
E
A
13
10
3000
9000
F
A
4
4
15000
15000
G
F
2
1
1200
1400
H
C,E,G
6
4
3500
4500
I
F
2
1
7000
8000
i) Draw the network diagram and find the critical path?
ii) If in direct cost is 700 Rs./week find the optimal duration and the
cost associated with it?
Write the notes on Characteristic of queuing theory?
[7]

l l l l
[4675] - 404

Total No. of Questions : 8]

P2307

SEAT No. :
[Total No. of Pages : 2

[4675] - 405
M.C.A. (Management Faculty)
IT-44: DESIGN AND ANALYSIS OF ALGORITHM
(2012 Pattern) (Semester - IV)

Time : 3 Hours]
Instructions to the candidates:
1) Question 1 and 8 are compulsory.
2) Solve any FIVE questions from Q2 to Q7.
3) Figures to the right indicate full marks.

[Max. Marks : 70

Q1) a)

Define an algorithm. State and explain pseudo code conventions for


analyzing different algorithms.
[5]

b)

Differentiate between the Divide and Conquer strategy and Greedy


approach of the problem solving.
[5]

Q2) Design an algorithm for job sequencing with deadlines problem using greedy
method. Obtain the optimal job sequence for following data of jobs.
N = 5, (P1, P2, P3, P4, P5) = (25,15,12,5,1) and (D1, D2, D3, D4, D5) =
(3,2,1,3,3).
[10]

Q3) What are the characteristics of divide and conquer method? Discuss Merge
sort algorithm with its complexity. Assume suitable data.
[10]
Q4) Write an algorithm for Flow-shop scheduling using dynamic programming
approach.
[10]
Q5) Write an algorithm for Bucket sort. Trace it with following data. Also state its
time complexity.
{0.78, 0.17, 0.39, 0.26, 0.72, 0.94, 0.21, 0.12, 0.23, 0.68}.
[10]

P.T.O.

Q6) Define Minimum spanning tree. Write Kruskals algorithm for finding MST
for following graph.
[10]

Q7) Write and analyze the recursive Tower of Hanoi algorithm with n = 3.

[10]

Q8) Write short note on any two of the following.


a) N-Queens Problem.
b) Sets and Disjoint sets.

[10]

c)

NP Complete and NP Hard Problems.

R R R

[4675]-405

Total No. of Questions : 8]

SEAT No. :

P2269

[Total No. of Pages : 2

[4675]-41
M.C.A. (Management Faculty)
IT - 41 : JAVA PROGRAMMING
(2008 Pattern) (Semester-IV)
Time : 3 Hours]
Instructions to the candidates:
1) Q. No. 1 compulsory.
2) Solve any six from remaining.

[Max. Marks : 70

Q1) Solve the following:

[10]

a)

What is Daemon Thread?

b)

Explain unchecked exceptions.

c)

What is Method Overriding.

d)

Explain abstract class.

e)

Explain file class.

Q2) Write JDBC application for robotics event registration (assume suitable stable
structure).
[10]
Q3) Write a Java Socket program. Client will accept two digit number & send to
server. It will display response sent by server. Server will read number & send
no. in words to client.
[10]

Q4) Write a Java applet program to simulate running digital clock that displays
time in HH : MM : SS format.
[10]
Q5) a)
b)

What is late binding & early binding?

[5]

What is anonymous class? Explain with example.

[5]

[4675]-41

P.T.O.

Q6) Write a Java program to append the content of one file to another.

[10]

Q7) What is RMI explain with example.

[10]

Q8) Short notes (Any Two):

[10]

a)

EJB architecture.

b)

Layout Managers.

c)

Applet life cycle.

[4675]-41

Total No. of Questions : 7]

SEAT No. :

P2271

[Total No. of Pages : 2

[4675] -43
M.C.A. (Management Faculty)
IT -43: OBJECT ORIENTED ANALYSIS AND DESIGN
(2008 Pattern) (Semester - IV)

Time : 3 Hours ]
Instructions to the candidates:
1) Question no. 1 is compulsory.
2) Solve any five questions from remaining.
3) Mention the assumptions made for solving case study.

[Max. Marks : 70

Q1) University examination department wants to automate the paper setting process.
The examination controller need to manage different activities (paper setting
schedule for a term in which he will specify date, venue for paper setter) the
teachers need to submit their details along with subject expertise. Based on
subject expertise, exam controller will generate appointment orders for paper
setting. Each paper setting panel will consist of a chairman and members
(min-3& max - 7). Each panel need to set 3 papers for a subject and submitt it
to exam section. A paper setter can be there in many panels. Chairman needs
to set the paper online and upload it on paper setting portal of university.
Through proper login (authentic).
a)

Draw the use case diagram.

[10]

b)

Draw the class diagram.

[10]

Q2) Why object orientation is required? Explain the characteristics of object oriented
programming.
[10]

Q3) Explain the RUP in detail.

[10]

Q4) What is activity diagram? Explain it with proper example.

[10]

P.T.O.

Q5) a)
b)

Draw sequence diagram for online gas booking.

[5]

Draw state chart diagram for an Elevator.

[5]

Q6) Explain or write the difference between sequence diagram and collaboration
diagram.
[10]

Q7) Write short notes on any four.


a)

Class diagram notations.

b)

OOAD.

c)

Deployment diagram.

d)

Patterns.

e)

Testing strategies.

f)

Design Refinement.

[4675]-43

[10]

Total No. of Questions : 4]

SEAT No. :

P2272

[Total No. of Pages : 4

[4675] - 44
M.C.A. (Management Faculty)
MT - 41 : OPTIMIZATION TECHNIQUES
(2008 Pattern) (Semester - IV)
Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:
1) Question No.1 is compulsory.
2) Solve any two questions from question Nos. 2, 3 and 4.
3) Use of Scientific Calculator and Statistical Tables are allowed.
4) Figures to the right indicate full marks.

Q1) a)

The following information regarding a project is given

[9]

Time in days
Activity

Immediate

Most

Most

Most

Predecessor

Optimistic

Likely

Pessimistic

15

12

15

20

25

10

18

26

16

12

D,F

G,H

i)

Construct an arrow diagram for this problem.

ii)

Determine the critical path and compute the expected completion


time.

iii) Determine the probability of completing the project in 55 days.


P.T.O.

b)

Solve the following Integer Programming Problem:

[9]

Max : Z = 2x1 + 20x2 10x3


Subject to :
2x1 + 20x2 + 4x3 < 15
6x1 + 20x2 + 4x3 = 20
x1, x2, x3 > 0 and integers
c)

d)

In a Bank, handled by one teller, customers arrive at the rate of 15 in an


hour. The teller takes 2 minutes to handle a customer. Find:
[6]
i)

The probability that the teller is busy.

ii)

Expected number of customers waiting in the bank.

iii)

The average time spent by the customer in the bank waiting for their
turn.

A small garment making unit has five tailors stitching five different types
of garments. All the five tailors are capable of stitching all the five types
of garments. The output per day per tailor for each type of garment is
given below:
[6]

Determine which types of garment should be assigned to which tailor in


order to optimize production?
Q2) a)

Solve the Transportation Problem:

[4675] - 44

[9]

b)

The following mortality rates have been observed for a certain type of
light bulbs.
[6]
Week:

Percent of failing at end of week : 10

25

50

80

100

There are 1000 such bulbs in use and it costs Rs. 2 to replace an individual
bulb which has burnt out. If all the bulbs were replaced simultaneously it
would cost 50 paise per bulb. What policy the maintenance manger should
follow between individual replacement policy and group replacement
policy, if group policy is adopted, at what interval of time he should
replace all bulbs.
c)

Draw the network diagram for the following data:

Activities

Immediate
Predecessor

I,J,K

B,D B,D F

Q3) a)

Solve the following LPP by Big M method:

[5]
H

G,H F
[9]

Min Z = 4x1 + 3x2 + 9x3


Subject to 2x1 + 4x2 + 6x3 > 15
6x1 + 1x2 + 6x3 > 12
x1, x2, x3 > 0
b)

An aircraft requires 5000 kg of rivets per year. The cost of 1 Kg of rivet


is Rs. 20 and it costs Rs. 200 to place an order and the carrying cost is
10% per unit per year.
[6]
Find :

c)

i)

The Optimum Lot Size

ii)

The time interval between the orders

iii)

Minimum yearly total cost.

Explain the terms:

[5]

i)

Optimistic Time

ii)

Slack

iii)

Unbounded Solution

iv)

Unbalanced Transportation Problem

v)

Alternate Optimum Solution.

[4675] - 44

Q4) a)

The following time-cost table (time in Weeks and cost in Rupees) applies
to a project. Use it to arrive at the network associated with completing
the project in minimum time with minimum cost.
[9]
Activity

Normal
Time

Crash
Cost

Time

Cost

1-2

800

1400

1-3

1000

2000

1-4

1000

1800

2-4

500

500

2-5

1500

2100

3-4

2000

3000

3-5

1200

1600

4-5

900

1600

Indirect cost per week is Rs. 500.


b)

c)

Express the following Assignment Problem as LPP:


A

II

III

IV

Describe the various characteristics of the queuing system.

l l l l

[4675] - 44

[6]

[5]

Total No. of Questions 7]

P2273

SEAT No. :

[Total No. of Pages :1


[4675]-45
M.C.A.
BME-1- 414:(Management Elective)
MIS FRAMEWORK & IMPLEMENTATION
(2008 Pattern) (Semester- IV)

Time : 3 Hours]
Instructions to the candidates:
1) Question No.1 and 7 are compulsory.
2) Solve any four questions from remaining.
3) Figures to the right indicate full marks.

[Max. Marks :70

Q1) Design and discuss a MIS framework for e-learning applications.

[10]

Q2) How Information Technology charging the way production function in


organization is performed?
[10]
Q3) Elaborate different benefits of IT application can provide through office
automation.
[10]
Q4) Explain the different threats to IT infrastructure.

[10]

Q5) Discuss role of DSS to gain compatitive advantage in volatile scenario in


businesses.
[10]
Q6) Explain various socio-economic issues associated with implementation of
online Banking.
[10]
Q7) Write short notes on (any four):
a)

EIS

b)

Critical success factor in Implementing IT applications.

c)

Objectives of security policy.

d)

Group Decision support system.

e)

Expert system.

EEE

[4x5=20]

Total No. of Questions 9]

P2274

SEAT No. :

[Total No. of Pages :3


[4675]-46
M.C.A. (Management Faculty )
BM-E1:Management Elective
FOUNDATION OF DECISION PROCESSES
(2008 Pattern) (Semester- IV)

Time : 3 Hours]
Instructions to the candidates:
1) Attempt any SEVEN from the following.
2) Use of non-programmable calculators is allowed.
3) Figures to the right indicate full marks.

[Max. Marks :70

Q1) Explain the steady state Markov process with example.

[10]

Q2) A retailer purchases strawberries every morning at Rs.50 a case and sells
them for Rs.80 a case. Any case remaining unsold at the end of the day can be
disposed off next day at a salvage value of Rs.20 per case (thereafter they
have no value). Past sales have ranged from 15 to 18 cases per day. The
following is the record of sales for the past 120 days.
[10]
Cases sold

15

16

17

18

No. of Days

12

24

48

36

Find how many cases the retailer should purchase per day to maximize his
profit.
Q3) Explain the various decision making criteria with illustrations.

[10]

Q4) Explain the various Models of Queuing system.

[10]

Q5) A television repairman finds that the time spent on his jobs has an exponential
distribution with a mean of 30 minutes. If he repairs the sets in the order in
which they came in, and if the arrival of sets follows a Poisson distribution
with an approximate average rate of 10 per 8 hour day, what is the repairmans
expected idle time each day? How many jobs are ahead of the average set just
brought in?
[10]
P.T.O.

Q6) A management is faced with a problem of choosing one of three products for
manufacturing. The potential demand for each product may turn out to be
good, moderate or poor. The probabilities for each of the states of nature
were estimated as follows:
[10]
Nature of Demand
Product

Good

Moderate

Poor

0.70

0.20

0.10

0.50

0.30

0.20

0.40

0.50

0.10

The estimated profit or loss in Rs. Under the three states may be taken as:
Product

Good

Moderate

Poor

30000

20000

10000

60000

30000

20000

40000

10000

-15000

Prepare the expected value table and advise the management about the choice
of the product.
Q7) Solve the game whose pay-off matrix is given below:

[10]

Player A

Player B

[4675]-46

B1

B2

B3

B4

A1

A2

A3

A4

Q8) Explain the dominance rules in Game with proper example.

[10]

Q9) A bakery keeps stock of a popular brand of cakes. Previous experience


shows the daily demand pattern for the cakes with associated probabilities as
given below:
[10]
Daily demand
(Units)
Probability

10

20

30

40

50

0.01

0.20

0.15

0.50

0.12

0.02

Use the following sequence of random numbers to estimate demand for next
10 days. Also find average demand per day.
25

39

65

76

12

73

EEE

[4675]-46

89

19

49

Total No. of Questions 6]

SEAT No. :

P2275

[Total No. of Pages :1


[4675]-47
M.C.A. (Mgt)
BME - 1: management Elective
INFORMATION SYSTEM AUDIT AND GOVERNANCE
(2008 Pattern) (Semester- IV)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 and Q.6 are compulsory.
2) Solve any three form Q.2 to Q.5.
3) Figures to the right side indicate full marks.

[Max. Marks :70

Q1) Pune Municipal Corporation wants to implement online transaction system


for all types of taxes. Explain physical and logical controls for security issues.
As an IT auditor find out the possible threats and input controls for the
system.
[20]
Q2) Explain in detail the risk involved in IT system company.

[10]

Q3) Explain the role of DA and DBA in auditing.

[10]

Q4) Explain BCP architecture in detail.

[10]

Q5) What is E - govenrnance?

[10]

Q6) Short notes (any two):

[20]

a)

Audit standards.

b)

Internet Security.

c)

Prototyping.

d)

IT crimes.

e)

HR policies.

EEE

Total No. of Questions 7]

P2276

SEAT No. :

[Total No. of Pages :1


[4675]-48
M.C.A.
BME-1: Management Elective
COLLABORATIVE MANAGEMENT
(2008 Pattern) (Semester- IV)

Time : 3 Hours]
Instructions to the candidates:
1) Attempt any five questions.
2) Support your answers with relevant examples.
3) Figures to the right indicate full marks.

[Max. Marks :70

Q1) With BCG matrix, company is able to define its development policy.
Elaborate with the help of suitable statement.
[14]
Q2) a)
b)

What are the differences between Merger and acquisition?

[7]

What are the basic problems of Merger and Acquisition in India?

[7]

Q3) Discuss the following issues in strategy implementation:


a)

Structural issues.

b)

Functional issues.

c)

Behavioural issues.

[14]

Q4) Environment of any organization can be considered as the aggregate of all


conditions, events and influences that surround and affect it. Explain. [14]
Q5) What are five forces which affect industry structure according to Porter?[14]
Q6) Leadership style, corporate culture, values and ethics play a crucial role in
effective implementation of strategy. Comment.
[14]
Q7) Write short notes on any three:
a)

Differentiation Strategy.

b)

SWOT Analysis.

c)

Value chain.

d)

Joint Venture.

e)

Core competencies.

[14]

EEE

Total No. of Questions 7]

SEAT No. :

P2277

[Total No. of Pages :1


[4675]-49
M.C.A. (Management Faculty)
BME- 5: Elective - 415: DECISION SUPPORT SYSTEM
(2008 Pattern) (Semester- IV)

Time : 3 Hours]
Instructions to the candidates:
1) Question.1 and 7 are compulsory.
2) Answer any four question from remaining questions.

[Max. Marks :70

Q1) Explain with help of examples how Data Mining can be helpful in identifying
business opportunity to create sustainable competitive advantage.
[10]
Q2) Explain importance of Artificial Intelligence and expert system in DSS. [10]
Q3) Discuss DSS technology levels and tools along with DSS development platform.
[10]
Q4) Discuss the models of ES and DSS integration.

[10]

Q5) Explain the database organization and structures used in DSS.

[10]

Q6) Explain ESS with an example and enumerate ESS characteristics and
capabilities.
[10]
Q7) Write short notes on (any four):
a)

GIS

b)

OLAP

c)

MRP

d)

DSS Implementation

e)

SCM

EEE

[20]

Total No. of Questions :6]

P2278

SEAT No. :
[Total No. of Pages :1

[4675]-50
M.C.A. -II
BME - I :Management Elective
ENTERPRISE RESOURCE PLANNING
(2008 Pattern) (Semester - IV)

Time : 3 Hours]
Instructions to the candidates:
1) Q. No. 1 & 6 are compulsory.
2) Solve any three from Q.2 to 5.
3) Figures to the right indicate full marks.

[Max. Marks :70

Q1) Gajraj packaged foods is a medium sized manufacturing organization.


They have Implemented an ERP to support their expanding operations in
Maharashtra and western India. Now after five years the management feels
that they have not received expected outcomes. Major issues are with SCM&
CRM departments. As an ERP consultant perform the post evaluation study
and prepare a suggestive plan to improve the results.
[20]
Q2) Discuss the critical success factors of ERP implementation in sales &
distribution. QOS management & employees performance evaluation
modules.
[10]
Q3) a)
b)
Q4) a)
b)
Q5) a)
b)

Explain ERP market and factors for selection of ERP package.

[5]

Differentiate between executive support system and executive Information


system.
[5]
Explain the importance of data warehouse for ERP system.

[5]

Explain the importance of component based ERP system.

[5]

Explain the steps for end user training in an organization undergoing


ERP implementation.
[5]
Explain BPR and its significance in the design of ERP system.

Q6) Write short notes on any four of the following:


a) OLAP & OLTP
b) ERP vendors
c) Data mining
d) ERM
e) ERP market

EEE

[5]
[20]

Total No. of Questions : 6]

SEAT No. :

P2308

[Total No. of Pages : 1

[4675] - 501
M.C.A. (Management Faculty)
IT-51: SOFTWARE TESTING AND QUALITY ASSURANCE
(2012 Pattern) (Semester - V)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 & Q.6 are compulsory.
2) Attempt any 3 from the remaining.

[Max. Marks : 70

Q1) Write a detailed test plan for a mobile APP for purchasing item (deal Fast).
The App-deal Fast provides option for purchasing items as well as making
payment through debit as well as credit card. Also write desired test documents,
test cases and test strategies.
[20]
Q2) Explain the concept and need for non-functional testing. Suppport your answer
with suitable examples.
[10]
Q3) a)
b)

Calculate cyclomatic complexity for a code that accepts a positive integer


and displays the square root of the same.
Compare static Vs dynamic testing.
[25 = 10]

Q4) Explain software reliability with respect to reliabililty measures and models.[10]
Q5) What is V and V model? Explain its advantages and disadvantages over other
models.
[10]
Q6) Write short notes on(Any 4).
a) CAST
b) Clean room software engineering.
c) CMM
d) Object oriented testing.
e) Boundary value Analysis.

R R R

[45 = 20]

Total No. of Questions : 7]

P2309

SEAT No. :
[Total No. of Pages : 2

[4675] - 502
M.C.A. (Management Faculty)
IT 52 : SOFTWARE PROJECT MANAGEMENT
(2012 Pattern) (Semester - V)
Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:
1) Question 1 & 7 are compulsory.
2) Solve ANY FOUR Questions from remaining.
3) Wherever necessary, state Assumptions, give examples & draw diagrams.
4) Calculators are allowed.

Q1) a)

Draw network diagram from the given information.


[10]
i) Find Start time, End time, Total float & Critical path.
ii) If activity F is crashed by 2 weeks, draw network diagram & find
out shortest path.
Activity
Predecessors
Duration(Weeks)
A
2
B
3
C
A
4
D
B
2
E
D,C
3
F
B
7
G
B
1
H
E,F
3
I
G
2
b) A project estimated for 251 KLOC has to be developed. for development
project also requires:
[10]
i) Software reliability is High (1.15).
ii) Product complexity is High (1.15).
iii) Analyst capability is high (0.86).
iv) Programming language experiance is low (1.07).
v) Remaining all drivers are treated, as nominal
calculate effort, Development time period, staff size & productivity.
P.T.O.

Q2) Consider project with following functional units


a)

Number of user Inputs = 40

b)

Number of user outputs = 30

c)

Number of user equiries = 25

d)

Number of user files = 04

e)

Number of external Interfaces = 04

[10]

In addition to above, system requires


i)

Significant data communication (4)

ii)

Performance is very critical (5)

iii)

Designed code may be moderately reusable (2)

iv)

System is not designed for multiple installations (0)

Other complexity factors are treated as Average. Compute function point for
project.
Q3) What do you mean by project? Describe PMLC.

[10]

Q4) What is SCM? Explain SCM process in detail.

[10]

Q5) Describe Role of user in project Implementation.

[10]

Q6) What is Risk Management? Explain RMMM plan in detail.

[10]

Q7) Write short notes [ANY TWO]:

[10]

a)

Types of Team.

b)

Payback Models.

c)

Version Control.

d)

Gantt chart.

l l l l
[4675] - 502

Total No. of Questions : 7]

SEAT No. :

P2310

[Total No. of Pages : 1

[4675] - 503
M.C.A.
MANAGEMENT FACULTY
IT - 53 : Emerging Trends in Information Technology
(2012 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 & Questions No. 7 are compulsory.
2) Solve any four from the remaining.
3) Figures to the right indiactes marks.

[Max. Marks : 70

Q1) A deemed university want to implement e-learning model for distance learning
programs. As an IT consultant do comparative analysis of various e-learning
models and suggest suitable e-learning model to university also justify your
suggestion.
[15]
Q2) Define cloud computing? Explain advantages & disadvantages of cloud
computing.
[10]
Q3) Explain different types of social networking sites.
[10]
Q4) Explain various electronic payment methods. How transactions are performed
in E-banking.
[10]
Q5) State and explain enterprise content management process in brief.
[10]
Q6) What is E-commerce? Discuss its advantages and disadvantages.
[10]
Q7) Write A short Note (Any 3):
[15]
a) Features and need of social networking.
b) E-commerce models.
c) Cloud computing models.
d) LMS & LCMS
e) Applications of m-commerce.

l l l l

Total No. of Questions : 7]

P2311

SEAT No. :
[Total No. of Pages : 2

[4675] - 504
M.C.A. (Management Faculty)
IT - 54 : ADVANCED DEVELOPMENT TECHNOLOGY
(2012 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Solve ANY FOUR from remaining.
3) Figures to the right indiactes marks.

[Max. Marks : 70

Q1) Explain Asp. Net architecture in detail.

[10]

Q2) Explain validator controls in detail.

[15]

Q3) Explain the concept of error pages and error logging with the help of suitable
example.
[15]
Q4) Design a from and write code to :

[15]

a)

Populate and display students name in a drop down list.

b)

Select a student from DDL and display its details in under lying text
boxes.

c)

Add a record.

d)

Delete selected record.

e)

Edit selected record.

Name of table: Student Master (stud ID, stud Name, DOB, Per, courseName).
Name of server : MYASPDB (SQL Server)
Q5) a)
b)

Write code and steps to create and consume web service.

[10]

Write a program to implement hit counter of the website by using session


& Global as x file.
[5]
P.T.O.

Q6) Explain use, properties and methods of following controls (ANY THREE):[15]
a)

Image Map Control

b)

Bulletedlist control.

c)

Text Box Control.

d)

Calendar Control.

Q7) Write short notes on following (ANY THREE):


a)

Ajax controls.

b)

Tree view control.

c)

Event Driven Programming.

d)

Any two client side state management technique.

l l l l

[4675] - 504

[15]

Total No. of Questions : 7]

SEAT No. :

P2312

[Total No. of Pages : 1

[4675] - 505
M.C.A. (Management FacultY)
IT - 55 : ADVANCED INTERNET TECHNOLOGY
(2012 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Question 1 & 7 are compulsory.
2) Answer any Four questions from remaining (Q2-Q6).
3) Neat diagrams msut be drawn wherever necessary.
4) Figures to the right side indicate full marks.

Q1) a)
b)

[Max. Marks : 70

Explain pattern matching in PERL with example.


Explain Servlet Life Cycle.

[10]
[5]

Q2) Explain Apache Tomcat and Jasper in brief?

[10]

Q3) What is the difference between Bean Factory & Application Context?

[10]

Q4) Explain Http Servlet Request and Http Servlet Response with suitable examples.
[10]
Q5) Write a PHP code which adds the student personal & educational details in a
database. Also display the student details who have secured first class in their
[10]
10th, 12th and graduation.
Q6) Write a JSP code to generate area wise, product sales report, for medical
shop. Display the expected report in proper format.
[10]
Q7) Write short notes on (Any 3):
a)

Thread safe servlets.

b)

Include ( ) and Require () in PHP.

c)

JSP directives.

d)

Arrays in perl.

e)

Benefits of Spring Framework.

l l l l

[15]

Total No. of Questions : 7]

P2279

SEAT No. :
[Total No. of Pages : 2

[4675] - 51
M.C.A. (Management Faculty)
IT-51: HUMAN COMPUTER INTERFACE
(2008 Pattern) (Semester - V)

Time : 3 Hours]
Instructions to the candidates:
1) Question No.1 is compulsory.
2) Answer any five from remaining.
3) Figure at right hand indicates full marks.

[Max. Marks : 70

Q1) What is the significance of usability in user interface design? Describe various
principles to support usability.
[20]

Q2) Explain design principles of form fill-in dialog boxes of various types. How
layout, environment and direct manipulation programming affects the design
of dialog boxes?
[10]

Q3) a)

State and explain three pillars of interface design process.

[5]

b)

Comments on arguments usually given for and against participatory


design.
[5]

Q4) a)

Discuss important design issues involved in designing a web page. [5]

b)

Compare online help and documentation Vs Printed documentation.[5]

Q5) Discuss about the benefits and problems of using video in experimentation?
[10]

P.T.O.

Q6) Describe the following specification methods.


a)

Transition diagrams.

[5]

b)

State charts.

[5]

Q7) Write short notes on (any two)


a) Acceptance Testing.
b)

Error Message Guidelines.

c)

Expert reviews.

[25 = 10]

R R R

[4675]-51

Total No. of Questions : 7]

SEAT No. :

P2280

[Total No. of Pages : 1

[4675]-52
M.C.A. (Management Faculty)
IT 52 : SOFTWARE IT PROJECT MANAGEMENT
(2008 Pattern) (Semester-V)
Time : 3 Hours]
Instructions to the candidates:
1) Q. No. 1 is compulsory.
2) Solve any five from remaining.

Q1) a)
b)

[Max. Marks : 70

What is Software Quality Control & Software Quality Assurance? Explain


SQA parameters with their definitions.
[10]
What is Function Point Analysis? How is it used to determine cost of
Project?
[10]

Q2) Describe various Software Project Time Estimations. Describe tools with
suitable illustrations.
[10]
Q3) Describe in brief Software Risk & Explain how to manage them.

[10]

Q4) Explain various practices & controls necessary in HR Management.

[10]

Q5) a)
b)

Describe concept of User Accepting Testing.


Describe concept of Software Project Management.

[5]
[5]

Q6) Explain in detail COCOMO Model with its advantages.

[10]

Q7) Write short notes (Any Two):


a) Risk Management.
b) Soft Acquisition Procedure.
c) Major Task of HRM in an IT organization.
d) Grantt Chart.

[10]

[4675]-52

Total No. of Questions : 7]

SEAT No. :

P2281

[Total No. of Pages : 1

[4675] - 53
M.C.A. (Management Faculty)
IT - 53 : EMERGING TRENDS IN INFORMATION TECHNOLOGY
(2008 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 & Questions No. 7 are compulsory.
2) Solve any four from Questions from the remaining.

[Max. Marks : 70

Q1) A manufacturing industry wants to implement Biometric Technologies in the


organization for various departments such as HR, Inventory, Production etc.
Suggest suitable Biometric techniques and explain in detail the applicability of
each technique for these departments.
[15]
Q2) What is e-Governance? Explain various facilities provided through it.

[10]

Q3) Explain embedded systems with respect to their features, components and
applications.
[10]
Q4) Discuss various e-learning models in detail.

[10]

Q5) Explain the terms ATM, Smart card and ECS.

[10]

Q6) Explain standardization process of GIS development.

[10]

Q7) Write short Note (Any 3):

[15]

a)

E-commerce Models.

b)

BCP

c)

Supplier Chain Management.

d)

Knowledge Management System Architecture.

l l l l

Total No. of Questions : 7]

SEAT No. :

P2282

[Total No. of Pages : 1

[4675] - 54
M.C.A.
IT - 55 : ADVANCED INTERNET TECHNOLOGY
(2008 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 & Questions No. 7 are compulsory.
2) Attempt any four questions from remaining.
3) Right side indicates marks.

[Max. Marks : 70

Q1) Define E - commerce. How E-commerce is different than traditional commerce?


Explain with example.
[15]
Q2) Write a servlet program to accept online registration details of candidates for
appearing MH-CET Examination. Assume suitable table structure.
[10]
Q3) Write a PERL program to accept a tile name from user. Display the content of
a file in proper format.
[10]
Q4) Write a PHP code to accept & Insert students-details from student. After
successful Insertion, Display students details in proper format. Assume suitable
table structure.
[10]
Q5) Explain with proper example HTTP Request & response.
[10]
Q6) Explain CGI Architecture in detail.
[10]
Q7) Write short note on any three:
[15]
a) Life cycle of servlet.
b) Pattern matching in PERL.
c) Arrays in PHP.
d) ISP standard Actions.
e) Error Handling in PERL.

l l l l

Total No. of Questions : 6]

SEAT No. :

P2283

[Total No. of Pages : 1

[4675] - 55
M.C.A. (Management Faculty)
ITE - 1 : Elective : CYBER LAW AND IT SECURITY
(2008 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Que. 1and Que. 6 are compulsory.
2) Solve any three from remaining questions.

[Max. Marks : 70

Q1) a)

Explain cybercrime with its impact on human and computer system.[10]

b)

Comment on Social networking is useful or useless as cyber security


perspective.
[10]

Q2) Describe the Digital Signature with advantage and disadvantage.

[10]

Q3) What are natural threats, how to overcome from natural threats?

[10]

Q4) Explain encryption with its type.

[10]

Q5) Explain use of IT Act 2000 in E-commerce.

[10]

Q6) Write short note on following: [ANY 4]

[20]

a)

Type of hackers.

b)

Network security.

c)

Certifying authorities.

d)

Ethics for using Computer system.

e)

Cybersquatting and reverse hijacking.

l l l l

Total No. of Questions : 7]

SEAT No. :

P2284

[Total No. of Pages : 1

[4675] - 56
M.C.A. (Management Faculty)
ITE - 1 : PROGRAMMING LANGUAGES PARADIGM (Elective)
(2008 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Question No.7 is compulsory.
2) Answer any five questions from the remaining.
3) Neat diagrams must be drawn wherever necessary.
4) Figures to the right side indicate full marks.

[Max. Marks : 70

Q1) Explain in detail attributes of good Programming Language.

[10]

Q2) Explain Binding and Binding times of Language.

[10]

Q3) Explain Implicit & Explicit sequence control.

[10]

Q4) What is Parameter Transmission? Explain how Actual and Formal Parameters
transmission takes place.
[10]
Q5) Explain General Syntactic Criteria in detail.

[10]

Q6) Explain Structure of compiler with suitable block diagram.

[10]

Q7) Write short notes (any 4)

[4 5 = 20]

a)

Firmware computer.

b)

Composite data types.

c)

Static and dynamic scope structure.

d)

Static storage management.

e)

Recursive sub-program.

l l l l

Total No. of Questions : 7]

SEAT No. :

P2285

[Total No. of Pages : 1

[4675] - 57
M.C.A. (Management Faculty)
ITE - 1 : ADVANCED UNIX (Elective)
(2008/2005 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Question 1 & 7 are compulsory.
2) Solve any Four from remaining.
3) Assume suitable data wherever necessary.
4) Figure at right hand indicates full marks.

[Max. Marks : 70

Q1) Explain the following system calls :


[5 2 = 10]
a) read ( )
b) fork ( )
c) unlink ( )
d) write ( )
e) chmod ( )
Q2) Describe the use of File and Record locking. And explain how to implement
them.
[10]
Q3) What is a Semaphore? Explain how you control operation on a semaphore.[10]
Q4) Explain pipes. Write a program to create a pipe from parent to child process
and send data through the pipe.
[10]
Q5) What is Race condition? How can it be avoided?
[10]
Q6) Explain file sharing between two processes and the concept of file descriptor
duplication.
[10]
Q7) Write short notes on (any 4)
[4 5 = 20]
a) Orphan process.
b) Real UID vs Effective UID.
c) File descriptor.
d) File types.
e) Buffering.

l l l l

Total No. of Questions : 7]

SEAT No. :

P2286

[Total No. of Pages : 1

[4675] - 58
M.C.A. (Management Faculty)
ITE - 1 : MOBILE WIRELESS COMPUTING (Elective)
(2008 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Question No.1 & 7 are compulsory.
2) Attempt any three from the remaining questions.

Q1) a)

b)

[Max. Marks : 70

Define the following terms


i)

GSM

ii) UMTS

iv)

Frame Error Rate

[10]
iii) Mobile Management Function
v) TCP issue over wireless

Explain the feature of wireless network. What are the advantage and
disadvantage of wireless networking?
[10]

Q2) Explain the security layer of WAP. What the problem does the WAP security
layer causes?
[10]
Q3) Compare DSSS & OFDM.

[10]

Q4) Explain GSM framing & logical channel.

[10]

Q5) List and explain any four function of base station controller used in GSM.[10]
Q6) What is Handoff? How do you perform Handoff during roaming?

[10]

Q7) Write short notes (any 4)

[20]

a)

SIM

b)

CDMA

c)

Adhoc-network

d)

RTC-CTC Protocol

e)

Distributed computation.

l l l l

Total No. of Questions : 7]

SEAT No. :

P2287

[Total No. of Pages : 1

[4675] - 59
M.C.A. (Management Faculty)
ITE - 5 : Elective : DISTRIBUTED DATABASE MGT. SYSTEM
(2008 Pattern) (Semester - V)
Time : 3 Hours]
Instructions to the candidates:
1) Q.7 is compulsory. Solve any 5 from remaining.
2) Draw suitable diagram where needed.
3) Give suitable examples if required.
4) Wherever necessary state assumptions.
5) Right side indicates marks.

Q1) Explain distributed query optimization algorithm in detail.

[Max. Marks : 70

[10]

Q2) Explain characterization of query processors in distributed databases. [10]


Q3) Explain commit protocols in detail.

[10]

Q4) What are the different types of fragmentation. Explain with suitable example.
[10]
Q5) Explain the various Reliability issues in distributed databases.

[10]

Q6) Explain the various deadlock handling mechanism used in distributed databases.
[10]
Q7) Write short notes (any 4)

[20]

a)

Mobile Database System.

b)

Homogeneous and Heterogeneous Databases.

c)

Object Base Models.

d)

Directory systems.

e)

Availability in DDBS.

l l l l

Total No. of Questions : 7]

SEAT No. :

P3840

[Total No. of Pages : 1

[4875]-11
M.C.A. (Mgmt. Faculty)
IT11 : COMPUTER ORGANIZATION & ARCHITECTURE (101)
(2008 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Q. 1 and Q.7 are compulsory.

[Max. Marks : 70

2)

Solve any Four questions from the remaining.

3)

Draw neat diagrams whenever necessary.

Q1) a)
b)

Compare 80286 with 80486 processor architecture with neat diagram.[10]


Explain parallel processing in detail.
[5]

Q2) Convert the following:


a) (101110)2 = (?)8
b) (952)10 = (?)8
c) (11010011)2 = (?)16
d) (ABC)16 = (?)2
e) (127.54)8 = (?)10

[5 2 = 10]

Q3) What is Demultiplexer? Explain D latch working in detail.

[4 + 6 = 10]

Q4) Explain processor bus characteristics in detail.

[10]

Q5) Explain:
a) Full adder
b) Interrupts

[10]

Q6) Explain DMA working in detail with neat diagram.

[10]

Q7) Write short notes: (Any three)


a) Software types.
b)

Parallel processing.

c)

Pipelining Hazards.

d)

Cache Memory.

[3 5 = 15]

Total No. of Questions : 7]

P3841

SEAT No. :
[Total No. of Pages : 3

[4875]-12
M.C.A. (Mgt. Faculty)
IT - 12 - 102 : C- PROGRAMMING
(2008 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Question one is compulsory.
2)

Solve any five questions from 2 to 7.

3)

Assume suitable data whenever necessary.

4)

Figure write hand indicates full marks.

5)

Answer all parts of a question at one place.

6)

Answer each part concisely.

[Max. Marks : 70

Q1) Explain and find output of the following programs.


a) #include<stdio.h>
int main(){
int a[3] [4] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
printf(''%u, %u, %u\n'', a[0]+1, *(a[0]+1), *(*(a+0)+1));
return 0;
}
b) #include>stdio.h>
int main(){
int arr[3] = {2, 3, 4};
char *p;
p = arr;
p = (char*)((int*)(p));
printf(''%d, '', *p);
p = (int*)(p+1);
printf(''%d'', *p);
return 0;
}

[20]

P.T.O.

c)

#include<stdio.h>
int main(){
char *str;
str = ''%d\n'';
str++;
str++;
printf(str-2, 300);
return 0;
}

d)

#include<stdio.h>
int main(){
char str[] = ''peace'';
char *s = str;
printf(''%s\n'', s++ +3);
return 0;
}

e)

#include<stdio.h>
int main(){
int arr[] = {12, 13, 14, 15, 16};
printf(''%d, %d, %d\n'', sizeof(arr), sizeof(*arr), sizeof(arr[0]));
return 0;
}

Q2) a)

Write a recursive function to determine if an input number is Prime or


not. To test your function also writes main function.
[5]

b)

Write a C program to find out the sum of series n! (n-1)! ....2!1!.[5]

Q3) a)

Write a C program to display miner diagonal elements of matrix.

[4875]-12

[5]

b)

Write a program to generate a following numbers triangle : (Where user


entered number through keyboard, for example if num=5)
[5]
A

E
E
E

Q4) Write a C program to copy alternate word from one file to another file. [10]
Q5) Write a C program to create employee structure having field EmpId, name,
Basic Salary, House Rent Allowance, Dearness Allowance, Medical Allowance,
Provident Fund, Insurance, Gross Salary, and Net Salary. Accept n records
from user and calculate the gross salary and net salary and display all
employees. (Note consider HRA, DA & MA in percent. Provident fund and
Insurance must be consider in deduction).
[10]
Q6) a)
b)

Write a graphics program display concentric triangles.


[5]
Write a C program which prints initial of any name. (e.g. Enter Name:
Robert De Niro output is RDN.
[5]

Q7) Write short notes on (any two):


a) Difference between structure and union.
b) Function Pointers in C.
c) Bit field operator.

E
[4875]-12

E
3

[10]

Total No. of Questions : 6]

SEAT No. :

P3842

[Total No. of Pages : 1

[4875]-13
M.C.A.(Management Faculty)
BM-11-103:PRINCIPLES AND PRACTICES OF MANAGEMENT
AND ORGANIZATIONAL BEHAVIOR
(2008 Pattern ) (Semester - I)
Time : 3 Hours]
Instructions to the candidates:
1) Question No 1. is compulsory.
2) Attempt any 3 from the remaining.
3) Figures to the right indicate full marks.

Q1) a)
b)

[Max. Marks : 70

What is management ? How management can be looked upon as science


as well as Art ?
[15]
An effective manager needs to be an effective leader as well !! Do you
agree ? Discuss with reference to the Qualities of successful leader.[10]

Q2) What is delegation of authority ? what are the advantages and disadvantages
of delegation ?
[15]
Q3) Making right decision at right time is most significant for organizational
effectiveness: discuss.
[15]
Q4) What is motivation. discuss the importance of motivation for the success of
organization. Discuss the contribution of Mc Gregor in the motivational theory.
[15]
Q5) What is the contribution of theory of scientific management to the growth of
industrialization in the world. where did this theory fail to attract the modern
management thinkers ?
[15]
Q6) Short Notes (Any Three)
a) Transactional analysis.
b) Span of control.
c) Tall and flat organization.
d) Line and staff organization.
e) Centralisation Vs De centralization.

[15]

Total No. of Questions : 7]

P3843

SEAT No. :
[Total No. of Pages : 2

[4875]-14
M.C.A. (Management Faculty)
IT - 13 : OPERATING SYSTEM CONCEPTS (104)
(2008 Pattern) (Semester - I)

Time : 3 Hours]
Instructions to the candidates:
1) Question 1 & 7 are compulsory.
2)

Answer any Four questions from remaining (Q.2-Q.6).

3)

Neat diagrams must be drawn wherever necessary.

4)

Figures to the right side indicate full marks.

[Max. Marks : 70

Q1) What is distributed operating system? Write advantages and disadvantages of


DOS.
[10]
Q2) Explain preemptive and non-preemptive scheduling. Explain in detail example
of each type of Scheduling.
[10]
Q3) a)
b)

What is system call? Give different system calls in operating system.[5]


What is deadlock? Explain the necessary and sufficient conditions for
the deadlock.
[5]

Q4) Consider the following snapshot of system has 5 processes A through E and
four resources type R1 through R4. Total available resources are (R1, R2,
R3, R4) = (6, 3, 4, 2).
Process
Allocation
Max
R1
R2
R3
R4
R1
R2
R3
R4
A
3
0
1
1
4
1
1
1
B
0
1
0
0
0
2
1
2
C
1
1
1
0
4
2
1
0
D
1
1
0
1
1
1
1
1
E
0
0
0
0
2
1
1
0
Answer the following question using bankers algorithm
a) What are the contents of matrix need.
[5]
b) Is the system in an safe states.
[5]
P.T.O.

Q5) a)
b)

Explain the concept of virtual memory.


Consider the following segment table.
Segment
Base
Length
0
363
500
1
1272
20
2
1675
1500
3
986
240
4
211
130
What are the physical addresses for the following logical addresses?
i)
(0,425) ii) (2,500) iii) (1,150)
iv)
(3,285)
v) (4,125)

[10]

Q6) Explain the different directory structures and their implementations.

[10]

Q7) Write short notes on (any two):


a) Demand Paging.
b) Thrashing.
c) Process operations.
d) Communication in client-server.
e) Interrupts.

[20]

[4875]-14

Total No. of Questions : 04]

P3844

SEAT No. :
[Total No. of Pages : 2

[4875] -15
M.C.A.(Management Faculty)
MT-11-106: DISCRETE MATHEMATICS
( 2008 Pattern) (Semester-I)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Attempt any two questions from Q. No. 2,3 and 4.
3) Figures to the right side indicate full marks.
4) Use of Scientific Calculator is allowed.

Q1) a)
b)

Show that (Q ( P Q )) P is tautology.

[Max. Marks : 70

[5]

c)

Given A={1,2,3,4,5} and B= {2,4,5}. Let R be the relation from A B


defined by x is greater than y. Write relation R, its matrix and draw its
graph.
[5]
Show that the sum of degrees of all vertices in a graph is always even.[5]

d)

Prove that: (x)( P ( x) Q( x)) (x) P ( x) (x)Q ( x)

e)
f)

Define one-to-one, onto, Into, functions with example.


[5]
Determine whether the operation* defined on the following sets is the
binary operation or not.
[5]
i) A = I+ where a * b = ab.
ii) A = I+ where a* b=min (a, b)

Q2) a)

Show that the following set of premises is inconsistent.

[5]

[5]

P Q , P R , Q R , P

b)

c)

Use Warshalls algorithm to find the transitive closure of the relation [7]
R= {< 1,1 >, < 2,1 > , < 2,3 >, < 3,4 >, < 3,5 >, < 4,1 >, < 5,2 >,}
on A= {1,2,3,4,5}
i) Determine the number of edges in a graph with 6 nodes, 2of degree 4
and 4 of degree 2. Draw two such graphs.
[4]
ii) Let A = {1,2,3,4,5,6} such that f={(1,2),(2,3),(2,4),(3,4),(5,4)}
g={(2,5),(3,1),(4,6),(6,5)}.
[4]
Then find i) fog ii) gof iii) go(fog)
P.T.O.

Q3) a)
b)

Show that: (x) M ( x) logically follows from the premises


( x)( H ( x) M ( x)) and (x) H ( x)

[5]

Write the code words generated by H, where

[7]

1 1 1 1 1 0 0
H = 0 1 0 1 0 1 0

1 1 1 0 0 0 1

c)

What is the minimum weight of the non zero code word in above code
words?
i) Count the number of vertices, number of edges and number of
region of each of the following planar graphs:
[4]

ii)

Q4) a)

Show that the set of integers, positive, negative and zero is


denumerable.
[4]

Let A=(1,2,3,4,5,6,7} and R={<x, y> | xy is divisible by 3}. Show that


R is an equivalence relation. Draw the graph of R.
[5]

b)

Obtain the PCNF of ( P R ) ( P Q )

[7]

c)

i)

Define Monoid, Group, Permutation Group.

[4]

ii)

Show that the maximum number edges in a simple graph with n


vertices is n(n-1)/2
[4]

ggg
[4875]-15

Total No. of Questions : 8]

P3845

[Total No. of Pages : 2

[4875]-21
M.C.A. (Management)
IT - 21 - 201 : DATA STRUCTURES USING C
(2008 Pattern) (Semester - II)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 and 8 are compulsory.
2)

Solve any four from Q.2 to Q.7.

3)

Figures to right indicate full marks.

4)

Assume suitable data wherever necessary.

5)

Draw suitable diagrams wherever necessary.

Q1) a)

SEAT No. :

[Max. Marks : 70

Convert the following infix expression to postfix. Show the contents of


stack at each step in tabular form.
[10]
((A + B) / C) * (D + (E F) / 9).

b)

Write a C code for linked list implementation of stack with PUSH, POP
and DISPLAY functions.
[10]

Q2) Write a program for addition of two polynomial expressions using array.[10]
Q3) Construct AVL Tree with the following PASCAL, FORTRAN, C, COBOL,
BASIC, PROLOG.
[10]
Q4) Write code for the following:

[10]

a)

Function for the Inorder Traversal of a Binary Search Tree of Integers.

b)

Function for the preorder Traversal of a Binary search Tree of Integers.

Q5) Evaluate the following prefix form:

[10]

/ * A + B C D G
Where A = 2, B = 1, C = 3, D = 3, G = 1.
P.T.O.

Q6) Write an algorithm and program to insert and delete an element from a
Queue.
[10]
Q7) Generate BFS, DFS for node A adjacency matrix adjacency list for following
graph.
[10]

Q8) Write short note on (Any two):


a)

Sparse Matrix.

b)

Expression Tree.

c)

DEQUEUE.

[4875]-21

[2 5 = 10]

Total No. of Questions :7]

P3846

SEAT No. :
[Total No. of Pages : 2

[4875]-22
M.C.A. (Management Faculty)
IT-22:202:DATABASE MANAGEMENT SYSTEM
(2008Pattern ) (Semester - II)

Time : 3 Hours]
Instructions to the candidates:
1) Question No.1 is compulsory.
2) Solve any five questions from remaining.
3) State assumptions wherever necessary.

[Max. Marks :70

Q1) Indian venue management company is going to develop their new online
booking system for entertainment events such as social gathering and concerts.
The process of the system involves events based on customers enquiry for
the name of the event type of event, venue and date of the event. The event
details providing information about the availability of tickets and price
according to the category. Booking of the tickets for the event can be done
online or offline. The administrator provides the venue list, rates and availability
of venue to the customers for the event registration. Administrator can add a
new venue. Customer can cancel the venue, based on the cancellation of the
venue the charges will be deducted.
Normalize the case upto 3NF and draw an E R diagram for the same.

[20]

Q2) What are constraints? Explain different types of constraints with proper
examples.
[10]

Q3) Differentiate between NDM and HDM.

[10]

Q4) Explain with proper examples views and queries in SqL.

[10]

Q5) What is the need for DBMS? Give its characteristics.

[10]
P.T.O.

Q6) Explain the different locking techniques in detail.

[10]

Q7) Write short notes on (any two)

[10]

a)

Data base Recovery.

b)

Knowledge based Systems.

c)

Data models.

d)

Generalization and aggregation.

[4875]-22

Total No. of Questions :6]

P3847

SEAT No. :

[4875]-23

[Total No. of Pages :2

M.C.A. (Management Faculty)


IT-23: SOFTWARE ENGINEERING (203)
(2008 Pattern) (Semester - II)
Time : 3 Hours]

[Max. Marks :70

Instructions to the candidates:


1)

Q.1 and 6 are compulsory.

2)

Solve any 3 from remaining questions.

Q1) A Library Management System (LMS) needs to be developed to manage


library efficiently. The main objective of the LMS is to provide timely
information to the users (members). The system should keep track of the
following.
[20]
a)

Issuing / returning of books,

b)

Purchase and recording of the books in accession register,

c)

Collection of late return fine. As a consultant prepare SRS for the above
system.

Q2) Draw a suitable data entry screen to enter daily attendance of MCA class for
different subjects with proper GUI based validation controls.
[10]
Q3) Compare agile process with the conventional one.

[10]

Q4) The purchase order system functions as follows: Purchase department receives
the requisition from stores department. It makes the enquiries to various
suppliers and receives quotation from them. After scrutinizing all the quotations,
the purchase order (PO) is generated against the best quotation. The PO is
sent to the supplier, who sends the invoice along with the material. Draw ER
diagram.
[10]
P.T.O.

Q5) Discuss similarities and differences between RAD and JAD models.
Q6) Write short note on any four:

[4 x 5 =20]

a)

Decision Tree.

b)

Physical and logical DFD.

c)

Software maintenance.

d)

Reverse Engineering.

e)

Case Tools.

EEE

[4875]-23

[10]

Total No. of Questions : 8]

P3848

SEAT No :

[4875]-24
M.C.A.
(Management Faculty)
BM-21:204: SOFT SKILLS
(2008 Pattern) (Semester -II)

Time : 3 Hours]
Instructions to the candidates:
1)

Q. 1 and Q. 8 are compulsory.

2)

Solve any 4 questions from Q. 2 to Q. 7

3)

Figures to the right indicate full marks.

[Total No. of Pages : 2

[Max. Marks : 70

Q1) Define communication. Explain any four principles of communication. [15]


Q2) What are the steps a report writer should identify to write an effective report?
[10]
Q3) Define kinesics. How does kinesics help in comprehension of a message?
[10]
Q4) Explain Dos and Donts of Group Discussion in detail.

[10]

Q5) Listen to what is meant and what is said. Discuss.

[10]

Q6) You are Mr. Rahul Sharma, collection manager at ABC Ltd., Lucknow, Write
a complaint letter to your client, Mr. Javeri of xyz ltd. Delhi, for paying you a
sum of Rs. 1,12,500/- you have already sent him two reminders. This is the
final letter.
[10]

P.T.O.

Q7) What is the importance of job application? Discuss the qualities of a well
drafted written application.
[10]
Q8) Write short notes (any three):
a)

Agenda.

b)

Tele-conferencing.

c)

Time management.

d)

Presentation Techniques.

e)

Business Etnics.

[15]

abab

[4875]-24

-2-

Total No. of Questions : 6]

P3849

SEAT No. :
[Total No. of Pages : 3

[4875] -25
M.C.A. (Management Faculty)
MT-21:205: PROBABILITY & COMBINATORICS
( 2008 Pattern) (Semester-II)

Time : 3 Hours]
[Max. Marks : 70
Instructions to the candidates:
1) Question No. 1 & Question No. 4 are compulsory.
2) Solve any one from Question Nos. 2 and 3. And solve any one from Question Nos.
5 and 6.
3) Use of statistical table and non programmable calculator is allowed.
4) Figures to the right indicate full marks.

Q1) a)

State generalized Inclusion and Exclusion and derive formula


derangement.

[5]

b)

How many words, with or without meaning, can be formed out of the
letters of the word CORRESPONDENCE? How many if two Rs
should be together?
[5]

c)

How many integers between 1 to 1000 (both inclusive) are divisible by


either 3 or 5 or 7?
[5]

d)

Find homogeneous solution of the following Recurrence relation:


an-9an-1+ 20an-2 = 2.(5)n

Q2) a)

b)

[5]

where a0 = 1 and a1 = 4

Using combinatorial argument prove the following binomial identities. [8]


i)

n n
=

r n r

ii)

n n n + 1
+
=

r r 1 r

Find the number of integer valued solutions of the following equation. [7]
x1+x2+x3 = 35 x1,x2,x3 < 21
P.T.O.

Q3) a)

Determine the Discrete Numeric Function corresponding to generating


function.
[8]
2 + 3z 6 z 2
.
1 2z

b)

Q4) a)

b)

State multinomial theorem and hence find the coefficient of x2y4z8 in the
expansion of (2x2-y-3z2)9. Also find number of terms in the expansion. [7]
Define the following terms.

[5]

i)

Joint P.M.F.

ii)

Marginal distribution.

iii)

Moment Generating function.

iv)

Conditional density function.

v)

Discrete Random Variable.

The following is the cumulative distribution function of a discrete random


variable X
[5]
X

-3

-1

F(x)

0.1 0.3 0.45 0.5 0.75 0.9 0.95 1.0

Find i) probability distribution of X

ii) P (x is even)

iii) P(x = -3 | x<0)


c)

For the joint probability distribution of two random variables X & Y


given below
[5]
Y
X
0

1
0

2
0

3
1/32

4
2/32

5
2/32

6
3/32

1/16

1/16

1/8

1/8

1/8

1/8

1/32

1/32

1/64

1/64

1/32

Find i) Marginal distributions of X and Y,


ii)
d)

P(X<1,Y=2)

iii)

P(X<1)

iv) P(Y<3)

State and prove memory-less property for geometric distribution.

[4875]-25

[5]

Q5) a)

Find MGF of Uniform distribution and hence deduce its Expectation


and Variance.
[8]

b)

Suppose that the life in hrs of a certain part of radio tube is a continuous
random variable with p.d.f. given by
[7]
100
2 , for x>100
f(x) = x
What is the probability that all of three such tubes in
0, otherwise

a given radio set will have to be replaced during the first 150 hours of
operation.

Q6) a)

If X and Y are two random variables having joint density function. [8]
6 x 2 y , 0 < x < 1, 0 < y < 1
f(x,y) =
0 , elsewhere

Find p(0<x<3/4, 1/3<y<2), P(x>y) and P(x<1 | y<2)


b)

Wages of workers in a factory are normally distributed with average


wage Rs. 4000/- and standard deviation 400. Find the highest wage of
lowest paid 10% workers and lowest wage of highest paid 15% workers. [7]

zzz

[4875]-25

Total No. of Questions : 8]

P3850

SEAT No. :
[Total No. of Pages : 2

[4875]-31
M.C.A. - II (Management faculty)
IT -31- 301 : WEB TECHNOLOGIES
(2008Pattern) (Semester - III)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 and Q.8 are compulsory.
2)

[Max. Marks : 70

Solve any 5 from remaining.

Q1) What is Global.asa?Explain with example?

[10]

Q2) Explain Client and Server side image mapping with example.

[10]

Q3) Explain the following CSS properties with example.

[10]

i)

Font

ii)

Border

iii) List
iv) Margin
v)

Text

Q4) Write ASP application to accept student details through Student Registration
Form.(Assume suitable table structure.)
[10]

Q5) Explain Document Object Model in Java Script with Diagram and Examples.
[10]
Q6) Write VB Script code for designing and validating Email account registration
form.Validate any five fields.(Assume suitable registration form structure.)[10]
P.T.O.

Q7) Explain DTD with example.

[10]

Q8) Write short notes on (any two):

[10]

a)

String Object in Java Script.

b)

Request Object in ASP.

c)

Error Handling in VBScript.

aaa

[4875]-31

Total No. of Questions : 7]

P3851

SEAT No :

[4875]-32

[Total No. of Pages : 2

M.C.A. (Management Faculty)


IT - 32: DATACOMMUNICATIONAND COMPUTER NETWORKS (302)

(2008 Pattern) (Semester-III)


Time : 3 Hours]
Instructions to the candidates:
1) Q.1 and Q.7 are compulsory.
2)

Attempt any Three from remaining.

3)

Neat diagrams must be drawn wherever necessary.

4)

Figures to the right side indicate full marks.

Q1) a)

b)

[Max. Marks : 70

Justify with True of False (not more than 60 words).

[10]

i)

X.25 standard covers five layers of OSI model.

ii)

End-to-end connectivity is provided by Session Layer of OSI


model.

iii)

A protocol used to bind IP address to a low-level physical Hardware


address is ARP.

iv)

The address allocation schemes used by DHCP are- Manual,


Automatic and Dynamic.

v)

Firewall operates are in two filtering modes: Deny all but explicit or
Pass all but explicit.

What are the different HTTP Response message status codes? Give the
description of each.
[10]

Q2) Define the subnet mask to be used in Class-B addressing to support 30 subnets
and also find the most hosts possible in each subnet.
[10]

Q3) Explain with example the functions of SMTP and POP. What are the
advantages of IMAP?
[10]
P.T.O.

Q4) What is MIME? Explain its purpose and format in detail.

[10]

Q5) What is Security? Explain different types of Security Threats.

[10]

Q6) Define Topology. Explain operation of BUS, RING and STAR topologies
with their advantages and disadvantages.
[10]

Q7) Write short notes (any Four):


a)

VPN.

b)

SNMP.

c)

Proxy Server.

d)

DHCP.

e)

Wireless LAN.

f)

ISDN.

[20]

abab

[4875]-32

Total No. of Questions : 6]

P3852

SEAT No. :
[Total No. of Pages : 3

[4875]-33
M.C.A. (Management Faculty)
IT - 33 - 303 : OBJECT ORIENTED PROGRAMMING Using C++
(2008 Pattern) (Semester - III)

Time : 3 Hours ]
Instructions to the candidates:
1) Q1 is compulsory.
2) Solve any four from remaining.

Q1) Find output for the following.


a) # include <iostream.h>
void main ( )
{
int a = 10;
while (1)
{
switch (a)
{
case 10: cout<<a++;
case 11:cout<<a--;
case 12:cout<<a++;
}
}
}
b) Class base {
public;
int bval;
base ( ) {bval = 0;}
};
Class deri: public base{
public:
int dval;
deri ( ) {dval = 1;}
};
void SomeFunc (base *arr, int size){
for (int i = 0;i < size; i++, arr++)
cout<< arr bval;
cout<< endl;
}

[Max. Marks : 70

[10]

P.T.O.

void main ( ) {
base BaseArr [5];
SomeFunc (BaseArr, 5);
deri DeriArr [5];
SomeFunc (DeriArr, 5);
}
c)

d)

Class base{
public:
void baseFun( ) {
cout<< from base <<endl;
}
};
class deri : public base {
public:
void baseFun ( ) {
cout<< from derived <<endl;
}
};
void SomeFunc (base * baseObj) {
baseObj baseFun ( ) ;
}
void main ( ) {
base baseObject;
SomeFunc (& baseObject);
deri deriObject;
SomeFunc( & deriObject);
}

Class Sample
{
public:
int * ptr ;
Sample ( int i) {
ptr = new int (i);
}
 Sample ( ) {
delete ptr;
}
void PrintVal ( ) {
cout<< The value is << * ptr;
}
[4875]-33
2

};
void SomeFunc (Sample x) {
cout << Say iam in SomeFunc <<endl;
}
int main ( ) {
Sample S1 = 10;
SomeFunc (S1);
S1. PrintVal ( );
}
Q2) a)

Write a function template to calculate perimeter and area of rectangle. [8]

b)

Write short note on inheritance with one example depicting inheritance. [7]

Q3) a)
b)

Q4) a)
b)

Q5) a)
b)

Write a program to check if the number is a perfect number.

[7]

Write about operator overloading and write a program to overload +


and *operators.
[8]

Explain with example why virtual Base class is required.

[7]

Explain any five manipulators with suitable example.

[8]

Write a program to accept a string and throw All Vowels Exception if


the string contains all vowels.
[10]
Write short note on RTTI.

[5]

Q6) a)

Define Inheritance. Explain types of inheritance with examples of each


type.
[7]

b)

Define logical error, run-time error & syntax error with an example. [8]

zzz
[4875]-33

Total No. of Questions :7]

P3853

SEAT No. :

[4875]-34

[Total No. of Pages :1

M.C.A. (Management Faculty)


IT-34-304: ADVANCED DATABASE MANAGEMENT SYSTEM
(2008 Pattern) (Semester - III)
Time : 3 Hours]

[Max. Marks :70

Instructions to the candidates:


1)

Q.No. 7 is compulsory.

2)

Solve any five questions from 1 to 6.

3)

Figures to the right indicate full marks.

Q1) Define I/O parallelism? What do you mean by Inter-Operations? Explain with
example.
[10]
Q2) Compare RDBMS, OODBMS and ORDBMS.

[10]

Q3) Explain Concurrency control & recovery in distributed databases.

[10]

Q4) Explain Operation on cube? Explain Dimensional data Modeling.

[10]

Q5) Explain Bayesian Classification.

[10]

Q6) What is XML? Explain various features of XML also explain the difference
between XML & HTML?
[10]
Q7) Write short note on (any four):
a)

Web Architecture.

b)

Data preprocessing.

c)

KBS.

d)

SOAP.

e)

Multimedia databases.

[20]

EEE

Total No. of Questions : 7]

P3854

SEAT No :

[4875] - 35
M.C.A. (Management Faculty)

[Total No. of Pages : 1

(305) BM - 31: MANAGEMENT SUPPORT SYSTEM AND IS SECURITY

(2008 Pattern) (Semester -III)


Time : 3 Hours]
Instructions to the candidates:
1) Q. No. 1 and 7 are compulsory.
2)

Attempt any four from Q. No.2 to Q. No.6.

3)

Figures to the right indicate full marks.

[Max. Marks : 70

Q1) Define the role of feedback control in the management group Decision making
process with dynamic approach.
[10]
Q2) Explain in detail the structure of MIS based on management activities and
Functions.
[10]
Q3) Explain characteristics and limitations of human information processing
performance.
[10]
Q4) Explain the information requirement for Functional area with respect to
production management.
[10]
Q5) Define operation research and explain various operation research techniques.
[10]
Q6) Define expert system. Differentiate conventional and expert system.
Q7) Write short Note on (Any Four):
a)

Control by exception.

b)

Value of information.

c)

Static Vs. Dynamic model.

d)

Types of information.

e)

Simulation Technique.

f)

Control Audit of information security.

abab

[10]

[45=20]

Total No. of Questions : 8]

P3855

SEAT No. :
[Total No. of Pages : 1

[4875]-41
M.C.A. (Management Faculty)
IT - 41 - 401 : JAVA PROGRAMMING
(2008 Pattern) (Semester - IV)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 is compulsory.
2)

[Max. Marks : 70

Solve any six from Q.2 to Q.8.

Q1) Answer the following:


a) Explain dynamic dispatch method.
b) What is finally keyword?
c) What is runtime polymorphism?
d) Explain Final class.
e) What is Inet Address Class?

[10]

Q2) Write a JDBC program to apply for passport registration. (assume suitable
data).
[10]
Q3) Write client-server socket echo clients request program.

[10]

Q4) Write an applet to display scrolling image in an applet window.

[10]

Q5) Explain Mouselistener and MouseMotionListener with suitable example.[10]


Q6) Write a program to merge two files into third file. Accept file names using
command line argument.
[10]
Q7) What is Remote Procedure call? Explain with example.

[10]

Q8) Short Notes (any two):


a) MVC architecture.
b) Interface.
c) JDBC drivers.

[10]

Total No. of Questions :6]

SEAT No. :

P3856

[Total No. of Pages : 1

[4875]-42
M.C. A. (Mgt. Faculty)
IT-42-402:SOFTWARE TESTING AND QUALITY ASSURANCE
(2008 Pattern ) (Semester - IV)

Time :3 Hours]
Instructions to students:
1) Question No.1 and Q.6 arecompulsory.
2) Attempt any 3 from the remaining.
3) State assumptions if any.
4) Draw neat labeled diagrams where necessary.
5) Figures to the right indicate marks.

[Max. Marks :70

Q1) Write a detailed test plan for web based Air line reservation system. Your plan
should cover scope of testing, risks and contingencies, strategies and schedule.
Write test cases for login screen, ticket availability screen, ticket booking and
cancellation screen,source and destination fields.
[20]
Q2) What do you mean by functional and nonfunctional testing? Explain non
functional testing attributes in detail.
[10]
Q3) Calculate cyclometric complexity & design test cases for printing the addition
of prime numbers between 1 to 50.
[10]
Q4) Write a brief note on CMM.

[10]

Q5) What is the need of process improvement & how it can be achieved?

[10]

Q6) Write Short notes on (Any four)


a) Reliability Models.

[20]

b)
c)
d)

SQA process.
Equivalence partitioning.
Domain Testing.

e)

Inspection.

O O O

Total No. of Questions :7]

P3857

SEAT No. :

[4875]-43

[Total No. of Pages :2

M.C.A. (Management Faculty)


IT-43 : OBJECT ORIENTED ANALYSIS AND DESIGN
(2008 Pattern) (Semester - IV)
Time : 3 Hours]

[Max. Marks :70

Instructions to the candidates:


1)

Question 1 is compulsory.

2)

Solve any 5 questions from remaining.

3)

Mention the assumptions made for solving case study.

Q1) A food order management system is to be developed for seasons hotel, which
should include the following.

Categories of Food eg; Indian, Chinese etc.

Placing order - Selection of menu items, quantity as per the detail available.

Placed order will be monitored, and confirmed by hotel management.

Payment will be accepted either through creditcard or in cash at the time


of delivery.

a)

Draw the Use case diagram.

[10]

b)

Draw the class diagram.

[10]

Q2) Write the points of difference for OOAD and SSAD.

[10]

Q3) Three phase induction motors will either spin clockwise or counter -clockwise,
depending on the connection of the power lines. In applications requiring
motor operation in both directions, two separate contactors (power relays)
might be used to make the connections, one for each direction. Also, in some
applications of large motors, the motor starts through a transformer that
reduces the impact on the power supply. The transformer is bypassed by a
third contactor after the motor has been given enough time to come up to
speed. There are three momentary control inputs requests for forward, reverse
or off. When the motor is off, forward or reverse request cause the motor to
start up and run in the requested direction. A reverse request is ignored if the
motor is starting or running in the forward direction and vice versa. An off
request at any time shuts the motor off. Draw state transition diagram. [10]
P.T.O.

Q4) Explain the OMT in detail.

[10]

Q5) a)

Draw sequence diagram for doing registration to attend android workshop


at ABC technologies.
[5]

b)

Lifeline group of hospitals has arranged free diabetic checkup. Draw an


activity diagram for the same.
[5]

Q6) What is the purpose of class identification approach? Explain any two
approaches with proper example.
[10]
Q7) Write shorts notes on (any 4):
a)

OOSE.

b)

Component diagram.

c)

Design Refinement.

d)

OODBMS.

e)

Testing strategies.

f)

Reusability.

[2.5 x 4 =10]

EEE

[4875]-43

Total No. of Questions : 4]

P3858

SEAT No. :
[Total No. of Pages : 4

[4875]-44
M.C.A. (Management Faculty)
MT - 41-405 : OPTIMIZATION TECHNIQUES
(2008 Pattern) (Semester - IV)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2)

Solve any TWO questions from question Nos. 2, 3 and 4.

3)

Use of Scientific Calculator and Statistical Tables are allowed.

4)

Figures to the right indicate full marks.

Q1) a)

[Max. Marks : 70

The following table shows the jobs of a network along with their time
estimates.
[9]
Immediate
Time (days)
Activity Predecessor Optimistic Most Likely Pessimistic
A
4
6
8
B
A
5
7
15
C
A
4
8
12
D
B
15
20
25
E
B
10
18
26
F
C
8
9
16
G
E
4
8
12
H
D, F
1
2
3
I
G, H
6
7
8
i)
ii)

b)

Draw the network diagram.


Find the expected duration and variance for each activity. What is
the expected project length and variance of the project?
iii) Find the probability that the project is completed in 44 days.
Solve the following Integer Programming Problem:
[9]
Max Z = x1 + x2
Subject to 2x1 + 5x2 < 10
5x1 + 8x2 < 40
x1, x2 > 0
P.T.O.

c)

Machines

d)

In a bakery, the customers are handled by single person. 5 customers


arrive per hour. He takes 3 minutes to handle a customer.
[6]
Find:
i) The probability that there are no customers.
ii) Expected number of customers waiting in the bakery for their turn.
iii) The average time spent by the customer in the bakery.
Solve the problem of job assignments to minimize the cost:
[6]
Job

Q2) a)

J1

J2

J3

J4

J5

M1 7

11

M2 9

12

11

10

M3 8

M4 7

M5 4

11

Solve the following Transportation Problem:


Destinations
D3

D4

O1 6

22

O 2 11

15

O 3 10

12

12

17

Origins

Demand 7
b)

Supply

D2

D1

[9]

The following mortality rates have been observed for a certain type of
resistors in an electronic device.
[6]
Week:
Probability of Failure

0.04 0.06

0.25

0.30

0.15

0.20

There are 500 such resistors in use and it costs 80 paise to replace an
individual resistor which has failed. If all the resistors were replaced
simultaneously it would cost 50 paise per resistor. What policy the
maintenance manager should follow between individual replacement policy
and group replacement policy, if group policy is adopted, at what interval
of time he should replace all resistors.
[4875]-44

c)

Q3) a)

Draw the network diagram for the following data:


Activities

Immediate
predecessor

[5]

B, C B,C F

A E, G H, I, J

Solve the following LPP by Big M method:

[9]

Max : Z = 10x1 + 12x2


Subject to:
x1 + x2 = 5
x1 > 2
x2 < 4
x1, x2 > 0
b)

A particular item has demand of 3000 units per year. The cost of one
procurement is Rs. 100 and the holding cost is Rs. 2.40 per year. The
replenishment is instantaneous and no shortages are allowed.
[6]
Find:

c)

i)

EOQ.

ii)

Number of orders per year.

iii)

Total cost per year if the cost of one unit is Re. 1.

Explain the terms:

[5]

i)

Degeneracy in Transportation.

ii)

Infeasible solution.

iii)

Objective Function.

iv)

Arrival Rate.

v)

Prohibited Assignments.

[4875]-44

Q4) a)

The following time-cost table (time in days and cost in Rupees) applies
to a project. Use it to arrive at the network associated with completing
the project in optimum cost.
[9]
Normal
Time
Cost

Activity

Crash
Time
Cost

1-2

600

1000

1-3

600

2000

2-4

500

1500

2-5

450

650

3-4

900

2000

4-6

800

3000

5-6

400

1000

6-7

450

800

Indirect cost per day is Rs. 100.


b)

Express the following Transportation Problem as LPP:

[6]

Factory
Plants

Warehouses
P

Supply

10

12

500

14

12

600

14

10

200

10

12

14

700

Demand
c)

700 550 450 300

Describe the queuing system and its elements.

[4875]-44

[5]

Total No. of Questions : 7]

SEAT No. :

P3859

[Total No. of Pages : 1

[4875] - 45
M.C.A. (Management Faculty)
(BM - E1) 411 : MIS FRAMEWORK & IMPLEMENTATION
(2008 Pattern) (Semester - IV) (Elective)

Time : 3 Hours]
Instructions to the candidates:
1) Q.No. 1 and 7 are compulsory.
2) Solve any Four questions from remaining.
3) Figures to the right indicate full marks.

[Max. Marks : 70

Q1) How Information Technology changing the way Marketing function is


performed? Explain
[10]
Q2) What is Expert system? Explain components of expert system.

[10]

Q3) Explain the techniques of evaluating information Technology Investment.[10]


Q4) What are common computer misuses that damage IT Infrastructure?

[10]

Q5) Explain the term MIS as an instrument for organization charge.

[10]

Q6) Explain critical role of security in implementing IT application.

[10]

Q7) Write short notes on (any four):


a) Features of MIS.
b) Collaborative systems.
c) Role of Information System.
d) DSS.
e) Competitive advantage.

E E E

[4 5 = 20]

Total No. of Questions : 09]

P3860

SEAT No. :
[Total No. of Pages : 2

[4875] -46
M.C.A. (Faculty of Management)
412: FOUNDATION OF DECISION PROCESSES
(Elective) ( 2008 Pattern) (Semester-IV) (BME-2)

Time : 3 Hours]
Instructions to the candidates:
1) Attempt any SEVEN from the following.
2) Use of non-programmable calculators is allowed.
3) Figures to the right indicate full marks.

Q1) Explain the various decision making criteria with illustrations.

[Max. Marks : 70

[10]

Q2) Solve the game for the given pay-off matrix:


[10]
-5
3
1
20
5
5
4
6
-4
-2
0
-5
Q3) A management is faced with a problem of choosing one of three products for
manufacturing. The potential demand for each product may turn out to be
good, moderate or poor. The probabilities for each of the states of nature
were estimated as follows:
[10]
Product
Nature of Demand
Good
Moderate Poor
X
0.70
0.20
0.10
Y
0.50
0.30
0.20
Z
0.40
0.50
0.10
The estimated profit or loss in Rs. Under the three states may be taken as:
Product Good
Moderate Poor
X
30000
20000
10000
Y
60000
30000
20000
Z
40000
10000 -15000
Prepare the expected value table and advise the management about the choice
of the product.
Q4) Explain the dominance rules in Game with proper example.

[10]
P.T.O.

Q5) A super market has a single cashier. During the peak hours customers arrive at
a rate of 20 customers per hour. The average number of customers that can
be processed by the cashier is 24 per hour. Calculate:
[10]
i) The probability that the cashier is idle.
ii) The average number of customers in the supermarket.
iii) The averatge time a customer spends in the system.
iv) The average number of customers in the queue.
Q6) Explain the various decision making criteria with illustrations.

[10]

Q7) A bakery keeps stock of popular brand of cake. Previous experience indicates
the daily demand as given below:
[10]
Daily Demand
0
10
20
30
40
50
Probability
0.14 0.27 0.27 0.18 0.09 0.04
Consider the sequence of following random numbers:
48 78 19 51 56 77 15 14 68 09 23 80 54 76 64
Using the above sequence, simulate the demand for the next 15 days.
i) Find out the stock situation if the owner of the bakery decides to order
30 cakes every day.
ii) Estimate the daily average demand for the cake on the basis of simulated
data.
Q8) An executive has to take a decision from four alternatives 1 , 2 , 3 and 4 .
Events may lead such that any of the four results may occur R1,R2,R3 and R4.
The probability of occurances of these results are as follows:
[10]
P(R1) = 0.50; P(R2)=0.20; P(R3)=0.20; P(R4)=0.10.
R1

R2

R3

R4

1 14
2 11

9
10

10
8

5
7

3 9

10

10

11

4 8

10

11

13

Show this decision situation in the form of decision tree and indicate most
preferred decision and calculate corresponding expected values.
Q9) Explain the steady state Markov process with example.
[4875]-46

ggg
2

[10]

Total No. of Questions : 06]

P3861

SEAT No. :
[Total No. of Pages : 1

[4875] -47
M.C.A.(Mgt)
(413): BME-1-Elective:INFORMATION SYSTEM AUDIT
AND
GOVERNANCE
( 2008 Pattern) (Semester-IV)

Time : 3 Hours]
Instructions to the candidates:
1) Q.1 and Q.6 are compulsory.
2) Solve any 3 from Q.2 to Q.5
3) Figures to the right side indiate full marks.

[Max. Marks : 70

Q1) XYZ is an educational organization conducting different online courses of


computer. For online examination you have been appointed as a lead auditor
for auditing work. Describe the following task.
a) Find out required security issues for physical controls.
b) Find out required security issues for logical controls.
c) Required validation controls.
d) Different evidences.
[20]
Q2) Explain hardware and software procurement controls in detail.

[10]

Q3) Explain with example network audit.

[10]

Q4) Define & explain role of auditor during SDLC phases.

[10]

Q5) Define & explain e-governance in detail.

[10]

Q6) Short notes (any four).


a) ISACA standards
b) Risk assessment process.
c) Performance measurement tools
d) Security issues in e-commerce
e) Steering committee & their role in auditing.

ggg

[45=20]

Total No. of Questions : 7]

P3862

SEAT No. :
[Total No. of Pages : 1

[4875] -48
M.C.A. -(Mgt. Faculty)
BME-4-414: COLLABORATIVE MANAGEMENT
( 2008 Pattern) (Semester-IV) (Elective)

Time : 3 Hours]
Instructions to the candidates:
1) Attempt any five questions.
2) Support your answers with relevant examples.
3) All the questions carry equal marks.

Q1) a)
b)

[Max. Marks : 70

Describe BCG matrix.


Explain GE Nine Cell model. What is the advantage of GE Nine Cell over
BCG matrix?

Q2) Leadership style, corporate culture, values and ethics play a crucial role in
effective implementation strategy. Comment.
Q3) Explain the merger and acquisition, in brief.
Q4) Explain corporate planning and budgeting in brief.
Q5) A value chain is a chain of activities for a firm operating in a specific industry.
Explain the concept and discuss its competitive advantages.
Q6) Elaborate Porters five forces framework with the help of suitable examples.
Q7) Write short notes on (any two).
a) GAP analysis
b) McKinseys 7s frame work.
c) Joint ventures.
d) Managerial competencies.
e) Outsourcing.

ggg

Total No. of Questions : 7]

SEAT No. :

P3863

[Total No. of Pages : 1

[4875] -49
M.C.A. (Management Faculty)
BME-5: Elective: 415: DECISION SUPPORT SYSTEM
( 2008 Pattern) (Semester-IV)

Time : 3 Hours]
Instructions to the candidates:
1) Question 1 and 7 are compulsory.
2) Answer any four questions from remaining questions.

[Max. Marks : 70

Q1) Explain importance of database management system for DSS and its structure
in detail.
[10]
Q2) Discuss the models of ES and DSS integration.

[10]

Q3) Explain characteristics and capabilities of ESS.

[10]

Q4) Explain knowledge based expert system with knowledge representation


methods.
[10]
Q5) Explain how EIS helps top management in better decision making.

[10]

Q6) Discuss the classification of DSS development tools. Elaborate DSS


development platforms.
[10]
Q7) Write short notes on (any four).
a) SCM
b) Al
c) Compare EIS and DSS
d) IDSS
e) Organizational DSS

ggg

[20]

Total No. of Questions : 06]

P3864

SEAT No. :
[Total No. of Pages : 2

[4875] -50
M.C.A. - II (Management Faculty)
BME-6-416: ENTERPRISE RESOURCE PLANNING
( 2008 Pattern) (Elective) (Semester-IV)

Time : 3 Hours]
Instructions to the candidates:
1) Question No.1 and Q.No.6 are compulsory.
2) Solve any three questions from Q.2 to Q.No.5.
3) Figures to the right indicate full marks.

[Max. Marks : 70

Q1) Khan auto care is an organization engaged in servicing and sales of spare
parts of four wheeler in major cities in maharashtra. They have 120 service
centers across the state. Top management has decided to convert their semi
automated service centre based system into a central and fully automated
ERP system for administrating all their service centers, prepare a detail ERP
pre and post implementation plan.
[20]

Q2) a)
b)

Q3) a)
b)

Q4) a)
b)

Q5) a)
b)

Discuss the purchase of raw material module in purview of ERP


implementation.
[5]
What is BPR? Discuss in detail significance in ERP system.

[5]

What is CRM? Give the importance of CRM in business organization.[5]


What is data mining? How OLAP is useful for data analysis.

[5]

Explain critical success factors for ERP implementation.

[5]

List and Explain various factors for vendor selection.

[5]

Explain the importance of component based ERP system.

[5]

Explain end-user training and going live stage of ERP implementation.[5]


P.T.O.

Q6) Write short note on (any four).

[45=20]

a)

ERP in banking sector.

b)

ESS

c)

Application of data warehousing.

d)

Application of on-line analytical processing

e)

SCM and FMCG

ggg

[4875] -50

Total No. of Questions : 7]

P3865

SEAT No. :
[Total No. of Pages : 1

[4875]-51
M.C.A. (Management Faculty)
IT - 51 : HUMAN COMPUTER INTERFACE
(2008 Pattern) (Semester - V)

Time :3 Hours]
Instructions to the candidates:
1) Question No. 1 is compulsory.
2) Answer any five from remaining.
3) Figures to the right hand indicates full marks.

[Max. Marks : 70

Q1) What features do you envisage in a Tablet, may be more advanced than the
currently available Tablet? Discuss about the issues related interfaces for each
feature of such a Tablet.
[20]
Q2) a)
b)

Explain individual window design.


Write icon-specific guidelines.

Q3) a)
b)

What are form-fills and how do they help data-entry?


Explain Design Considerations for reports.

[10]
[5]
[5]

Q4) a) State and explain three pillars of interface design process.


[5]
b) Comments on arguments usually given for and against participatory
design.
[5]
Q5) Explain UI Design for a Website for E-Commerce assuming suitable examples.[10]
Q6) Explain the VIDEO Display Unit and various technologies for it.
Q7) Write short notes on (any two)
a) Social acceptability.
b) Stages of LUCID.
c) GUI Tools.

[10]

[2 5 = 10]

Total No. of Questions : 7]

P3866

SEAT No. :
[Total No. of Pages : 1

[4875]-52
M.C.A (Management)
IT52: SOFTWARE I.T. PROJECT MANAGEMENT
(2008 Pattern) (Semester-V)

Time : 3 Hours]
Instructions to the candidates:
1)
Q1 & Q7 are compulsory.
2)
Solve any Four from remaining.

Q1) a)
b)

[Max. Marks : 70

Explain & differentiate in between Network diagram & Gantt chart. [8]
Explain activities carried out in project planning phase.

[7]

Q2) Explain COCOMO in detail.

[10]

Q3) Explain various team structures used in IT organization.

[10]

Q4) Explain various risk drivers. Explain risk exposure.

[10]

Q5) Explain function of quality assurance.

[10]

Q6) Explain need of change management & also explain version control.

[10]

Q7) Write short note on any three:

[15]

a)

Earned value analysis.

b)

CMM.

c)

Function point analysis.

d)

Rayleighs Function.

R R R

Total No. of Questions : 7]

P3867

SEAT No. :

[4875] - 53
M.C.A. (Management Faculty)

[Total No. of Pages : 1

EMERGING TRENDS IN INFORMATION TECHNOLOGY

(2008 Pattern) (Semester - V)


Time : 3 Hours]
Instructions to the candidates:
1) Q 1 & 7 are compulsory.
2) Attempt any Four from remaining.
3) Figures to the right indicate full marks.

[Max. Marks : 70

Q1) Wissen Technologies pvt. Ltd., an 100% export oriented Software company
has its head office in Vancover, Canada. They also have their corporate house
in Germany and Norway. As a Business continuity steering committee Head,
suggest a suitable Business continuity plan structure for this company. [15]
Q2) Explain security management in operational cryptographic security system?[10]
Q3) What is E-learning and its Models?

[10]

Q4) Why is crop management important? How do we do crop management?[10]


Q5) What are the types of knowledge and explain the need for knowledge
Management system?
[10]
Q6) Discuss RFID technology & its areas of application?

[10]

Q7) Write Short Notes (any 3):


a) GIS Development process.
b) Development Cycle of Embedded System.
c) Supplier Chain Management.
d) Business process re-engineering.
e) E-Agriculture.

[15]

E E E

Total No. of Questions : 7]

P3868

SEAT No. :
[Total No. of Pages : 2

[4875]-54
M.C.A.
(Management Faculty) (Semester - V)
IT : 55 - ADVANCED INTERNET TECHNOLOGY
(2008 Pattern)

Time : 3 Hours]

[Max. Marks : 70

Instructions to the candidates:


1)

Question No. 1 & Question No. 7 are compulsory.

2)

Attempt any four Questions from remaining.

3)

Right side indicates marks.

Q1) What is E-Commerce? Explain how payment transactions took Place in ECommerce with Proper Example.
[15]

Q2) Write a servlet program to accept online registration details of candidates for
appearing NET Examination. Assume suitable table structure.
[10]

Q3) Write a PERL Program to accept a file name from user. Display No. of
Characters, No. of words & No. of Numericals Present in a file.
[10]

Q4) Write a PHP code to accept & insert customer-details from customer. After
successful Insertion, Dispaly customer details in proper format. Assume
Suitable table structure.
[10]

Q5) What are ISP actions? Explain Error Handling in ISP with Proper example.[10]

Q6) Explain with examples cookies in servlet & life cycle of servlet.
[4875]-54

[10]
P.T.O.

Q7) Write Short Note on any Three :

[15]

a)

Arrays in PERL

b)

Arrays in PHP

c)

HTTP Session

d)

HTTP Request & HTTP Response

e)

PHP Error Handling

ddd

[4875]-54

Total No. of Questions : 6]

P3869

SEAT No :
[Total No. of Pages : 1

[4875] - 55
M.C.A. (Management Faculty)
ITE-1 - Elective: CYBER LAW AND I.T. SECURITY
(2008 Pattern) (Semester -V)

Time : 3 Hours]
Instructions to the candidates:
1) Que. 1 and Que. 6 are compulsory.
2)

Q1) a)
b)

[Max. Marks : 70

Solve any three from remaining questions.

Explain the importance of cyber law with the perspective of cyber crime.[10]
What is Digital Signature with advantage and disadvantage.
[10]

Q2) Describe hacking with its type also suggests how to protect data from hacking.
[10]
Q3) Explain in detail scope of IT Act.
[10]
Q4) Explain domain name in details also explain different dispute regarding domain
name.
[10]
Q5) Explain E-Commerce. How to provide security to E-commerce Application?
[10]
Q6) Write short note on following [Any 4]:
a)
b)
c)
d)
e)

Tampering with Computer Source & Documents.


E-Governance.
Encryption techniques.
Function of certifying authority.
Intellectual property right.

abab

[20]

Total No. of Questions : 7]

SEAT No. :

P3870

[Total No. of Pages : 1

[4875]-56
M.C.A. (Management Faculty)
ITE - 2 : PROGRAMMING LANGUAGES PARADIGMS
(2008 Pattern) (Elective) (Semester - V)

Time : 3 Hours]
Instructions to the candidates:
1) Questions No. 1 and 7 is compulsory.
2) Attempt any four questions from the remaining.
3) Figures to the right side indicates full marks.

[Max. Marks : 70

Q1) Explain various programming languages paradigms with suitable examples.[15]


Q2) Explain compiler, interpreter and assembler with examples.

[10]

Q3) What is firmware computer? Explain with suitable diagram the layers of virtual
computer for any web application.
[10]
Q4) Explain the structure of conventional computer with block diagram.

[10]

Q5) Explain parameter transmission method in subprogram sequence control.[10]


Q6) What is binding times? Write the classes of bindings with suitable examples.[10]
Q7) Write Short Notes on (Any three) :
a)

Non. arithmetic expression

b)

Virtual machine

c)

Features of C++.

d)

Linking and Loading

[15]

ddd
[4875]-54

P.T.O.

Total No. of Questions : 7]

P3871

SEAT No :
[Total No. of Pages : 1

[4875] - 57
M.C.A. (Management Faculty)
ITE-3: ADVANCED UNIX (Elective)
(2008 Pattern) (Semester -V)

Time : 3 Hours]
Instructions to the candidates:
1) Question one and seven are compulsory.
2)

Solve any four from remaining.

3)

Assume suitable data whenever necessary.

4)

Figure at right hand indicates full marks.

[Max. Marks : 70

Q1) Explain the following system calls :


[52=10]
a) malloc ( )
b) ialloc ( )
c) chmod ( )
d) fork ( )
e) fstat ( )
Q2) What is a process? Explain different ways in which a process can be terminated.[10]
Q3) What are signals? How are they generated? Explain signal handling in detail.[10]
Q4) What are message Queues ? Explain the structure of information maintained
by Kernel for every message Queue.
[10]
Q5) Explain the term Environment variables. Describe the functions to access
and manipulate them.
[10]
Q6) What are pipes ? What happens when a pipe system is called ?
[10]
Q7) Write short notes (attempt any four) :
[54=20]
a) Record Locking.
b) Zombie Processes.
c) Parent Process id.
d) Sessions and process groups.
e) Inode table.

abab

Total No. of Questions : 6]

SEAT No :

P3872

[Total No. of Pages : 1

[4875] - 58
M.C.A. (Management Faculty)
ITE-4 ELECTIVE: MOBILE WIRELESS COMPUTING
(2008 Pattern) (Semester -V)

Time : 3 Hours]
Instructions to the candidates:
1) Question No. 1 and 6 are Compulsory.
2)

Q1) a)
b)

[Max. Marks : 70

Attempt any THREE questions from remaining Q. 2 to Q. 5.

Explain Routing in Mobile Network. How Virtual Backbone Routing is


implemented in Kelpi.
[10]
Explain TCP issues in Wireless Network.
[10]

Q2) Explain GSM Architecture with suitable diagram.

[10]

Q3) Explain functions of Mobile agents. Explain Aglets and Ajanta systems for
mobile agent programming.
[10]
Q4) Explain Frequency allocation in GSM. Why framing and logical channeling is
important?
[10]
Q5) Explain Handoff in TCP. Explain how handoff is performed during roaming.[10]
Q6) Write short notes (any FOUR):
a)
b)
c)
d)
e)
f)

Link rxmit.
Blue-tooth.
GPRS.
QoS in Wireless.
PUSH-PULL.
CDMA.

abab

[45=20]

Total No. of Questions : 7]

SEAT No. :

P3873

[Total No. of Pages : 1

[4875]-59
M.C.A. (Management Faculty)
(ITE - 5 : Elective) : DISTRIBUTED DATABASE MANAGEMENT
SYSTEM
(2008 Pattern) (Semester - V)

Time : 3 Hours]
Instructions to the candidates:
1) Q7 is compulsory. Solve any 5 from remaining.
2) Draw suitable diagram when needed.
3) Give suitable examples if required.
4) Whenever necessary state assumptions.
5) Right side Indicates Marks.

[Max. Marks : 70

Q1) What is DOM? Explain the various reasons why objects are distributed. [10]
Q2) Explain the various concurrency control mechanism for Distributed Databases.[10]
Q3) Explain the various Reliability Issues in Distributed Databases.

[10]

Q4) What is Transaction? Explain the various goals of Transaction management


with respect to Distributed Databases.
[10]
Q5) Explain Characterization of query Processors in distributed databases. [10]
Q6) Explain the various Distributed design Issues.

[10]

Q7) Write Short Notes on (Any Four) :


a) Global Directory Issues.
b) Advantages of DDBMS.
c) Objective of query Processing
d) Availability in DDBS.
e) Mobile Database System.

[20]

ddd
[4875]-54

P.T.O.

You might also like