Friday, 12 April 2013
DATABASE MANAGEMENT SYSTEMS-OCTOBER-2007
THIRD SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/TECHNOLOGY-OCTOBER, 2007
DATABASE MANAGEMENT SYSTEMS
PART-A
(Maximum marks:15)
v Answer the following questions in one or two sentences:
1.Define data independence.
2.What is DML?
3.Define domain.
4.What is entity integrity ?
5.List the data types in SQL.
6.What is the use of SAVEPOINT statement and give its syntax?
7.What is embedded SQL?
8.What is a stored procedure?
9.What is RAID level 0?
10.What is a distributed database?
PART-B
(Maximum marks:60)
(Answer one full question from each unit)
Unit-1
v (a)Explain the centralized DBMS architecture.(6)
(b)Explain the use and parts of UMI.(6)
OR
v (a)Explain the three tier client architecture with a figure.(6)
(b)Explain the generalization feature of EER model with a suitable example.(6)
Unit-2
v (a)Explain the use and how to write embedded SQL with an example(8)
(b)Explain about multivalued dependencies.(4)
OR
v (a)Explain about ODBC.(6)
(b)Explain the lossless-join decomposition with an example.(6)
UNIT-3
v (a)Explain SELECT statements with WHERE and ORDER BY clause with examples.(6)
(b)Explain the use,creation of simple and composite indexes,creation of unique index and dropping of indexes with syntax.(6)
OR
v There is a sales order detail table maintained in an inventory management storing details such as order No.,product code,quantity ordered,quantity sold and order date.Another table product master contains details such as product code,description and balance quantity.Write SQL statement to perform the following operations:
(i)Retrieve all the products that are not being sold from the product master file.
(ii)Retrieve the contents of transaction file and find the total quantity sold for each item.
(iii)Retrieve the contents of transaction file in the ascending order of order number and order date.The output should contain det order No.,product code,description,order date in DD/MM/YY format.
(iv)Retrieve the contents of transaction file having difference in quantity ordered and quantity sold.(12)
UNIT-4
v Write a PL/SQL block of code to accept item code,transaction type and then update the ITEM MASTER table based on transaction type which may be’p’for purchase or’I’for issue.If an item is at reorder level then that item should not be issued and an appropriate message should be generate.The ITEM MASTER table have the following fields:Item code,description,balance stock,reorder level and unit price.The contents of ITEM MASTER before and after updation should also be displayed.(12)
OR
v Write a PL/SQL block of code to generate rank list of students studying in a class.The student details are stored in a STUDENT table having fields-Register No.,name,marks obtained in 6 subjects.A minimum of 40 is required for a pass in each subject.The maximum mark for each subject is 100.the rank list should be formatted and should contain rank,register no.,name,marks in individual subjects,total mark and grade.the grade is assigned as follows:
D-Distinction if%>=80
F-First class if%>=60 and<80
S-Second class if%>=50 and<60
T-Third class if%<50 and>=40
The rank list should not contain failed candidates.(12)
UNIT-5
v (a)Explain the basic parts of a trigger.(6)
(b)Explain the components of a procedure of function.(6)
OR
v (a)Explain any 3 types of triggers.(6)
(b)Write any 4 advantages of using procedures and functions.(6)
DATABASE MANAGEMENT SYSTEMS-MARCH-2008
THIRD SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/TECHNOLOGY-MARCH, 2008
DATABASE MANAGEMENT SYSTEMS
PART-A
(Maximum marks:15)
v Answer the following questions in one or two sentences:
1.Define super key.
2.What is specialization?
3.Define normailization.
4.What is foreign key?
5.What is the use of Exists function?
6.List the basic parts of a trigger.
7.What is PL/SQL?
8.Write the syntax of statement used to create stored procedures.
9.What do you mean by RAID level 6?
10.What are heap files?
PART-B
(Maximum marks:60)
(Answer one full question from each unit)
Unit-1
v (a)Explain about the query processor.(6)
(b)Distinguish between the following:
(i)Logical data independence and physical data independence
(ii)Physical schema and logical schema.(6)
OR
v (a)Explain the entity-relationship model.(6)
(b)Explain the function of DML and the types of DML.(6)
Unit-2
v (a)Explain the Boyce-Codd Normal form.(6)
(b)Describe about domain constraints and key constraints.(6)
OR
v (a)Explain the natural join operation with a suitable example.(6)
(b)Explain design guidelines for relational schema.(6)
UNIT-3
v (a)Explain the query optimization process.(6)
(b)Explain how to join tables with a suitable example.(6)
OR
v (a)In an inventory system a product table is maintained,which contain details such as product code,description,rate and another transaction file having product code,transaction type,quanity sold and date of transaction.Assume suitable field names,data type and width.Write SQL statements required to perform the following operations:
(i)List the average quantity sold for each item.
(ii)List the sum total of all transactions for the month of August.
(iii)List items that have not been sold in product master.(6)
(b)Explain grouping using GROUP BY and HAVING clauses with examples.(6)
UNIT-4
v An employee table have fields-employee code,employee name,department code and salary.Assume suitable field length and data type.Write a PL/SQL block of code that increase the salaries of two employees ‘Nithya’and’Yamuna’by Rs.2000 and Rs.2500.If the total of salary of all employees is greater than 35000 undo the updates made to the records of ‘Nithya’and ‘Yamuna’.(12)
OR
v (a)Where do the stored procedures and functions reside and how the ORACLE engine creates the same?(6)
(b)Explain the steps to execute a procedure or function.(6)
UNIT-5
v (a)Explain the factors to be considered for choosing a RAID level.(4)
(b)What are the reasons for bucket overflows in hash file organization?.(4)
(c)Explain two reasons for allowing concurrent executions.(4)
OR
v (a)Explain conflict serializability.(8)
(b)What are the advantages of distributed databases?(4)
DATABASE MANAGEMENT SYSTEMS-OCTOBER-2011
THIRD SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/TECHNOLOGY-OCTOBER, 2011
DATABASE MANAGEMENT SYSTEMS
PART-A
(Maximum marks:15)
v Answer the following questions in one or two sentences:
1.Define primary Key.
2.Define schema
3.List the needs of normalization.
4.Define functional dependency.
5.What is SQl?
6.What is integrity constraints?
7.What is the use of data base cursor?
8.Define embedded SQL.
9.List different ways of groupingrecords in a file.
10.Define data fragmentation.
PART-B
(Maximum marks:60)
(Answer one full question from each unit)
Unit-1
v (a)Explain data base architecture with diagram.(6)
(b)Explain 2 tier client server architecture.(6)
OR
v (a)Explain the advantages of data base system over conventional systems.(6)
(b)Explain data independences in detail.(6)
Unit-2
v (a)Explain any 2 relational operations in detail.(6)
(b)What is constraints?Explain integrity constraints in detail.(6)
OR
v (a)Explain 3 NF and 4 NFin detail.(6)
(b)Explain different types of join operations.(6)
UNIT-3
v (a)Explain various data types of SQL in detail with examples.(6)
(b)Explain the working of UPDATE and CREATE INDEX command.(6)
OR
v An employee table named EMP consists of following fields:
Emp.no,name,dept.no,salary,designation.Now write SQL commands for the following:
(i)to create table
(ii)To insert 5 numbers of values into it.
(iii)Find dept.no.who has maximum number of employees.
(iv)Find minimum salary of employees who have more than 10,000 as salary.(12)
UNIT-4
v (a)What are aggregate functions?Explain with example.(6)
(b)Explain different types of data base triggers.(6)
OR
v (a)Explain features of dynamic SQL.(6)
(b)What is cursor?Explain different types with examples.(6)
UNIT-5
v (a)Explain data fragmentation in distributed data base .(6)
(b)Explain serializability in transaction management.(6)
OR
v (a)What is SAN?Write its advantages.(6)
(b)Explain concurrent execution.(6)
DATABASE MANAGEMENT SYSTEMS-MARCH-2009
THIRD SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/TECHNOLOGY-MARCH, 2009
DATABASE MANAGEMENT SYSTEMS
PART-A
(Maximum marks:15)
v Answer the following questions in one or two sentences:
1.Define entity?
2.What is UML?
3.Define tuple.
4.List the symbols used to represent the select,project and Cartesian product operations.
5.What is the use of UNIQUE constraint?
6.What are aggragate functions?
7.What is the use of exception section in PL/SQL block?
8.What are triggers?
9.What is mirroring?
10.What are non-clustering indices?
PART-B
(Maximum marks:60)
(Answer one full question from each unit)
Unit-1
v (a)Describe with a figure the two-tier client architecture.(4)
(b)Explain the specialization feature of EER model with a suitable example.(8)
OR
v (a)Explain the inheritance property of EER model.(6)
(b)Explain the three schema architecture.(6)
Unit-2
v (a)Explain the set intersection and natural join operations with examples.(8)
(b)Compare BCNF and 3 NF.(4)
OR
v (a)Explain about dependency preservation.(6)
(b)Explain with an example the second normal form.(6)
UNIT-3
v (a)Explain the data types in SQL with examples.(6)
(b)Explain the following statements in ORACLE with examples:
(i)UPDATE (ii)INSERT (iii)DELETE.(6)
OR
v (a)Explain cost-based query optimization method.(6)
(b)Explain the following statements:
(i)ROLLBACK (ii)SAVE POINT (iii)COMMITT.(6)
UNIT-4
v (a)Differentiate between:
(i)Procedures and functions in ORACLE(6)
(ii)Database triggers and procedure.
(b)Explain the control statements in PL/SQL with examples.(6)
OR
v There are two tables maintained in a library management system:
(i)The MEMBER table containing details of members in library such as member number,member name,address,designation and department.
(ii)The book table containing details about books such as book number,title,author name,publisher name and stock quantity.Write a PL/SQL to accept a member number and book number.Issue book to a member only if it is available.If not issue a suitable error message.Perform required file updations.Assume suitable field name,data type and width for each field.(12)
UNIT-5
v (a)Explain horizontal data fragmentation in distributed databases.(6)
(b)Explain how to perform insert,look up and delete operation in a file having hash organization.(6)
OR
v (a)Explain RAID level 5(6)
(b)Explain about transaction states.(6)
DATABASE MANAGEMENT SYSTEM-OCTOBER-2010
THIRD SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/TECHNOLOGY-OCTOBER, 2010
DATABASE MANAGEMENT SYSTEM
PART-A
(Maximum marks:15)
v Answer the following questions in one or two sentences:
1.Define a record.
2.What is physical data independence?
3.List various data models?
4.Define functional dependency.
5.What is TCL?
6.What is the use of COMMIT statement?
7.What is a data base trigger?
8.Define embedded SQL.
9.What is RAID?
10.Define variable length records.
PART-B
(Maximum marks:60)
(Answer one full question from each unit)
Unit-1
v (a)Explain data base architecture with diagram.(6)
(b)Explain three tier client server architecture.(6)
OR
v (a)Explain the advantages of data base system over conventional systems.(6)
(b)Explain various components of storage manager.(6)
Unit-2
v (a)Explain the features of relational data model.(6)
(b)What is constraints?Explain integrity constraints in detail.(6)
OR
v (a)Explain 1NF and 2NF in detail..(6)
(b)Explain different types of join operations.(6)
UNIT-3
v (a)Explain various data types of SQL in detail with examples.(6)
(b)Explain the working of HAVING and GROUP BY in detail.(6)
OR
v A table named EMp consists of following fields:empno,name,deptno,salary,designation.Now write SQL commands for following:
(i)To create table.
(ii)To insert 5 numbers of values into it.
(iii)Find name of employees whose salary is between 10,000 and 20,000.
(iv)Find name ,designation,deptno of employees who have designation that don’t appear in deptno 2.(12)
UNIT-4
v (a)What are aggragate functions?Explain with example.(6)
(b)Explain stored procedures and functions.(6)
OR
v (a)Explain features of dynamic SQL.(6)
(b)What is cursor?Differnet types,explain with examples.(6)
UNIT-5
v (a)Explain features of RAID level 1.(6)
(b)Explain serializability in transaction management.(6)
OR
v (a)What is SAN?Its advantages.(6)
(b)Explain different file organizations.(6)
INDUSTRIAL MANAGEMENT AND ENTREPRENEURSHIP-OCTOBER-2009
SIXTH SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/TECHNOLOGY-OCTOBER, 2009
INDUSTRIAL MANAGEMENT AND ENTREPRENEURSHIP
PART-A
(Maximum marks:15)
v Answer the following questions in one or two sentences:
1.What you mean by minor partner?
2.What is upward communication?
3.Define inspectors quality control.
4.Write the full form of PDCA.
5.Distinguish between ISO 9002 and ISO 9003.
6.Define activity.
7.States living wages.
8.Define MBO.
9.What is noise pollution?
10.Define Entrepreneurship.
PART-B
(Maximum marks:60)
(Answer one full question from each unit)
Unit-1
v (a)Explain Joint stock companies with its advantages and disadvantages.(6)
(b)Describe functional organization with its advantages and disadvantages.(6)
OR
v (a)Explain different methods of traininig.(6)
(b)What are the essentials of effective communication?.(6)
Unit-2
v (a)What are the requirements of quality?(3)
(b)Describe quality management system.(4)
(c)What are the advantages of quality control?(5)
OR
v (a)Describe the procedure for continuous improvement of an institution.(6)
(b)Explain the brainstorming method for solving problems in quality circle.(6)
UNIT-3
v (a)What is personal settings?.(2)
(b)Draw the network,identify the critical path and find the TE,TL of each activity of the project given below:
Activity
|
Optimistic Time
|
Most likely Time
|
Pessimistic Time
|
1-2
1-3
2-4
3-4
4-6
5-6
3-5
5-7
6-7
|
2
1
4
8
1
2
4
7
6
|
5
3
7
11
3
5
7
10
6
|
14
35
10
20
5
8
10
19
30
|
.(10)
OR
v (a)List the requirement of a good wage payment system.(6)
(b)Explain marketing MIX.(6)
UNIT-4
v (a)Explain waiting line theory.(6)
(b)Describe human resource management information system.(6)
OR
v (a)From the following game,find the saddle point and state the game value:
Player B
Player A B1 B2
A1 4 2
A2 -1 4(4)
(b)List the limitation of MBO.(4)
(c)List the difference between Data and Information.(4)
UNIT-5
v (a)List the steps to build positive personality.(6)
(b)Explain the procedure for registration of SSI.(6)
OR
v (a)Explain water treatment processes.(6)
(b)List the causes of noise pollution.(4)
(c)Mention the importance of Industrial safety.(2)
WEB TECHNOLOGY-OCTOBER-2009
FIFTH SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/TECHNOLOGY-OCTOBER, 2009
WEB TECHNOLOGY
PART-A
(Maximum marks:15)
v Answer the following questions in one or two sentences:
1.What is the use of FTP?
2.What is IIS?
3.List tags in HTML used for creating headings.
4.Write a piece of code in HTML to create an unordered List.
5.What is meant by scripts?
6.List various mathematical operations in Javascript
7.What is global variable in Javascript?
8.List various arithmetic operators in PHP.
9.What is the use of codes in PHP?
10.What is a blog?
PART-B
(Maximum marks:60)
(Answer one full question from each unit)
Unit-1
v (a)What are the different methods usedby firewall to control traffic?.(6)
(b)Explain Internet,Intranet and Extranet.(6)
OR
v (a)Explain various Internet connection methods.(6)
(b)Explain IP address and its classification.(6)
Unit-2
v (a)Explain creation of frame in HTML with an example.(6)
(b)Compare between Javascript and VBScript.(6)
OR
v (a)Explain Cascading Style Sheet.(6)
(b)Explain different types of looping statements in Java Script.(6)
UNIT-3
v (a)Explain various features of PHP.(6)
(b)Explain various looping statements in PHP with example.(6)
OR
v (a)Explain any three array processing functions in PHP.(6)
(b)Explain steps for installing Apache and Mysql.(6)
UNIT-4
v (a)Explain file Handling in PHP.(6)
(b)Explain how we connect databasein mysql.(6)
OR
v (a)Explain any three table handling commands in PHP.(6)
(b)Explain various commands for R/W file in PHP.(6)
UNIT-5
v (a)Explain various steps to ensure webflow.(6)
(b)What are the different testing methods in a website?.(6)
OR
v (a)Explain file uploading process for a website.(6)
(b)Explain features of photoshop.(6)