Fechar

Квиз))

Questão 1 de 200

1

1. The PEAR DB functions can be accessed using DB::<function_name>.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 2 de 200

1

2. The string argument of the function for connecting to a database is of the format <DBMS software>://<user account>:<password>@<database server>

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 3 de 200

1

3. The PEAR DB functon for connecting to a database is called DB::linkto database('string').

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 4 de 200

1

4. The DBMS software in <DBMS software>://<user account>:<password>@<database server> stands for the particular DBMS software package being connected to: for example mysqli for versions of MySQL starting with version 4.1.2

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 5 de 200

1

5. The PEAR DB function DB::is Error can be used to determine whether any database access operation was successful or not.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 6 de 200

1

6. In PHP, an _____ array provides pairs of key=>value elements; the value of an element is referenced through its key and all key values in a particular array must be unique.

Selecione uma das seguintes:

  • a) Numeric

  • b) Value

  • c) String

  • d) Associative

Explicação

Questão 7 de 200

1

7. Multi-line PHP comments start with // and end with #.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 8 de 200

1

8. PHP written in C and usually comes installed with Unix: for other operating systems, the PHP interpreter can be downloaded from http://www.php.net

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 9 de 200

1

9. The PHP start tag is <?php and end the tag is ?>.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 10 de 200

1

10. Web pages, where part of the information is extracted from databases or other data source, are called dynamic Web pages

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 11 de 200

1

11. In PHP, a ____ array associates a numeric index with each element in the array

Selecione uma das seguintes:

  • a) Numeric

  • b) Associated

  • c) Variable

  • d) String

Explicação

Questão 12 de 200

1

12. PHP variable names start with a $ sign and can include characters, numbers, and the underscore character

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 13 de 200

1

13. Interpolating variables occurs only within single-quoted strings.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 14 de 200

1

14. PHP programs are executed on the client.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 15 de 200

1

15. The auto-global predefined PHP variable $_POST is an array that holds all the values entered through form parameters.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 16 de 200

1

16. The JDBC _____ libraries are called java.sql.*

Selecione uma das seguintes:

  • a) Method

  • b) Function

  • c) Class

Explicação

Questão 17 de 200

1

17. JDBC does not distinguish between queries that return single tuples and those that return multiple tuples.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 18 de 200

1

19. The use of function calls is a more dynamic approach for database programming than embedded SQL.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 19 de 200

1

20. A _____ object is similar to a cursor in embedded SQL and an iterator in SQLJ.

Selecione uma das seguintes:

  • a) Procedure

  • b) Function call

  • c) Result Set

Explicação

Questão 20 de 200

1

21. _____ is the part of the SQL standard that specifies how to write persistent stored modules.

Selecione uma das seguintes:

  • a) SQL/PSM

  • b) XML

  • c) SQLJ

  • d) ResultSet

Explicação

Questão 21 de 200

1

22. Database stored procedures (aka persistent stored modules) are stored and executed by the DBMS at the database server.

Selecione uma das seguintes:

  • True

  • False

Explicação

Questão 22 de 200

1

23. Discuss advantages and diadvantages to the library of function calls approach

Selecione uma ou mais das seguintes:

  • a) Disadvantage are the loss of flexibility in changing the query at runtime and that all changes to queries must be recompiled.

  • b) The main advantage is flexibility in generating queries at runtime. Also, the library of function calls approach is able to call multiple data program.

  • c) The main advantage is flexibility in generating queries at compile time. Also, the library of function calls approach is able to call multiple single program.

  • d) Disadvantages are more complex programming, inability to do checking at compile time, and concerns about SQL runtime errors.

  • e) The main advantage is the query text is part of source code and can be checked for syntax errors and validated against the data. The program is quite readable.

Explicação

Questão 23 de 200

1

24. It is necessary to have a binding between the data types of the programming language and the attribute data types in the data model

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 24 de 200

1

25. In SQLJ, embedded SQL commands are preceded by #sql.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 25 de 200

1

27. One advantage of using an SQLJ translator is that it is not necessary to install drivers such as a JDBC driver.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 26 de 200

1

28. Describe the three main approaches for database programming.

Selecione uma ou mais das seguintes:

  • a) Using a library of database functions. This approach provides what is known as an application programming interface (API) for accessing a database from applications programs.

  • b) Using a library of database methods. This approach provides what is known as an application programming interface (API) for accessing a database from applications programs

  • c) Embedded SQL. Embeding database commands in a general-purpose programming language. A preprocessor extracts the embedded SQL from the source code and replaces it with function calls to DBMS-generated code.

  • d) Embedded SQL. Embeding database commands in a specific-purpose programming language. A preprocessor can not extract code, but function calls to be extracted to DBMS-generated code.

  • e) Designing a new database programming language.

  • f) Embedded SQL. Embeding database commands in a specific-purpose programming language. A preprocessor extracts the embedded SQL from the source code and replaces it with function calls to DBMS-generating code

Explicação

Questão 27 de 200

1

29. In XML _____ defines the set of commands (names) that can be used

Selecione uma das seguintes:

  • a) Namespace

  • b) Valid

  • c) Document

  • d) Invalid

Explicação

Questão 28 de 200

1

30. In XML schema, the tag _____ is used tospecify primary keys.

Selecione uma das seguintes:

  • a) xs:element

  • b) xsd:key

  • c) psd:schema

  • d) xs:sequence

Explicação

