Saturday, 12 December 2020

General Computer Test - 118

 

Q.1 When R , then the cost of computing ∩S = φ R >< S is

(A) the same as R × S

 (B) greater the R × S

(C) less than R × S

 (D) cannot say anything

Ans: (A)

Q.2 In SQL the word ‘natural’ can be used with

(A) inner join

 (B) full outer join

(C) right outer join

(D) all of the above

Ans: (A)

Q.3 The default level of consistency in SQL is

(A) repeatable read

(B) read committed

(C) read uncommitted

 (D) serializable

Ans: (D)

Q.4 If a transaction T has obtained an exclusive lock on item Q, then T can

(A) read Q

(B) write Q

(C) both read and write Q

 (D) write Q but not read Q

Ans: (C)

Q.5 Shadow paging has

(A) no redo

 (B) no undo

(C) redo but no undo

 (D) neither redo nor undo

Ans: (A)

Q.6 If the closure of an attribute set is the entire relation then the attribute set is a

(A) superkey

(B) candidate key

(C) primary key

 (D) not a key

Ans: (A)

Q.7 DROP is a ______________ statement in SQL.

(A) Query

 (B) Embedded SQL

(C) DDL

(D) DCL

Ans: (C)

Q.8 If two relations R and S are joined, then the non matching tuples of both R and S are ignored in

(A) left outer join

 (B) right outer join

(C) full outer join

 (D) inner join

 

Ans: (D)

Q.9 The keyword to eliminate duplicate rows from the query result in SQL is

(A) DISTINCT

 (B) NO DUPLICATE

(C) UNIQUE

(D) None of the above

