Computer Objective Question 181) The process of reading a database schema and producing a data model from that schema is known as
Ans:- (C) reverse engineering 2) The data model that is produced from reverse enginerring is
Ans:- (A) A conceptual model 3) A tool that can help designers understand the dependencies of database structures is a
Ans:- (A) dependency graph 4) How many copies of the redesign process ?
Ans:- (C) Three 5) Which SQL-92 standard SQL command can be used to change a table name ?
Ans:- (A) RENAME TABLE 6) What SQL command can be used to add columns to a table ?
Ans:- (C) ALTER TABLE table name ADD COLUMN COLUMNName 7) What SQL command can be used to delete columns from a table ?
Ans:- (C) ALTER TABLE Tablename COLUMN Column Name 8) To drop a column that is used as a foreign key, first
Ans:- (D) All of the above must be done 9) Which of the following modifications may not succeed ?
Ans:- (A) Changing a column data type from char to date 10) What SQL command will allow you to change the table STUDENT to add the constraint named Grade check that states that the values of the Grade column must be grater than 0 ?
Ans:- (C) ALTER TABLE STUDENT ADD CONSTRANINT GradeCheck (Grade < 0); 11) changing cardinalities in a database is
Ans:- (A) a common database design task 12) Because of the importance of making data model changes correctly , many professionals are ------about using an automated process for database redesign
Ans:- (B) skeptical |