Questão 29 de 200

1

31. A * following an element name means the element can be repeated zero or one times (an optional, single-valued, nonrepeating elements)

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 30 de 200

1

32. If an XML document is well-formed and follows a particular schema, it is _____

Selecione uma das seguintes:

  • a) Namespace

  • b) Keys

  • c) Invalid

  • d) Valid

Explicação

Questão 31 de 200

1

33. The XML schema, it is possible to specify constraints that correspond to unique and primary key constraints ina relational database, as well as foreign keys constraints

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 32 de 200

1

34. An element that does not have *, +, or ? following the element name means the element must appear exactly once in the document (a required, single-valued, nonrepeating element).

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 33 de 200

1

35. A ? following an element name means that element can be repeated zero or more times in the document (an optional, mult-valued, repeating element).

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 34 de 200

1

36. The basic object in XML is the XML document, which is structured using types and iterators.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 35 de 200

1

37. How does a well-formed XML document look like?

Selecione uma ou mais das seguintes:

  • a) It is syntactically correct: a non-single root element with every element including a matching pair of start/end tags within the start-end of the parent element

  • b) It must finish with an XML declaration to indicate the version of XML.

  • c) It is syntactically correct: a single root element with every element including a matching pair of start/end tags within the start-end tags of the parent element

  • d) It is syntactically correct: a single root element with every element except a matching pair of start/end tags within the start-end tags of the parent elements

  • e) It must start with an XML declaration to indicate the version of XML

Explicação

Questão 36 de 200

1

38. Struct type constructors include the set (T), list (T), bag(T), array(T), and dictionary (K,T) type constructors.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 37 de 200

1

39. Three major differences between the relational and object database design.

Selecione uma ou mais das seguintes:

  • a) In ODB design a binary relationship can be declared in one direction or both. If attributes are included in both directions, there is a potential problem with redundancy.

  • b) In ODB design a binary relationship can be declared in one direction or both. If attributes are included in both directions, there is no any problem

  • c) In an ODB, operations must be defined early since they are part of the classes specifications. In RDBs, operations may not be defined until implementation

  • d) In RDB inheritance is built into the model; ODBs do not have built-in constructs for inheritance.

  • e) In an RDB, operations must be defined early since they are part of the class specifications. In an ODB, operations may not be defined until implementation

  • f) In ODB inheritance is built into the model; RDBs do not have built-in constructs for inheritance.

Explicação

Questão 38 de 200

1

40. The typical mechanisms for making an object an object persistent are naming and reachability.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 39 de 200

1

41. The main property required of an OID is that it be immutable (should not change).

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 40 de 200

1

42. _____ inheritance occurs when a subtype inherits only some of the functions of a supertype.

Selecione uma das seguintes:

  • a) Generalisation

  • b) Complete encapsulation

  • c) Conditional

  • d) Selective

Explicação

Questão 41 de 200

1

43. In operator overloading (or polymorphism), an operation name may refer to several distinct implementations, depending on the type of object it is applied to.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 42 de 200

1

44. In ______ all operations that can be applied to an object must be predefined.

Selecione uma das seguintes:

  • a) Half encapsulation

  • b) Complete encapsulation

  • c) Object identifier

  • d) Feedback loop

Explicação

Questão 43 de 200

1

45. The implementation of an operation is called its signature.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 44 de 200

1

46. A subtype is used when a new type is needed that is similar but not identical to an already defined type.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 45 de 200

1

47. The dictionary constructor creates a collection of two tupes (K,V) where the value of a key K can be used to retrieve the can be used to retrieve the corresponding value V.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 46 de 200

1

48. An ODMS provides a unique identity to each independent object in the database via a unique, system-generated ____.

Selecione uma das seguintes:

  • a) Selective

  • b) Complete encaplsulation

  • c) Object identifier

Explicação

Questão 47 de 200

1

49. An object typically has three components: state, timing, and behavior

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 48 de 200

1

50. The 80-20 rule suggests that 80% of the workload is presented by 20% of the most frequently used transactions, which govem the physical database design.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 49 de 200

1

51. The phases (or activities) of the life cycle are not strictly in sequence; ______ are common among and within the phases of the life cycle.

Selecione uma das seguintes:

  • a) One-shot

  • b) Requirements collection

  • c) Feedback loop

  • d) View integration

Explicação

Questão 50 de 200

1

52. In the _____ approach to schema design, a scheme is designed for each user group or application based phase, these schemas are merged into a global conecptual schema.

Selecione uma das seguintes:

  • a) Requirements analysis

  • b) Feedback loops

  • c) Feasibility analysis

  • d) One-shot

  • e) View integration

Explicação

Questão 51 de 200

1

53. A large database typically has large transaction volumes and rates, is used in service sector industries, and runs 24/7

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 52 de 200

1

54. Many organizations use data dictionary systems (information repositories) to manage meta-data, i.e., data that describes the database structure, constraints, applications, authorizations, users, and so forth.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 53 de 200

1

55. What are the three goals of database design?

Selecione uma ou mais das seguintes:

  • a) Satisfy the information content requirements of the generalised users and applications.

  • b) Support result

  • c) Support processing requirements and any performance objectives.

  • d) Provide a natural and easy-to-understand structuring of the information.

  • e) Satisfy the information content requirements ofthe specified users and applications.

  • f) Provide a comlicated structuring of the information.

Explicação

Questão 54 de 200

1