` Ans: (C)

Q.10 In 2NF

(A) No functional dependencies (FDs) exist.

(B) No multivalued dependencies (MVDs) exist.

(C) No partial FDs exist.

(D) No partial MVDs exist.

Ans: (C)

Q.11 Which one is correct statement? Logical data independence provides following without changing application programs:

(i) Changes in access methods.

(ii) Adding new entities in database

(iii) Splitting an existing record into two or more records

(iv) Changing storage medium

(A) (i) and (ii)

 (B) (iv) only,

(C) (i) and (iv)

(D) (ii) and (iii)

Ans: (D)

Q.12 In an E-R, Y is the dominant entity and X is a subordinate entity. Then which of the following is incorrect :

(A) Operationally, if Y is deleted, so is X

(B) existence is dependent on Y.

(C) Operationally, if X is deleted, so is Y.

(D) Operationally, if X is deleted, & remains the same.\

Ans: (C)

Q.13 Relational Algebra is

(A) Data Definition Language .

(B) Meta Language

(C) Procedural query Language

(D) None of the above

Ans: (C)

Q.14 Which of the following aggregate functions does not ignore nulls in its results?.

(A) COUNT .

 (B) COUNT (*)

(C) MAX

(D) MIN

Ans: (B)

Q.15 R (A,B,C,D) is a relation. Which of the following does not have a lossless join dependency preserving BCNF decomposition

(A) AB, BCD

(B) AB, BC, CD .

(C) ABC, CAD

 (D) ABCD

Ans: (D)

Q.16 Consider the join of relation R with a relation S. If R has m tuples and S has n tuples, then the maximum and minimum size of the join respectively are

(A) m+n and 0

(B) m+n and |m-n|

(C) mn and 0

 (D) mn and m+n

Ans: (C)

Q.17 Maximum height of a B+ tree of order m with n key values is

(A) Logm(n)

(B) (m+n)/2

(C) Logm/2(m+n)

(D) None of these

Ans: (D)

Q.18 Which one is true statement :

(A) With finer degree of granularity of locking a high degree of concurrency is possible.

(B) Locking prevents non – serializable schedules.

(C) Locking cannot take place at field level.

(D) An exclusive lock on data item X is granted even if a shared lock is already

held on X.

Ans: (A)

Q.19 Which of the following statement on the view concept in SQL is invalid?

(A) All views are not updateable

(B) The views may be referenced in an SQL statement whenever tables are referenced.

(C) The views are instantiated at the time they are referenced and not when they are defined.

(D) The definition of a view should not have GROUP BY clause in it.

 

Ans: (D)

Q.20 Which of the following concurrency control schemes is not based on the serializability property?

(A) Two – phase locking

 (B) Graph-based locking

(C) Time-stamp based locking

 (D) None of these .

Ans: (D)

Q.21 Which of the following is a reason to model data?

(A) Understand each user’s perspective of data

(B) Understand the data itself irrespective of the physical representation

(C) Understand the use of data across application areas

(D) All of the above

Ans: (D)

Q.22 If an entity can belong to only one lower level entity then the constraint is

(A) disjoint

(B) partial

(C) overlapping

 (D) single

Ans: (B)

Q.23 The common column is eliminated in

(A) theta join

 (B) outer join

 (C) natural join

(D) composed join

Ans: (C )

Q.24 In SQL, testing whether a subquery is empty is done using

(A) DISTINCT

 (B) UNIQUE

(C) NULL

(D) EXISTS

Ans: (D)

Q.25 Use of UNIQUE while defining an attribute of a table in SQL means that the attribute values are

(A) distinct values

 (B) cannot have NULL

(C) both (A) & (B)

 (D) same as primary key

Ans: (C)

General Computer Test - 117

 

Q.1 Which of the following relational algebra operations do not require the participating tables to be union-compatible?

(A) Union

(B) Intersection

(C) Difference

(D) Join

Ans: (D)

Q.2 Which of the following is not a property of transactions?

(A) Atomicity

(B) Concurrency

(C) Isolation

(D) Durability

Ans: (B)

Q.3 Relational Algebra does not have

(A) Selection operator.

 (B) Projection operator.

(C) Aggregation operators.

 (D) Division operator.

Ans: (C )

Q.4 Checkpoints are a part of

(A) Recovery measures.

(B) Security measures.

(C ) Concurrency measures.

 (D) Authorization measures.

Ans: (A)

Q.5 Tree structures are used to store data in

 

(A) Network model.

 (B) Relational model.

(C) Hierarchical model.

(D) File based system.

Ans: (C )

Q.6 The language that requires a user to specify the data to be retrieved without specifying exactly how to get it is

(A) Procedural DML.

(B) Non-Procedural DML.

(C) Procedural DDL.

(D) Non-Procedural DDL.

Ans: (B)

Q.7 Precedence graphs help to find a

(A) Serializable schedule.

 (B) Recoverable schedule.

(C) Deadlock free schedule.

(D) Cascadeless schedule.

Ans: (A)

Q.8 The rule that a value of a foreign key must appear as a value of some specific table is called a

(A) Referential constraint.

 (B) Index.

(C) Integrity constraint.

 (D) Functional dependency.

Ans: (A)

 

Q.9 The clause in SQL that specifies that the query result should be sorted in ascending or descending order based on the values of one or more columns is

(A) View

 (B) Order by

(C) Group by

 (D) Having

Ans: (B)

Q.10 What is a disjoint less constraint?

(A) It requires that an entity belongs to no more than one level entity set.

(B) The same entity may belong to more than one level.

(C) The database must contain an unmatched foreign key value.

(D) An entity can be joined with another entity in the same level entity set.

Ans: A

Q.11 According to the levels of abstraction, the schema at the intermediate level is called

(A) Logical schema.

 (B) Physical schema.

(C) Subschema.

(D) None of these.

Ans: D

Q.12 It is an abstraction through which relationships are treated as higher level entities

(A) Generalization

. (B) Specialization.

(C) Aggregation.

 (D) Inheritance.

Ans: (C

Q.13 A relation is in ____________ if an attribute of a composite key is dependent on an attribute of other composite key.

(A) 2NF

 (B) 3NF

(C) BCNF

 (D) 1NF

Ans: (B)

Q.14 What is data integrity?

(A) It is the data contained in database that is non redundant.

(B) It is the data contained in database that is accurate and consistent.

(C) It is the data contained in database that is secured.

(D) It is the data contained in database that is shared.

Ans: (B)

Q.15 What are the desirable properties of a decomposition

(A) Partition constraint.

 (B) Dependency preservation.

(C) Redundancy.

(D) Security.

Ans: (B)

Q.16 In an E-R diagram double lines indicate

(A) Total participation.

(B) Multiple participation.

(C) Cardinality N.

(D) None of the above.

Ans: (A)

Q.17 The operation which is not considered a basic operation of relational algebra is

(A) Join.

(B) Selection.

(C) Union.

(D) Cross product.

Ans: (A)

Q.18 Fifth Normal form is concerned with

(A) Functional dependency.

(B) Multivalued dependency.

(C) Join dependency.

(D) Domain-key.

Ans: (C)

Q.19 Block-interleaved distributed parity is RAID level

(A) 2.

 (B) 3

(C) 4.

(D) 5.

Ans: (D)

Q.20 Immediate database modification technique uses

(A) Both undo and redo.

 (B) Undo but no redo.

(C) Redo but no undo.

 (D) Neither undo nor redo.

Ans: (A)

Q.21 In SQL the statement select * from R, S is equivalent to

(A) Select * from R natural join S.

(B) Select * from R cross join S.

(C) Select * from R union join S.

 (D) Select * from R inner join S.

Ans: (B)

Q.22 Which of the following is not a consequence of concurrent operations?

(A) Lost update problem.

(B) Update anomaly.

(C) Unrepeatable read.

 (D) Dirty read.

Ans: (B)

Q.23 As per equivalence rules for query transformation, selection operation distributes over

(A) Union.

(B) Intersection.

(C) Set difference.

(D) All of the above.

Ans: (D)

Q.24 The metadata is created by the

(A) DML compiler

 (B) DML pre-processor

(C) DDL interpreter

 (D) Query interpreter

Ans: (C)

Q.25 When an E-R diagram is mapped to tables, the representation is redundant for

(A) weak entity sets

 (B) weak relationship sets

(C) strong entity sets

 (D) strong relationship sets

Ans: (B)

General Computer Test - 116

 

Q.1 A primary key is combined with a foreign key creates

(A) Parent-Child relation ship between the tables that connect them.

(B) Many to many relationship between the tables that connect them.

(C) Network model between the tables that connect them.

(D) None of the above.

Ans: A

Q.2 In E-R Diagram derived attribute are represented by

(A) Ellipse

 (B) Dashed ellipse

(C) Rectangle

(D) Triangle

Ans B

Q.3 Cross Product is a:

(A) Unary Operator

(B) Ternary Operator

(C) Binary Operator

 (D) Not an operator

Ans: C

Q.4 An instance of relational schema R (A, B, C) has distinct values of A including NULL values. Which one of the following is true?

(A) A is a candidate key

 (B) A is not a candidate key

(C) A is a primary Key

(D) Both (A) and (C)

Ans: B

Q.5 Consider the join of a relation R with relation S. If R has m tuples and S has n tuples, then the maximum size of join is:

(A) mn

 (B) m+n

(C) (m+n)/2

 (D) 2(m+n)

Ans: A

Q.6 The natural join is equal to :

(A) Cartesian Product

(B) Combination of Union and Cartesian product

(C) Combination of selection and Cartesian product

(D) Combination of projection and Cartesian product

Ans: D

Q.7 Which one of the following is not true for a view:

(A) View is derived from other tables.

(B) View is a virtual table.

(C) A view definition is permanently stored as part of the database.

(D) View never contains derived columns.

Ans: C

Q.8 A primary key if combined with a foreign key creates

(A) Parent-Child relationship between the tables that connect them.

(B) Many to many relationship between the tables that connect them.

(C) Network model between the tables that connect them.

(D) None of the above.

Ans: A

Q.9 In E-R Diagram relationship type is represented by

(A) Ellipse

(B) Dashed ellipse

(C) Rectangle

 (D) Diamond

Ans: D

Q.10 Hierarchical model is also called

(A) Tree structure

 (B) Plex Structure

(C) Normalize Structure

(D) Table Structure

Ans: A

Q.11 To delete a particular column in a relation the command used is:

(A) UPDATE

 (B) DROP

(C) ALTER

 (D) DELETE

Ans: C

Q.12 The ______ operator is used to compare a value to a list of literals values that have been specified.

(A) BETWEEN

 (B) ANY

(C) IN

 (D) ALL

Ans: A

Q.13 A logical schema

A) is the entire database

B) is a standard way of organizing information into a accessible part

C) describe how data is actually stored on disk

D) none of these

Ans: D

Q.14 A B-tree of order m has maximum of _____________ children

(A) m

 (B) m+1

(C) m-1

 (D) m/2

Ans: A

Q.15 _____________ function divides one numeric expression by another and returns the remainder.

(A) POWER

 (B) MOD

(C) ROUND

 (D) REMAINDER

Ans: B

Q.16 A data manipulation command the combines the records from one or more tables is called

(A) SELECT

 (B) PROJECT

(C) JOIN

(D) PRODUCT

Ans: C

Q.17 In E-R diagram generalization is represented by

(A) Ellipse

 (B) Dashed ellipse

(C) Rectangle

 (D) Triangle

Ans: D

Q.18 _________ is a virtual table that draws its data from the result of an SQL SELECT statement.

(A) View

 (B) Synonym

(C) Sequence

 (D) TrAnsaction

Ans: A

Q.19 The method of access which uses key trAnsformation is known as

(A) Direct

(B) Hash

(C) Random

(D) Sequential

Ans: B

Q.20 A table joined with itself is called

(A) Join

(B) Self Join

(C) Outer Join

 (D) Equi Join

Ans: B

Q.21 _________ data type can store unstructured data

(A) RAW

(B) CHAR

(C) NUMERIC

 (D) VARCHAR

Ans: A

Q.22 A storage device that is connected directly to a netwok ia an example of ______________

a. network attached storage

b. storage area network

c. direct attached storage

d. RAID

Ans: A

Q.23 A tape library will use a robotic component called a(n) ___________ to change and store multiple tape cartridges

a. RAID

B. Backup device

c. redundant system

d. Auto loader

Ans: D

Q.24 More than one of the same component is an example of a ______________ system

a. Scalable

b. redundant

c. RAID

d. back up

Ans: B

Q.25 Which type of database stores data in two – dimensional tables?

a. Network

b. Hierarchical

c. Table

d. Relational

ANSWER KEY

Ans: D

General Computer Test - 115

 

Q.1 It is better to use files than a DBMS when there are

(A) Stringent real-time requirements.

(B) Multiple users wish to access the data.

(C) Complex relationships among data.

(D) All of the above.

Ans: B

Q.2 The conceptual model is

(A) dependent on hardware.

(B) dependent on software.

(C) dependent on both hardware and software .

(D) independent of both hardware and software.

Ans: D

Q.3 What is a relationship called when it is maintained between two entities?

(A) Unary

 (B) Binary

(C) Ternary

(D) Quaternary

Ans: B

Q.4 Which of the following operation is used if we are interested in only certain columns of a table?

(A) PROJECTION

 (B) SELECTION

(C) UNION

(D) JOIN

Ans: A

Q.5 Which of the following is a valid SQL type?

(A) CHARACTER

 (B) NUMERIC

(C) FLOAT

 (D) All of the above

Ans: D

Q.6 The RDBMS terminology for a row is

(A) tuple.

(B) relation.

(C) attribute.

(D) degree.

Ans: A

Q.7 Which of the following operations need the participating relations to be union compatible?

(A) UNION

(B) INTERSECTION

(C) DIFFERENCE

 (D) All of the above

Ans: D

Q.8 The full form of DDL is

(A Dynamic Data Language

(B) Detailed Data Language

(C) Data Definition Language

 (D) Data Derivation Language

Ans: C

Q.9 Which of the following is an advantage of view?

(A) Data security

 (B) Derived columns

(C) Hiding of complex queries

 (D) All of the above

Ans: D

Q.10 Which of the following is a legal expression in SQL?

(A) SELECT NULL FROM EMPLOYEE;

(B) SELECT NAME FROM EMPLOYEE;

(C) SELECT NAME FROM EMPLOYEE WHERE SALARY = NULL;

(D) None of the above

Ans: B

Q.11 The users who use easy-to-use menu are called

(A) Sophisticated end users.

(B) Naïve users.

(C) Stand-alone users.

(D) Casual end users.

Ans: B

Q.12 Which database level is closest to the users?

(A) External

 (B) Internal

(C) Physical

(D) Conceptual

Ans: A

Q.13 Which are the two ways in which entities can participate in a relationship?

(A) Passive and active

 (B) Total and partial

(C) Simple and Complex

 (D) All of the above

Ans: B

Q.14 The result of the UNION operation between R1 and R2 is a relation that includes

(A) all the tuples of R1

(B) all the tuples of R2

(C) all the tuples of R1 and R2

(D) all the tuples of R1 and R2 which have common columns

Ans: D

Q.15 Which of the following is a comparison operator in SQL?

(A) =

(B) LIKE

(C) BETWEEN

 (D) All of the above

Ans: D

Q.16 A set of possible data values is called

(A) attribute.

 (B) degree.

(C) tuple.

 (D) domain.

 

Ans: D

Q.17 Which of the operations constitute a basic set of operations for manipulating relational data?

(A) Predicate calculus

(B) Relational calculus

(C) Relational algebra

 (D) None of the above

Ans:C

Q.18 Which of the following is another name for weak entity?

(A) Child

 (B) Owner

(C) Dominant

(D) All of the above

Ans: A

Q.19 Which of the following database object does not physically exist?

(A) base table

 (B) index

(C) view

(D) none of the above

Ans: C

Q.20 NULL is

(A) the same as 0 for integer

(B) the same as blank for character

(C) the same as 0 for integer and blank for character

(D) not a value

Ans: D

Q.21 Which of the following is record based logical model?

(A) Network Model

 (B) Object oriented model

(C) E-R Model

(D) None of these

Ans: A

Q.22 A data dictionary is a special file that contains:

(A) The name of all fields in all files.

(B) The width of all fields in all files.

(C) The data type of all fields in all files.

(D) All of the above.

Ans: D

Q.23 A file manipulation command that extracts some of the records from a file is called

(A) SELECT

 (B) PROJECT

(C) JOIN

 (D) PRODUCT

Ans: A

Q.24 The physical location of a record is determined by a mathematical formula that transforms a file key into a record location is :

(A) B-Tree File

 (B) Hashed File

(C) Indexed File

(D) Sequential file.

Ans: B

Q.25 Using Relational Algebra the query that finds customers, who have a balance of over 1000 is

(A) PCustomer_name(s balance &gt;1000(Deposit))

(B) s Customer_name(Pbalance &gt;1000(Deposit))

(C) PCustomer_name(s balance &gt;1000(Borrow))

(D) s Customer_name(Pbalance &gt;1000(Borrow))

Ans: A

General Computer Test - 114

 

Q.1 The DBMS language component which can be embedded in a program is

(A) The data definition language (DDL).

(B) The data manipulation language (DML).

(C) The database administrator (DBA).

(D) A query language.

Ans: B

Q.2 A relational database developer refers to a record as

(A) a criteria.

 (B) a relation.

(C) a tuple.

(D) an attribute.

Ans: C

Q.3 The relational model feature is that there

(A) is no need for primary key data.

(B) is much more data independence than some other database models.

(C) are explicit relationships among records.

(D) are tables with many dimensions.

Ans: B

Q.4 Conceptual design

(A) is a documentation technique.

(B) needs data volume and processing frequencies to determine the size of the database.

(C) involves modelling independent of the DBMS.

(D) is designing the relational model.

Ans:C

Q.5 The method in which records are physically stored in a specified order according to a key field in each record is

(A) hash.

(B) direct.

(C) sequential.

(D) all of the above.

Ans: A

Q.6 A subschema expresses

(A) the logical view.

 (B) the physical view.

(C) the external view.

(D) all of the above.

Ans: C A subschema expresses the external view.

Q.7 Count function in SQL returns the number of

(A) values.

(B) distinct values.

(C) groups.

(D) columns.

Ans: A Count function in SQL returns the number of values.

Q.8 Which one of the following statements is false?

(A) The data dictionary is normally maintained by the database administrator.

(B) Data elements in the database can be modified by changing the data dictionary.

(C) The data dictionary contains the name and description of each data element.

(D) The data dictionary is a tool used exclusively by the database administrator.

Ans: B

Q.9 An advantage of the database management approach is

(A) data is dependent on programs.

(B) data redundancy increases.

(C) data is integrated and can be accessed by multiple programs.

(D) none of the above.

Ans: C

Q.10 A DBMS query language is designed to

(A) support end users who use English-like commands.

(B) support in the development of complex applications software.

(C) specify the structure of a database.

(D) all of the above.

Ans: D

Q.11 TrAnsaction processing is associated with everything below except

(A) producing detail, summary, or exception reports.

(B) recording a business activity.

(C) confirming an action or triggering a response.

(D) maintaining data.

Ans: C

Q.12 It is possible to define a schema completely using

(A) VDL and DDL.

 (B) DDL and DML.

(C) SDL and DDL.

(D) VDL and DML.

Ans: B

Q.13 The method of access which uses key trAnsformation is known as

(A) direct.

(B) hash.

(C) random.

 (D) sequential.

Ans: B

Q.14 Data independence meAns

(A) data is defined separately and not included in programs.

(B) programs are not dependent on the physical attributes of data.

(C) programs are not dependent on the logical attributes of data.

(D) both (B) and (C).

Ans: D both (B) and (C)

Q.15 The statement in SQL which allows to change the definition of a table is

(A) Alter.

(B) Update.

(C) Create.

(D) select.

Ans: A

Q.16 E-R model uses this symbol to represent weak entity set ?

(A) Dotted rectangle.

(B) Diamond

(C) Doubly outlined rectangle

(D) None of these

Ans: C

Q.17 SET concept is used in :

(A) Network Model

(B) Hierarchical Model

(C) Relational Model

(D) None of these

Ans: A

Q.18 Relational Algebra is

(A) Data Definition Language .

(B) Meta Language

(C) Procedural query Language

(D) None of the above

Ans: C

Q.19 Key to represent relationship between tables is called

(A) Primary key

 (B) Secondary Key

(C) Foreign Key

(D) None of these

Ans: C

Q.20 _______ produces the relation that has attributes of R1 and R2

(A) Cartesian product

 (B) Difference

(C) Intersection

(D) Product

Ans: A

Q.21 The file organization that provides very fast access to any arbitrary record of a file is

(A) Ordered file

 (B) Unordered file

(C) Hashed file

 (D) B-tree

Ans: C

Q.22 DBMS helps achieve

(A) Data independence

(B) Centralized control of data

(C) Neither (A) nor (B)

 (D) both (A) and (B)

Ans: D

Q.23 Which of the following are the properties of entities?

(A) Groups

(B) Table

(C) Attributes

 (D) Switchboards

Ans: C

Q.24 In a relation

(A) Ordering of rows is immaterial

(B) No two rows are identical

(C) (A) and (B) both are true

(D) None of these.

Ans: C

Q.25 Which of the following is correct:

(A) a SQL query automatically eliminates duplicates.

(B) SQL permits attribute names to be repeated in the same relation.

(C) a SQL query will not work if there are no indexes on the relations

(D) None of these

Ans: D

General Computer Test - 113

 

Q.1 In the relational modes, cardinality is termed as:

(A) Number of tuples.

(B) Number of attributes.

(C) Number of tables.

 (D) Number of constraints.

Ans: A

Q.2 Relational calculus is a

(A) Procedural language.

(B) Non- Procedural language.

(C) Data definition language.

(D) High level language.

Ans: B

Q.3 The view of total database content is

(A) Conceptual view.

(B) Internal view.

(C) External view.

(D) Physical View.

Ans: A

Q.4 Cartesian product in relational algebra is

(A) a Unary operator.

B) a Binary operator.

(C) a Ternary operator.

(D) not defined.

Ans: B Cartesian product in relational algebra is a binary operator.

Q.5 DML is provided for

(A) Description of logical structure of database.

(B) Addition of new structures in the database system.

(C) Manipulation &amp; processing of database.

(D) Definition of physical structure of database system.

Ans: C DML is provided for manipulation &amp; processing of database.

Q.6 ‘AS’ clause is used in SQL for

(A) Selection operation

 (B) Rename operation.

(C) Join operation.

(D) Projection operation.

Ans: B ‘AS’ clause is used in SQL for rename operation.

Q.7 ODBC stands for

(A) Object Database Connectivity.

(B) Oral Database Connectivity.

(C) Oracle Database Connectivity.

(D) Open Database Connectivity.

Ans: D

Q.8 Architecture of the database can be viewed as

(A) two levels.

(B) four levels.

(C) three levels.

 (D) one level.

Ans: C

Q.9 In a relational model, relations are termed as

(A) Tuples.

(B) Attributes

(C) Tables.

(D) Rows.

Ans:c

Q.10 The database schema is written in

(A) HLL

(B) DML

(C) DDL

(D) DCL

Ans: C

Q.11 In the architecture of a database system external level is the

(A) physical level.

(B) logical level.

(C) conceptual level

(D) view level.

Ans: D

Q.12 An entity set that does not have sufficient attributes to form a primary key is a

(A) strong entity set.

(B) weak entity set.

(C) simple entity set.

 (D) primary entity set.

Ans: B

Q.13 In a Hierarchical model records are organized as

(A) Graph.

 (B) List.

(C) Links.

 (D) Tree.

Ans: D

Q.14 In an E-R diagram attributes are represented by

(A) rectangle.

(B) square.

(C) ellipse.

 (D) triangle.

Ans: C

Q.15 In case of entity integrity, the primary key may be

(A) not Null

 (B) Null

(C) both Null &amp; not Null.

(D) any value.

Ans: A

Q.16 In tuple relational calculus P1 ®P2 is equivalent to

(A) ¬P1 Ú P2

(B) P1 Ú P2

(C) P1 Ù P2

(D) P1 Ù¬P2

Ans: A In tuple relational calculus P1 P2 is equivalent to ¬P1 Ú P2.

Q.17 The language used in application programs to request data from the DBMS is referred to as the

(A) DML

 (B) DDL

(C) VDL

 (D) SDL

Ans: A

Q.18 A logical schema

(A) is the entire database.

(B) is a standard way of organizing information into accessible parts.

(C) describes how data is actually stored on disk.

(D) both (A) and (C)

Ans: A

Q.19 Related fields in a database are grouped to form a

(A) data file.

 (B) data record.

(C) menu.

(D) bank.

Ans: B Related data fields in a database are grouped to form a data record.

(A record is a collection of related fields)

Q.20 The database environment has all of the following components except:

(A) users.

(B) separate files.

(C) database.

(D) database administrator.

Ans: A

Q.21 The language which has recently become the defacto standard for interfacing application programs with relational database system is

(A) Oracle.

 (B) SQL.

(C) DBase.

(D) 4GL.

Ans: B

 

Q.22 The way a particular application views the data from the database that the application uses is a

(A) module.

 (B) relational model.

(C) schema.

 (D) sub schema.

Ans: D

Q.23 In an E-R diagram an entity set is represent by a

(A) rectangle.

 (B) ellipse.

(C) diamond box.

 (D) circle.

Ans: A

Q.24 A report generator is used to

(A) update files.

(B) print files on paper.

(C) data entry.

(D) delete files.

Ans: B

Q.25 The property / properties of a database is / are :

(A) It is an integrated collection of logically related records.

(B) It consolidates separate files into a common pool of data records.

(C) Data stored in a database is independent of the application programs using it.

(D) All of the above.

Ans: D

General Computer Test - 112

 

1. Information has three dimensions. There are

a. Time, consent, and form

b. Time, content and form

c. Cost, content and form

d. Time, content and Value

2. According to your text book, the emerging class of applications focuses on personalized decision support, modeling, information retrieval, data warehousing, what-if scenarios and reporting is called :

a. Decision Support Trends

b. Decision Support History

c. Decision Support models

d. Decision Support class

3. The growth of corporate intranets, extranets, as well as the web, has accelerated the development and use of “executive class” information delivery and decision support software tools by lower levels of management and by individuals and teams of business professionals. This dramatic expansion has opened the door to the use of which of the following tool?

a. Business Intelligence(BI)

b. Business Knowledge (BK)

c. Business Ideas (BI)

d. Business Intelligent(BI)

4. According to your text book, the Decision support systems use all of the following EXCEPT :

a. Analytical models

b. Specialized databases

c. Online transaction processing

d. A decision makers own insight and judgments

e. An interactive, computer based modeling process to support the making of semistructured business decision.

5. _________________ were the original type of information system developed to support managerial decision making. An MIS produces information.

a. Management information systems

b. Decision Support systems

c. Management Tracking Systems

d. Strategic Information System

6. Which of the following involves analyzing complex relationships among thousands or even millions of data items stored in data marts, data warehouses, and other multidimensional databases to discover patterns, trends, and exception conditions?

a. OLTP

b. OLAP

c. OISE

d. OLALA

7. _______________represent complex data using interactive three-dimensional graphical forms such as charts, graphs and maps.

a. Data entry systems

b. Data Analysis systems

c. Database Management

d. Data visualization systems

8. Another name of goal seeking analysis is :

a. How to

b. How can

c. Why not

d. What’s up

9. Decision support system involves all of the following types of analytical modeling activities except?

a. What-if analysis

b. Sensitivity analysis

c. Goal-seeking analysis

d. Heuristics

e. Optimization analysis

10. In which of the following types of analysis, the value of only one variable is changed repeatedly, and the resulting changes on other variables are observed.

a. what if analysis

b. sensitivity analysis

c. Goal seeking analysis

d. None of these

11. In which of the following types of analysis, the goal is to find the optimum value for one or more target variables, given certain constraints?

a. what if analysis

b. optimization

c. Goal seeking analysis

d. None of these

12. ________________ is one of the most common and useful types of data mining for marketing. The purpose of market basket analysis is to determine what products customers purchase together with other products.

a. Market Box Analysis (MBA)

b. Market of Business Administration (MBA)

C. Market Bazar analysis (MBA)

D. Marketing information system

13. The first goal of executive information system is to provide top executives with immediate and easy access to information about a firm’s______________,that is,key factors that are critical to information about a firm’s that is key factors that are critical to accomplishing an organizations strategic objectives.

a. Critical success factors (CSFs)

B. Critical accomplishing factors (CAFs)

C. Critical executive system (CECs)

D. None of these

14. “ A user checks his email , looks up the current company stock price, checks his available vacation days, and receives an order from a customer-all from the browser on his desktop. That is the next – generation intranet,also known as:

a. corporate or enterprise information system

b. corporate or enterprise homepage

c. Corporate or enterprise homepage

d. None of the above

15. In many organizations, hypermedia database at corporate intranet websites have become the knowledge bases for storage and dissemination of business knowledge.

a. true

b. False

16. ___________ is a field of science and technology based on disciplines such as computer science, biology, psychology, linguistics, mathematics and engineering.

a. Natural intelligence

b. Artificial intelligence

c. Articulate intelligence

d. None of the above

17. ___________ involves using multi- sensory human – computer interface that enable human users to experience computer – simulated objects, spaces, activities, and “words” as if they actually exist

a. virtual office

b. virtual reality

c. Real reality

d. Reality

18. The components of an expert system include a ________________ that perform interfaces on the knowledge base and communicate answers to a user’s question?

a. Database and software module

b. knowledge base and software module

c. communication base and software module

d. knowledge base and interactive module

19. Information systems are composed of _________________ basic components.

a. Four

b. three

c. two

d. Many

20. The human order take cam be bypassed when using a(n)

a. Office automation system

b. Management information

c. transaction processing system

d. decision support system

21. The _________ can help you choose a product

a. Office automation system

b. Management information system

c. Transaction processing

d. decision support system

22. The expert system uses a(n) ____________ to select the most appropriate response

a. inference

b. decision support system

c. knowledge base

d. data source

23. An intranet that is accessible by outside workers.

a. firewall

b. extranet

c. management information system

d. P2PN

24. _____________ is the capability to continue as if nothing has happended, even after a major component failure

a. redundancy

b. interoperability

c. fault tolerance

d. back up

25. striping with parity is also known as RAID____________

a.0

b.1

c.4

d.6

1.B  2.A  3. A  4. C  5. A  6. B  7.D  8. B  9. D  10. B

11. B  12. A  13. A  14. B  15. A  16. B  17. B  18. B  19. B  20. C

21. D  22. A  23.B  24. C  25. C

General Computer Test - 111

 

1. Deciding where to locate new production facilities is a(n) example of a manufacturing and production information system operating at the:

a. Operational level

b. Strategic Operational level

c. Management level

d. Knowledge level

2. Preparing short-term budgets is an example of a finance and accounting information system operating at the:

a. Operational level

b. Management level

c. Knowledge level

d. Strategic level

3. Tracking employee training, skills, and performance appraisals is an example of a human resource information system operating at the:

a. Operational level

b. Management level

c. Knowledge level

d. Strategic level

4. Assembling a product, identifying customers and hiring employees are :

a. Transactions

b. Phases

c. Business processes

d. Business functions

5. Which of the followwing is a network of facilities for procuring materials, transforming raw materials inti intermediate and finished products, and distributing the finished products to customers?

a. Production Chain

b. Primary Chain

c. Supply Chain

d. Distribution Chain

6. Information systems can facilitate supply chain management by:

a. Tracking the status

b. Rapidly communicating orders

c. Providing product specifications

d. Doing all of the above

7. Enterprise systems support

a. Manufacturing processes

b. Financial and accounting processes

c. Human resource processes

d. All of the above

8. A computer security protocol for logging in would be an example of the __________________ component of an information system.

a. Software

b. Hardware

c. Data

d. Procedure

9. Customer numbers and their names would be an example of the ______________ component of an order management information system.

a. Software

b. Hardware

c. Data

d. Procedure

10. No routine cognitive skills include :

a. Communication

b. Problem – solving

c. Abstract reasoning

d. Collaboration

e. All of the above

11. The quality of your ___________________is a large part of the quality of your information system.

a. Computer

 b. Thinking

c. Time

d. Challenges

12. Which of the following is not a characteristic of good information?

a. Interchangeability

b. Relevance

c. Cost effectiveness

d. Timeliness

13. If you are a _____________ recipients of sensitive information, such as might be overheard or contained in a misdirected email, this would not be illegal, but might be unethical to use it.

a. Active

b. Passive

c. Proper

d. Business

14. A human order taker can be bypassed when using a (n) ____________________

a. Office automation system

b. Management information system

c. Transaction processing system

d. Decision support system

15. Data mining cannot be done if

a. Operational data has not been archived

b. Earlier management decisions are not available

c. The organization is large

d. All processing had been only batch processing

16. Batch processing is preffered over on – line transaction processing when

a. Processing efficiency is important

b. The volume of data to be processed is large

c. Only periodic processing is needed

d. A large number of queries are to be processed

1. i,ii

2. i,iii

3. ii,iii

4. i,ii,iii

17.On-line transaction processing is used when

1. It is required to answer random queries

2. It is required to ensure correct processing

3. All files are available on-line

4. All files are stored using hard disk

a. i,ii

b. i,iii

c. ii,iii,iv

d. I,ii,iii

18. Which is not a domain of Artificial Intelligence?

a. Virtual Reality

b. Intelligent Agents

c. Expert System

d. None of the above

19. Which one of the following is used for evaluating credit risks?

a. Virtual Reality

b. Neural Network

c. Fuzzy logic

d. None of the above

20. Which computer based model is developed after human brain?

a. Fuzzy logic

b. Neural Network

c. Virtual Reality

d. All of the above

21. Knowledge based system supports _________________

a. Knowledge of creation

b. Knowledge of support

c. Knowledge of Dissemination

d. All of the above

22. Which of the system uses Multidimensional data analysis?

a. DSS

b. MIS

c. ESS

d. All of the above

23. Cybernetic system is the one which is

a. Self Monitoring

b. Self controlling

c. Self regulating

d. All of the above

24. Which of the following level of managers develop short-and medium-range plans, schedules, and budgets and specify the policies, procedures, and business objectives for their sub – units of the company?

a. Strategic

b. Tactical

c. Operational

d. Front Line

25. Information that is outdated, inaccurate, or hard to understand would be very meaningful, useful, or valuable to you or other business professionals.

a. True

b. False

1. D  2. B  3. A  4. C  5. C

6. D  7. D  8. D  9. C  10. E  11. B  12. A  13. B  14. C  15. A

16.D  17. B  18.D  19.B  20.B  21.D  22.A  23. D  24.B  25. A

General Computer Test - 110

 

1. Relational calculus is a

a. Procedural language.

b. None- Procedural language.

c. Data definition language.

d. High level language.

2. The view of total database content is

a. Conceptual view

b. Internal view.

c. External view.

d. Physical view.

3. DML is provided for

a. Description of logical structure of database.

b. Addition of new structure in the database system.

c. Manipulation &processing of database.

d. Definition of physical structure of database system.

4. ODBC stands for

a. Object Database Connectivity.

b. Oral Database Connectivity

c. Oracle Database Connectivity.

d. Open Database Connectivity.

5. Architecture of the database can be viewed as

a. Two levels.

b. Four levels.

c. Three levels.

d. One level.

6. The database schema is written in

a. HLL

b. DML

c. DDL

d. DCL

7. In the architecture of a database system external level is the

a. Physical level.

b. Logical level.

c. Conceptual level

d. View level.

8. In a Hierarchical level model records are organized as

a. Graph.

b. List .

c. Links.

d. Tree.

9. The language used in application programs to request data from the DBMS is referred to as the

a. DML

b. DDL

c. VDL

d. SDL

10. The DBMS language component which can be embedded in a program is

a. The data definition language (DDL)

b. The data manipulation language(DML)

c. The database administrator(DBA)

d. A query language.

11. Which one of the following statement is false?

a. The data dictionary is normally maintained by the database administrator.

b. Data elements in the database can be modified by changing the data dictionary.

c. The data dictionary contains the name and description of each data element.

d. The data dictionary is a tool used exclusively by the database administrator.

12. An advantage of the database management approach is

a. Data is dependent on programs.

b. Data redundancy increase.

c. Data is integrated and can be accessed by multiple programs.

d. None of the above.

13. A DBMS query language is designed to

a. Support end users who use English-like commands.

b. Support in the development of complex applications software.

c. Specify the structure of a database.

d. All of the above.

14. Key to represent relationship between tables is called

a. Primary key

b. Secondary Key

c. Foreign Key

d. None of these

15. The full form of DDL

a. Dynamic Data Language

b. Detailed Data Language

c. Data Definition Language

d. Data Derivation Language

16. Which database level is closest to the users?

a. External

b. Internal

c. Physical

d. Conceptual

17. Hierarchical model is also called

a. Tree structure

b. Plex Stucture

c. Normalize Structure

d. Table Structure

18. Information system that monitor the elementary activities and transactions of the organizations are

a. Management-level system

b. Operational-level system

c. Knowledge-level system

d. Strategic level system

19. Information systems that monitor the elementary activities and transactions of the organizations are:

a. Management-level system

b. Operation-level system

c. Knowlwdge-leve system

d. Strategic level system

20. Projections and responses to queries are information output characteristics associated with a (n)

a. DSS

b. MIS

c. ESS

d. TPS

21. Summary transaction data, high-volume data, and simple models are information inputs characteristic of a (n):

a. DSS

b. MIS

c. ESS

d. TPS

22. Which of the following individuals typically have less formal, advanced educational degrees and tend to process rather than create information?

a. Knowledge workers

b. Executives

c. System analysts

d. Data workers

23. Management information systems usually:

a. Serve managers interested in weekly, monthly, and yearly results, not day-to-day activities.

b. Help managers make decisions that are unique, rapidly changing, and not easily specified in advance.

c. Provide mangers with a generalized computing and telecommunications capacity that can be applied to a changing array of problems.

d. Perform and record the daily routine transactions necessary to the conduct of business

24. Decision support systems usually:

a. Serve managers interested in weekly, monthly, and yearly results, not day-to-day activities.

b. Help managers make decisions that are unique, rapidly changing, and not easily specified in advance.

c. Provide managers with a generalized computing and telecommunications capacity that can be applied to a changing array of problems.

d. Perform and record the daily routine transactions necessary to the conduct of business.

25. Identifying customers and markets using data on demographics, markets, consumer behavior, and trends is an example of a (n):

a. Operational-level sales and marketing information system.

b. Knowledge-level sales and marketing information system.

c. Management-level sales and marketing information system.

d. Strategic-level sales and marketing information system.

1. B  2. A  3. C  4. D  5. C  6. C  7. D  8. D  9. A  10. B

11. B  12. C  13. D  14. C  15. C  16. A  17.A  18. A  19. A  20. C

21. B  22. D  23. A  24. B  25. B

Friday, 11 December 2020

General Computer Test - 109

 

1. A set of rods where numbers were carved and used for multiplication and division aids is known as

A) Pascaline

B) Napier’s Bones

C) Stepped Reckoner

D) Slide Rule

 

2. Seek time is

A) time to position the head over proper track

B) time to position the head over proper sector

C) time to position the head over proper cylinder

D) none of above

 

3. Tape speed is measured in

A) Feet per second

B) Inch per second

C) Meter per second

D) Centimeter per second

 

4. Punched cards were first introduced by

A) Powers

B) Pascal

C) Jacquard

D) Herman Hollerith

 

5. Which computer support co-processors?

A) XT computer

B) AT computers

C) None of these

D) Both of these

6. A floppy disk contains

A) Circular tracks only

B) Sectors only

C) Both circular tracks and sectors

D) None of the above

 

7. The capacity of 3.5 inch floppy disk is

A) 1.40 MB

B) 1.44 GB

C) 1.40 GB

D) 1.44 MB

 

8. The contribution of Konrad Zuse was long ignored because

A) He made the computers secretly

B) his computers were very complicated and it took time for the people to recognize its power

C) of political reasons. He was German. D) All of the above

 

9. Any method for controlling access to or use of memory is known

A) Memory map

B) Memory protection

C) Memory management

D) Memory instruction

 

10. In what respect computers are superior to human beings?

A) Diligence

B) Intelligence

C) Both of above

D) None of above

 

11. Com in Latin is

A) intensifying prefix

B) intensifying suffix

C) a term that means to reckon

D) None of above

 

12. The system unit of a personal computer typically contains all of the following except:

A) Microprocessor

B) Disk controller

C) Serial interface

 D) Modem

 

13. Which of the following is related to fifth generation computers?

A) Knowledge information processing system

B) Very large scale integration (VLSI)

C) Both of above

D) Only b

 

14. The process of starting a or restarting a computer system by loading instructions from a secondary storage device into the computer memory is called

A) Duping

 B) Booting

C) Padding

D) CPS

 

15. MSI stands for

A) Medium Scale Integrated Circuits

B) Medium System Integrated Circuits

C) Medium Scale Intelligent Circuit

D) Medium System Intelligent Circuit

 

16. A Pixel is

A) A computer program that draws picture

B) A picture stored in secondary memory

C) The smallest resolvable part of a picture

D) None of these

 

17. A/n Device is any device that provides information, which is sent to the CPU

A) Input

B) Output

C) CPU

D) Memory

 

18. What was the nick name of the computer used by the Americans in 1952 for their H-bomb project?

A) ENIAC

B) EDSAC

C) MANIAC

D) UNIVAC

 

19. Which is the type of memory for information that does not change on your computer?

A) RAM

B) ROM

C) ERAM

D) RW / RAM

 

20. LSI, VLSI &amp; ULSI chips were used in which generation?

A) First

B) Second

C) Third

D) Fourth

 

21. Which of the following is the largest manufacturer of Hard Disk Drives?

A) IBM

B) Seagate

C) Microsoft

D) 3M

 

22. Networking such as LAN, MAN started from

A) First generation

B) Second generation

C) Third generation

D) Fourth generation

 

23. Which characteristic of computer distinguishes it from electronic calculators?

A) Accuracy

B) Storage

C) Versatility

D) Automatic

 

24. Which of the following registers is used to keep track of address of the memory location where the next instruction is located?

A) Memory address register

B) Memory data register

C) Instruction register

D) Program counter

 

25. Which of the following is not the classification of computers based on application?

A) Electronic Computers

B) Analog Computers

C) Digital Computers

D) Hybrid Computers

1-B        2-A        3-B        4-D        5-B        6-C        7-D        8-C        9-B        10-A

11-A      12-D      13-A      14-B      15-A      16-C      17-A      18-C      19-B      20-D

21-B      22-D      23-C      24-D      25-A