56. _______ involves interacting with potential users and user groups to identify their particular problems and needs.

Selecione uma das seguintes:

  • a) view-integration

  • b) requirements collection and analysis

  • c) feasibility analysis

  • d) one-shot

  • e) feedback loop

Explicação

Questão 55 de 200

1

57. A transaction processing system can be characterized as one with several dozen gigabytes of data and a schema with more than 30 or 40 distinct entity types

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 56 de 200

1

58. Identify the three criteria to guide the choice of physical database design options

Selecione uma ou mais das seguintes:

  • a) Space utisilation

  • b) Availability of vendor services

  • c) Transaction throughput

  • d) Response time

  • e) Familiarity of personnel with the system

Explicação

Questão 57 de 200

1

59. Identify the three factors to consider in choosing one DBMS over another

Selecione uma ou mais das seguintes:

  • a) Space utisilation

  • b) Organization-wide adoption of a certain philosophy (data model, vendor, methodology, tools)

  • c) Availability of vendor services

  • d) Transaction throughput

  • e) Response time

  • f) Familiarity of personnel with the system

Explicação

Questão 58 de 200

1

60. _____ is concerned with analyzing potential application areas, identifying the economics of information gathering and dissemination, performing preiliminary cost-benefit studies, determining the complexity of data and processes, and setting up priorities among applications.

Selecione uma das seguintes:

  • a) Feasibility analysis

  • b) Requirements collection and analysis

  • c) View integration

  • d) One-shot

  • e) Feedback loops

Explicação

Questão 59 de 200

1

61. The initial requirements can be expected to be formal, complete, consistent, and correct.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 60 de 200

1

62. In the ______ schema design approach, the requirements from the different stakeholders are merged into a single set of requirements before the schema design begins.

Selecione uma das seguintes:

  • a) Requirements collection

  • b) Feedback loop

  • c) Centralized (or one-shot)

  • d) Requirements analysis

Explicação

Questão 61 de 200

1

63. What two things does minimizing redundancy imply?

Selecione uma ou mais das seguintes:

  • a) Reducing the need for multiple updates to maintain consistency across multiple copies of the same information.

  • b) Reducing the redundant information in tuples.

  • c) Making sure the semantics of the attributes is clear in the schema

  • d) Minimizing redundant storage of the same information

  • e) Disallowing the possibility of generating spurious tuples

Explicação

Questão 62 de 200

1

64. Third normal form (3NF): R is 2NF and all non-prime attributes are transively dependent on the primary key.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 63 de 200

1

65. First normal from (1NF): the domain of an attribute must include only atomic (simple, indivisible, scalar) values and the value of any attribute ina tuple must be a single value from the domain of that attribute.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 64 de 200

1

66. A functional dependency is a property of the relation schema R not of a particular legal relation state r or R, therefor it must understands the semantics of the attributes of R.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 65 de 200

1

67. Second normal form (2NF): R is 1NF and every non-prime attribute A in R is fully functionally dependent on the primary key of R

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 66 de 200

1

68. What are four informal guidelines that may be used to measure the quality of a relation schema design?

Selecione uma ou mais das seguintes:

  • a) Reducing the need for multiple updates to maintain consistency across multiple copies of the same information.

  • b) Disallowing the possibility of generating spurious tuples.

  • c) Reducing the redundant information in tuples

  • d) Reducing the NULL values in tuples

  • e) Making sure the semantics of the attributes is clear in the schema

  • f) Minimizing redundant storage of the same information

Explicação

Questão 67 de 200

1

69. Normalization of data can be considered a process of analyzing the given relation schemas based on their functional dependencies and primary keys to achieve closure on the domain space

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 68 de 200

1

71. When mapping a binary M:N relationship type R, create a new relation S to represent R, including as foreign key attributes in S the primary keys of the relations that are the perticipating entity types (their combination in S is the composite primary key of S).

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 69 de 200

1

The symbol σ (sigma) is used to denote the SELECT operator in the relational algebra

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 70 de 200

1

A EQUIJOIN uses any of the comparison operators =, <, ≤, >, ≥, or ≠.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 71 de 200

1

The symbol π (pi) is used to denote the PROJECT operation in the relational algebra.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 72 de 200

1

78. A THETA JOIN uses the comparison operator =

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 73 de 200

1

80. SQL is both a data definition language (DDL) and a data manipulation language (DML).

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 74 de 200

1

81. A key uniquely identifies a tuple in a relation.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 75 de 200

1

82. When the DELETE operation violates a contraint, the deletion must be rejected.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 76 de 200

1

83. Semantic integrity constarint may be enforced using mechanisms called triggers and assertions.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 77 de 200

1

84. If a multi-table query refers to two or more attributes with the same name, we must qualify the attribute name with the table name, e.g., TABLE.Attribute, to prevent ambiguity.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 78 de 200

1

85. A relation schema may only have one key.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 79 de 200

1

86. Tuples in a relation are ordered.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 80 de 200

1

88. The DELETE operation can violate referential integrity.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 81 de 200

1

89. The INSERT operation can violate domain constraints, key constraints, entity integrity, or referential integrity.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 82 de 200

1

90. The theortical basis of the relation data model is set theory and first-order predicate logic.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 83 de 200

1

92. Attributes that represent the same real-world concept must have identical names in different relations.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 84 de 200

1

93. When the INSERT operation violates a constraint, the default option is to reject the insertion.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 85 de 200

1

94. Attributes must have unique domains.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 86 de 200

1

95. NULL values may mean value unknown, value exits but is not available, attribute does not apply to this tuple (value undefined).

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 87 de 200

1

96. All tuples in a relation must be distinct.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 88 de 200

1

102. The $d->query function takes an SQL command as its string argument and sends it to the database server for execution.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 89 de 200

1

103. The _____ is a collection of several libraries of functions for enhancing PHP.

Selecione uma das seguintes:

  • a) DBMS

  • b) PHP Extension and Application Repository (PEAR)

  • c) MYSQL

  • d) PHP SQL

Explicação

Questão 90 de 200

1

104. The _____ variable is similar to cursor and iterator variables.

Selecione uma das seguintes:

  • a) $d->query

  • b) post

  • c) $r

Explicação

Questão 91 de 200

1

105. The abend function can be used to terminate a PHP program if there is an error.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 92 de 200

1

106. The PHP function $d->nextID creates a sequence of unique values for a particular table.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 93 de 200

1

115. The ___________ R S keeps tuple in the first {left} relation R; if no matching tuple found in S, then the attribute of S in the join are filled with NULL values

Selecione uma das seguintes:

  • o LEFT OUTER JOIN

  • o RIGHT OUTER JOIN

  • o FULL OUTER JOIN

  • o LEFT INNER JOIN

Explicação

Questão 94 de 200

1

116. If a relation schema has more than one key, each is called a _______ key.

Selecione uma das seguintes:

  • o Candidate

  • o Primary

  • o Public

  • o Foreign

Explicação

Questão 95 de 200

1

117. A ¬¬¬_________conflict arises when an attribute may have different domains in two schemas, e.g. pounds vs kilograms

Selecione uma das seguintes:

  • o Domain

  • o Type

  • o Norming

  • o Constraints

Explicação

Questão 96 de 200

1

119. Objects in an object-oriented programming language exist only during program execution, therefore they are called transient objects; an object-oriented database can extend the existence of objects so that they are stored permanently, therefore they are called

Selecione uma das seguintes:

  • o persistent object

  • o instance variable

  • o attribute

  • o object structure

Explicação

Questão 97 de 200

1

120. __________________ is the term used to refer to the problems that occur because of difference between the database model and the programming language model.

Selecione uma das seguintes:

  • o Independence mismatch

  • o Denormalisation

  • o Redundancy

  • o Duplication

Explicação

Questão 98 de 200

1

121. A __________________ is typically used to loop over the tuples in a query result

Selecione uma das seguintes:

  • o Cursor {iterator variable}

  • o Shared variable

  • o Communication variables

  • o fetch

Explicação

Questão 99 de 200

1

122. NULL values may mean value unknown, value exists but isn't available, and attribute does not apply to this tuple (value undefined)

Selecione uma das seguintes:

  • True

  • False

Explicação

Questão 100 de 200

1

123. A THETA JOIN uses any of the comparison operators =,<,>

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 101 de 200

1

124. For structured data, the schema information is mixed in with the data values, so it is sometimes referred to as self-describing data.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 102 de 200

1

125. The main advantage of using a function call interface is that it makes it easier to access multiple databases within the same application program

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 103 de 200

1

126. In PHP, Interpolating variables may occur within double-quoted or single-quoted strings

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 104 de 200

1

127. In PHP, the $d->query function takes an SQL command as its string argument and sends it to the database server for execution.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 105 de 200

1

128. The ________________ property ensures that either all the database operations in a transaction are executed or none are

Selecione uma das seguintes:

  • o Atomicity

  • o Transaction

  • o Isolation

  • o Concurrency

Explicação

Questão 106 de 200

1

129. ____________________occurs when the same data is stored multiple times

Selecione uma das seguintes:

  • o Redundancy

  • o Normalisation

  • o Denormalization

  • o Persistent

Explicação

Questão 107 de 200

1

130. Creating a database design that only stores each logical data item in only one place is the database is called______________________.

Selecione uma das seguintes:

  • o Redundancy

  • o Normalization

  • o Denormalization

  • o Persistent

Explicação

Questão 108 de 200

1

131. When a database design is in ____________, each value in a tuple is in atomic value.

Selecione uma das seguintes:

  • o First normal form

  • o Second normal form

  • o Third normal form

  • o Forth normal form

Explicação

Questão 109 de 200

1

132. An entity cannot exist in a database merely by being a member of a subclass, it must also be a member of the superclass

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 110 de 200

1

133. An entity that is a member of a subclass may inherit one, some, or all the attributes of the entity as a member of the superclass.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 111 de 200

1

134. The ________________ property allows several users to update the same data in a controlled manner so that result of the updates is correct

Selecione uma das seguintes:

  • o Atomicity

  • o Transaction

  • o Isolation

  • o Concurrency

Explicação

Questão 112 de 200

1

The theoretical basis of the relational data model is set theory and first-order predicate logic

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 113 de 200

1

Semantic integrity constraints may be enforced using mechanisms called triggers and assertions.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 114 de 200

1

When mapping a binary M:N relationship type R, create a new relation S to represent R, including as foreign key attributes in S the primary keys of the relations that are the participating entity types (their combination in S is the composite primary key of S).

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 115 de 200

1

$_SESSION − An associative array containing session variables available to the current script.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 116 de 200

1

PHP makes use of mail() function to send an email. This function requires three mandatory arguments that specify the recipient's email address, the subject of the the message and the actual message additionally there are other two optional parameters.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 117 de 200

1

The interpreter identifies variable names within double-quoted strings by their initial character $ and replaces them with the value in the variable. This is known as interpolating variables within strings. Interpolation does not occur in single-quoted strings

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 118 de 200

1

SQLJ was developed after JDBC, which is used for accessing SQL data- bases from Java using function calls

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 119 de 200

1

Most NoSQL databases support automatic __________, meaning that you get high availability and disaster recovery

Selecione uma das seguintes:

  • <text>processing</text>

  • <text>scalability</text>

  • <text>replication</text>

  • <text>All of the mentioned</text>

Explicação

Questão 120 de 200

1

The Web Services Architecture supports interaction between a service provider, service requestor, and service registry.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 121 de 200

1

Multi-line PHP comments start with // and end with #.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 122 de 200

1

Define types of abstractions by the relations as "A is <u>made of/composed of</u> B,C,D"

Selecione uma das seguintes:

  • Classification

  • Aggregation

  • Generalization

  • Specialization

Explicação

Questão 123 de 200

1

FETCH commands are issued in the program; each FETCH moves the cursor to the next row in the result of the query, making it the cur- rent row and copying its attribute values into the C (host language) program variables specified in the FETCH command by an INTO clause.</text>

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 124 de 200

1

Define types of abstractions by the relations as "B,C,D are special cases of A"

Selecione uma das seguintes:

  • Classification

  • Aggregation

  • Generalization

  • Specialization

Explicação

Questão 125 de 200

1

A JDBC driver is basically an implementation of the function calls specified in the JDBC application programming interface (API) for a particular vendor's RDBMS.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 126 de 200

1

In PHP, a numeric array associates a numeric index with each element in the array.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 127 de 200

1

Before being able to process JDBC function calls with Java, it is necessary to import the JDBC class libraries, which are called java.sql.*.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 128 de 200

1

How can you change "Hansen" into "Nilsen" in the "LastName" column in the Persons table?

Selecione uma das seguintes:

  • • UPDATE Persons SET LastName='Hansen' WHERE LastName='Nilsen'

  • • UPDATE Persons SET LastName='Nilsen' WHERE LastName='Hansen'

  • • MODIFY Persons SET LastName='Hansen' WHERE LastName='Nilsen'

  • • UPDATE FROM Persons SET LastName='Nilsen' WHERE LastName='Hansen'

Explicação

Questão 129 de 200

1

Publisher table contains id and name columns. Id is auto incremented and name is of varchar(40) type. Which of the following queries will execute NOT correctly?

Selecione uma das seguintes:

  • INSERT INTO Publisher (name) values ('O'Reilly');

  • INSERT INTO Publisher (name) values ('O Reilly');

  • INSERT INTO Publisher (name) values ('OReilly');

  • INSERT INTO Publisher (name) values ('O-Reilly');

Explicação

Questão 130 de 200

1

What is the correct order of clauses for a proper SQL query?

Selecione uma das seguintes:

  • SELECT, FROM, WHERE, GROUP BY, HAVING, ORDER BY

  • SELECT, FROM, WHERE, GROUP BY, ORDER BY, HAVING

  • SELECT, FROM, GROUP BY, WHERE, HAVING, ORDER BY

  • SELECT, FROM, WHERE, HAVING, GROUP BY, ORDER BY

Explicação

Questão 131 de 200

1

Which clause indicates the table(s) from which data is to be retrieved?

Selecione uma das seguintes:

  • FROM

  • SELECT

  • WHERE

  • GROUP BY

  • HAVING

Explicação

Questão 132 de 200

1

161. Which clause is executed first in a SQL query?

Selecione uma das seguintes:

  • WHERE

  • SELECT

  • FROM

  • ON

Explicação

Questão 133 de 200

1

162. Which of the following DROP statements is INCORRECT?

Selecione uma das seguintes:

  • • DROP DATABASE

  • • DROP ROW

  • • DROP INDEX

  • • DROP TABLE

Explicação

Questão 134 de 200

1

163. Which of the following is NOT a language element of SQL?

Selecione uma das seguintes:

  • Expression

  • Data mining

  • Query

  • Statement

  • Clause

Explicação

Questão 135 de 200

1

Which operator is used to search for a specified pattern in a column?

Selecione uma das seguintes:

  • WHERE

  • LIKE

  • ALIASE

  • PATTERN

Explicação

Questão 136 de 200

1

165. Which operator is used to select values within a range?

Selecione uma das seguintes:

  • RANGE

  • AND

  • BETWEEN

  • OR

Explicação

Questão 137 de 200

1

With SQL, how can you delete the records where the "Address" is "Almaty" in the Student Table?

Selecione uma das seguintes:

  • • DROP ROW Student ='Almaty' FROM Address

  • • DELETE FROM Student ROW Address ='Almaty'

  • • DROP ROW Address ='Almaty' FROM Student

  • • DELETE ROW Address ='Almaty' FROM Student

Explicação

Questão 138 de 200

1

166. Which term is used to describe data organized in rows and columns?

Selecione uma das seguintes:

  • Query

  • Program

  • Index

  • Table

Explicação

Questão 139 de 200

1

With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?

Selecione uma das seguintes:

  • • SELECT * FROM Persons GROUP BY FirstName DESC

  • • SELECT * FROM Persons WHERE FirstName DESC

  • • SELECT * FROM Persons ORDER BY FirstName

  • • SELECT * FROM Persons ORDER BY FirstName DESC

Explicação

Questão 140 de 200

1

169. With SQL, how can you return the number of records in the "Employee" table?

Selecione uma das seguintes:

  • • SELECT COUNT(*) FROM Employee

  • • SELECT * FROM Employee GROUP BY

  • • SELECT NUM(*) FROM Employee

  • • RETURN COUNT(*) FROM Employee

Explicação

Questão 141 de 200

1

170. With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" starts with an "a"?

Selecione uma das seguintes:

  • • SELECT * FROM Persons WHERE FirstName LIKE 'a%';

  • • SELECT * FROM Persons WHERE FirstName LIKE '%a%';

  • • SELECT All FROM Persons WHERE FirstName LIKE='a';

  • • SELECT * FROM Persons WHERE FirstName LIKE 'a*';

Explicação

Questão 142 de 200

1

171. With SQL, how do you select all the records from a table named "Persons" where the "FirstName" is "Alma" and the "LastName" is "Alimova"?

Selecione uma das seguintes:

  • • SELECT * FROM Persons WHERE FirstName=' Alma ' AND LastName=' Alimova'

  • • SELECT * FROM Persons WHERE FirstName=' Alma ' OR LastName=' Alimova'

  • • SELECT FROM Persons WHERE FirstName=' Alma ' AND LastName=' Alimova'

  • • SELECT * FROM Persons HAVING FirstName=' Alma ' AND LastName=' Alimova'

Explicação

Questão 143 de 200

1

Which of the following is not a NoSQL database ?

Selecione uma das seguintes:

  • SQL Server

  • MongoDB

  • Cassandra

  • None of the mentioned

Explicação

Questão 144 de 200

1

Which of the following is a NoSQL Database Type ?

Selecione uma das seguintes:

  • SQL

  • Document databases

  • JSON

  • All of the mentioned

Explicação

Questão 145 de 200

1

Which of the following is a wide-column store ?

Selecione uma das seguintes:

  • Cassandra

  • Riak

  • MongoDB

  • Redis

Explicação

Questão 146 de 200

1

An ODMS provides a unique identity to each independent object stored in the database via a unique, system-generated ________________

Selecione uma das seguintes:

  • <text>object identifier (OID)</text>

  • <text>literals</text>

  • <text>indirect pointer</text>

  • <text>constructor</text>

Explicação

Questão 147 de 200

1

Define types of abstractions by the relations as "A is a <u>member of</u> class B

Selecione uma das seguintes:

  • <text>Classification</text>

  • <text>Aggregation</text>

  • <text>Generalization</text>

  • <text>Specialization</text>

Explicação

Questão 148 de 200

1

Define types of abstractions by the relations as "B <u>is-an</u> A, C <u>is-an</u> A, D <u>is-an</u> A"

Selecione uma das seguintes:

  • Classification

  • Aggregation

  • Generalization

  • Specialization

Explicação

Questão 149 de 200

1

How will you close a MySql database using PHP?

Selecione uma das seguintes:

  • mysql_destroy

  • mysql_exit

  • mysql_end

  • mysql_close

Explicação

Questão 150 de 200

1

How will you concatenate two strings?

Selecione uma das seguintes:

  • Using . operator

  • Using + operator

  • Using add() function

  • Using append() function

Explicação

Questão 151 de 200

1

How will you connect a MySql database using PHP?

Selecione uma das seguintes:

  • mysql_connection

  • mysql_query

  • mysql_fetch_array

  • mysql_connect

Explicação

Questão 152 de 200

1

How will you destroy a session in PHP?

Selecione uma das seguintes:

  • session_destroy()

  • destroy_session()

  • $_SESSION['destroy']

  • $_SESSION['']

Explicação

Questão 153 de 200

1

How will you start a session in PHP?

Selecione uma das seguintes:

  • <text>session_start()</text>

  • <text>start_session()</text>

  • <text>$_SESSION['start']</text>

  • <text>$_SESSION['']</text>

Explicação

Questão 154 de 200

1

How will you unset a single session variable?

Selecione uma das seguintes:

  • <text><![CDATA[<?phpunset($_SESSION['counter']);?>]]></text>

  • <text><![CDATA[<?phpisset($_SESSION['counter']); ?>]]></text>

  • <text>$_SESSION['unset']</text>

  • <text>$_SESSION['']</text>

Explicação

Questão 155 de 200

1

Identify factors to consider in choosing one DBMS over another. I. Organization-wide adoption of a certain philosophy (data model, vendor, methodology, tools).
I. Familiarity of personnel with the system. III. Availability of vendor services.

Selecione uma das seguintes:

  • • <text>I, II</text>

  • • <text>I, II, III</text>

  • • <text>II, III</text>

  • • <text>I, III</text>

Explicação

Questão 156 de 200

1

• In which type of PHP arrays the element values can be strings or integers?

Selecione uma das seguintes:

  • • <text>numeric</text>

  • • <text>associative</text>

  • • <text>indexed</text>

  • • <text>none</text>

Explicação

Questão 157 de 200

1

• In XML schema, the tag ________________ is used to specify foreign keys

Selecione uma das seguintes:

  • • <text>xsd:keyref</text>

  • • <text>xsd:element</text>

  • • <text>xsd: unique</text>

  • • <text>xsd:foreignkey</text>

Explicação

Questão 158 de 200

1

• NoSQL databases is used mainly for handling large volumes of ______________ data

Selecione uma das seguintes:

  • unstructured

  • structured

  • semi-structured

  • all of the mentioned

Explicação

Questão 159 de 200

1

• Point out the wrong statement

Selecione uma das seguintes:

  • Non Relational databases require that schemas be defined before you can add data

  • NoSQL databases are built to allow the insertion of data without a predefined schema

  • NewSQL databases are built to allow the insertion of data without a predefined schema

  • All of the mentioned

Explicação

Questão 160 de 200

1

• The ___ notation applies to user-defined subclasses of a specialization that must be ________, as illustrated by the specialization "every STUDENT must be either an GRADUATE_STUDENT, or a UNDERGRADUATE_STUDENT"

Selecione uma das seguintes:

  • • <text>d, disjoint</text>

  • • <text>j, joint</text>

  • • <text>o, overlapping</text>

  • • <text>u, union</text>

Explicação

Questão 161 de 200

1

• 190. The case of specialization what the same (real-world) entity may be a member of more than one subclass of the specialization for example, an alumnus may also be an employee and may also be a student pursuing an advanced degree (PERSON entity type, which is specialized into the subclasses {EMPLOYEE, ALUMNUS, STUDENT})

Selecione uma das seguintes:

  • • <text> disjoint</text>

  • • <text> joint</text>

  • • <text>overlapping</text>

  • • <text>union</text>

Explicação

Questão 162 de 200

1

• The case represents a single superclass/subclass relationship with more than one superclass, where the superclasses represent different entity types

Selecione uma das seguintes:

  • • <text> disjoint</text>

  • • <text> joint</text>

  • • <text>overlapping</text>

  • • <text>union</text>

Explicação

Questão 163 de 200

1

• This auto-global built-in array variable which provides the IP (Internet Protocol) address of the client user computer that is accessing the server, for example 129.107.61.8.

Selecione uma das seguintes:

  • • <text>$_SERVER['SERVER_NAME']</text>

  • • <text>$_SERVER['REMOTE_ADDRESS']</text>

  • • <text>$_SERVER['REMOTE_HOST'] 
</text>

  • • <text>$_SERVER['PATH_INFO'] 
</text>

  • • <text>$_SERVER['QUERY_STRING']</text>

Explicação

Questão 164 de 200

1

• This auto-global built-in array variable which provides the part of the URL address that comes after a backslash (/) at the end of the URL.

Selecione uma das seguintes:

  • • <text>$_SERVER['SERVER_NAME']</text>

  • • <text>$_SERVER['REMOTE_ADDRESS']</text>

  • • <text>$_SERVER['REMOTE_HOST'] 
</text>

  • • <text>$_SERVER['PATH_INFO'] 
</text>

Explicação

Questão 165 de 200

1

• This auto-global built-in array variable which provides the string that holds parameters in a URL after a question mark (?) at the end of the URL. This can hold search parameters, for example.

Selecione uma das seguintes:

  • • <text>$_SERVER['SERVER_NAME']</text>

  • • <text>$_SERVER['QUERY_STRING']</text>

  • • <text>$_SERVER['REMOTE_ADDRESS']</text>

  • • <text>$_SERVER['PATH_INFO'] 
</text>

Explicação

Questão 166 de 200

1

• This auto-global built-in array variablewhich provides the Web site name of the server computer where the PHP interpreter is running.

Selecione uma das seguintes:

  • • <text>$_SERVER['SERVER_NAME']</text>

  • • <text>$_SERVER['REMOTE_ADDRESS']</text>

  • • <text>$_SERVER['REMOTE_HOST'] 
</text>

  • • <text>$_SERVER['PATH_INFO'] 
</text>

Explicação

Questão 167 de 200

1

• What does PHP stands for

Selecione uma das seguintes:

  • • <text>Personal Hypertext Processor</text>

  • • <text>PHP: Hypertext Preprocessor</text>

  • • <text>Private Home Page</text>

  • • <text>Private Hypertext Preprocessor</text>

Explicação

Questão 168 de 200

1

• What does S in BASE refers to?

Selecione uma das seguintes:

  • • <text>System Consistence</text>

  • • <text>System Availability</text>

  • • <text>Changing System</text>

  • • <text>System Stability</text>

Explicação

Questão 169 de 200

1

• [What does the term "I" expands to in the term "ACID"?

Selecione uma das seguintes:

  • • <text>Isolated</text>

  • • <text>Inseparable</text>

  • • <text>Indispensable</text>

  • • <text>Insulted</text>

Explicação

Questão 170 de 200

1

• What does XML stand for?

Selecione uma das seguintes:

  • • <text>eXtensible Markup Language</text>

  • • <text>Example Markup Language</text>

  • • <text>X-Markup Language</text>

  • • <text>eXtra Modern Link</text>

Explicação

Questão 171 de 200

1

• What does XSL stand for?

Selecione uma das seguintes:

  • • <text>eXtensible Stylesheet Language</text>

  • • <text>eXtra Style Language</text>

  • • <text>eXpandable Style Language</text>

  • • <text>eXtensible Style Listing</text>

Explicação

Questão 172 de 200

1

• What is the correct syntax of the declaration which defines the XML version?

Selecione uma das seguintes:

  • • <?xml version="1.0" />

  • • <?xml version="1.0"?>

  • • <xml version="1.0" />

Explicação

Questão 173 de 200

1

• Which company did Cassandra was primarily developed in?

Selecione uma das seguintes:

  • • <text>Apache</text>

  • • <text>Facebook</text>

  • • <text>Google</text>

  • • <text>Amazon</text>

Explicação

Questão 174 de 200

1

• Which feature of CAP refers to load balancing

Selecione uma das seguintes:

  • None of these

  • C

  • P

  • A

Explicação

Questão 175 de 200

1

• Which of the following is correct about PHP

Selecione uma das seguintes:

  • Key-value

  • Wide-column

  • Document

  • All of the mentioned

Explicação

Questão 176 de 200

1

• Which of the following is correct about PHP

Selecione uma das seguintes:

  • • PHP is a recursive acronym for "PHP: Hypertext Preprocessor".]

  • • PHP is a server side scripting language that is embedded in HTML

  • • It is used to manage dynamic content, databases, session tracking, even build entire e-commerce sites

  • • All of these statement

Explicação

Questão 177 de 200

1

• Which of the following is correct about variable naming rules?

Selecione uma das seguintes:

  • • Variable names must begin with a letter or underscore character

  • • A variable name can consist of numbers, letters, underscores.

  • • A variable name can consist of numbers, letters, underscores. you cannot use characters like + , - , % , ( , ) . &amp; , etc in a variable name.

  • • All of these statement

Explicação

Questão 178 de 200

1

• Which of the following is not a NoSQL database?

Selecione uma das seguintes:

  • • <text>SQL Server</text>

  • • <text>MongoDB</text>

  • • <text>Cassandra</text>

  • • <text>None of the mentioned</text>.

Explicação

Questão 179 de 200

1

• Which of the following method can be used to create a MySql database using PHP?

Selecione uma das seguintes:

  • • <text>mysql_connect()</text>

  • • <text>mysql_query()</text>

  • • <text>mysql_close()</text>

  • • <text>None of the above</text>

Explicação

Questão 180 de 200

1

• Which of them could not be applied to techniques for looping through arrays in PHP

Selecione uma das seguintes:

  • • $courses = ('Database', 'OS', 'Graphics', 'Data Mining');

  • • $courses = array('Database', 'OS', 'Graphics', 'Data Mining');

  • • $teaching = array('Database' => 'Smith', 'OS' => 'Carrick', 'Graphics' => 'Kam');

  • • $teaching['Graphics'] = 'Benson';

Explicação

Questão 181 de 200

1

• A key difference between structured and semistructured data concerns how the schema constructs (such as the names of attributes, relationships, and entity types) are handled.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 182 de 200

1

• A large database typically has large transaction volumes and rates, is used in service sector industries, and runs 24/7

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 183 de 200

1

• A library of functions, also known as an application programming interface (API), is used to access the database

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 184 de 200

1

• A safer way to do inserts and other queries is through the use of placeholders (specified by the ? symbol) in PHP

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 185 de 200

1

• Associative array − An array with strings as index. This stores element values in association with key values rather than in a strict linear index order.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 186 de 200

1

• In SQLJ, an iterator is a type of object associated with a collection (set or multiset) of records in a query result.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 187 de 200

1

• In SQLJ, embedded SQL commands are preceded by #sql.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 188 de 200

1

• In XML schema, it is possible to specify constraints that correspond to unique and primary key constraints in a relational database, as well as foreign keys constraints.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 189 de 200

1

• Interfaces are defined to provide a common function names to the implementers. Different implementers can implement those interfaces according to their requirements. You can say, interfaces are skeletons which are implemented by developers.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 190 de 200

1

• Numeric array − An array with a numeric index. Values are stored and accessed in linear fashion.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 191 de 200

1

• OPEN CURSOR command is issued to indicate that we are done with processing the result of the query associated with that cursor.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 192 de 200

1

• PHP is written in C and usually comes installed with Unix; for other operating systems, the PHP interpreter can be downloaded from http://www.php.net.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 193 de 200

1

• The cursor is declared when the SQL query command is declared in the program. Later in the program, an OPEN CURSOR command fetches the query result from the database and sets the cursor to a position before the first row in the result of the query.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 194 de 200

1

• The typical mechanisms for making an object persistent are naming and reachability

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 195 de 200

1

• The typical mechanisms for making an object persistent are naming and reachability

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 196 de 200

1

• XML attribute values must always be enclosed in quotes

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 197 de 200

1

• XML elements cannot be empty

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 198 de 200

1

• XML's goal is to replace HTML

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 199 de 200

1

• XQuery is the language for querying XML data

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 200 de 200

1

• What are the advantages and disadvantages of the embedded SQL approach.

Selecione uma ou mais das seguintes:

  • • The main advantage is the query text is part of the source code can be checked for syntax errors and validated against the database schema at compile time. The program is quite readable. Since queries are known in advance, the choice of program variables to hold query results is simple.

  • • The main advantage is flexibility in generating queries at runtime. Also, the library of function calls approach is able to call multiple data program.

  • • The main disadvantage is the query text is part of the source code can be checked for syntax errors and validated against the database schema at compile time. The program is quite readable. Since queries are known in advance, the choice of program variables to hold query results is simple.

  • • Disadvantage are more complex programming, inability to do checking at compile time, and concerns about SQL runtime errors.

  • • Disadvantage are the loss of flexibility in changing the query the query at runtime and that all changes to queries must be recompiled.

Explicação