Deck 8: Restricting Rows and Sorting Data

ملء الشاشة (f)
exit full mode
سؤال
Search conditions for data contained in numeric columns must be enclosed in single quotation marks.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
Retrieving only specific rows from a table is a process known as selection.
سؤال
The percent sign (%) and underscore (_) symbols can be used with the LIKE comparison operator to create a search pattern.
سؤال
The IN comparison operator is used when searching for a pattern of characters.
سؤال
A NULL value is the same as a blank space.
سؤال
The BETWEEN...AND comparison operator can be used to specify a range of values as a search condition.
سؤال
When two conditions are joined by the AND logical operator, both of the conditions must be evaluated as FALSE to be included in the query results.
سؤال
In a WHERE clause, logical operators are evaluated before comparison operators.
سؤال
Logical operators are evaluated in the order of NOT, AND, and OR.
سؤال
Using the OR logical operator to combine search conditions based upon the same column is the same as using the IN comparison operator.
سؤال
NOT, ALL, and OR are all considered logical operators.
سؤال
Search conditions for data contained in non-numeric columns must be enclosed in double quotation marks.
سؤال
When two conditions are joined by the AND logical operator, both of the conditions must be evaluated as True to be included in the query results.
سؤال
Although Oracle11g is not case sensitive in regards to keywords, table names, and column names, it is case sensitive when comparing search conditions to the data contained in a database table.
سؤال
Retrieving only certain rows from a table is known as projection.
سؤال
The percent sign (%) is used in a search pattern to indicate "exactly one character in this position".
سؤال
Comparison operators are used to combine search conditions.
سؤال
The percent sign (%) and asterisk (*) symbols can be used with the LIKE comparison operator to create a search pattern.
سؤال
The underscore symbol (_) is used in a search pattern to indicate "exactly one character in this position".
سؤال
When two conditions are joined by the AND logical operator, only one of the conditions must be True to be included in the query results.
سؤال
The process of specifying that certain rows be displayed in the results of a query is known as  selection \underline { \text { selection } } . _________________________
سؤال
Oracle11g  is case sensitive \underline {\text { is case sensitive } } when comparing data to a search condition. _________________________
سؤال
A column alias that has been defined in the SELECT clause of a SELECT statement cannot be referenced in an ORDER BY clause.
سؤال
The  LIKE \underline { \text { LIKE } } operator is used to indicate a range of values. _________________________
سؤال
A search condition can be specified in a(n)  SELECT \underline { \text { SELECT } } clause. _________________________
سؤال
The <>, !=, or ^= operators can be used to search for values that are  not equivalent \underline { \text { not equivalent } } to the specified search condition. _________________________
سؤال
A greater than or equal to comparison is indicated by the symbols =>\underline {=> } . _________________________
سؤال
By default, query results are sorted in ascending order based upon the column specified in the ORDER BY clause.
سؤال
The SORT BY clause is used to present query results in a specific order.
سؤال
A(n)  clause \underline { \text { clause } } identifies what must exist or a requirement that must be met for a record to be included in the results of a query. _________________________
سؤال
If a numeric column is being used for comparison against the search condition, the search condition  is enclosed \underline { \text { is enclosed } } in single quotation marks. _________________________
سؤال
When sorted in descending order, NULL values will be listed first in the results, unless the user specifies otherwise.
سؤال
An ORDER BY clause can reference a column to be used for sorting based upon its position in the database table.
سؤال
To find rows containing a NULL value in a specified column, you must use the search condition of = NULL.
سؤال
Including the keywords NULLS FIRST in the ORDER BY clause will result in NULL values appearing first in the results, regardless of the specified sort sequence.
سؤال
The maximum number of columns that can be used to sort the results of a query is 52.
سؤال
If a date column is being used for comparison against the search condition, the search condition is enclosed in  double \underline { \text { double } } quotation marks. _________________________
سؤال
The first column listed in an ORDER BY clause is considered the primary sort.
سؤال
The IN logical operator is similar to using OR\underline{OR} . _________________________
سؤال
An ORDER BY clause can reference a column to be used for sorting based upon its position in the SELECT clause.
سؤال
When two conditions are joined by the OR\underline{OR} keyword, both conditions must be True for a record to be included in the results. _________________________
سؤال
Which of the following operators would be most appropriate to determine whether or not the retail price of a book is at least $24.00?

A) LIKE
B) BETWEEN
C) >
D) >=
سؤال
The \leq symbol is used to search for records containing a value that is less than or equal to the stated search condition. _________________________
سؤال
The maximum number of columns that can be used to sort data is 25\underline { 25 } _________________________
سؤال
Which of the following is NOT a comparison operator?

A) >=
B) BETWEEN...AND
C) =
D) NOT
سؤال
If a user performs a query that restricts the rows returned based upon a specified date, the date must be enclosed in ____.

A) double quotation marks (" ")
B) single quotation marks (' ')
C) parentheses ( )
D) none of the above
سؤال
A(n) ____ is used to indicate how data should relate to a given search condition.

A) comparison operator
B) logical operator
C) search pattern
D) criteria
سؤال
The  numeric order \underline { \text { numeric order } } of columns in a SELECT clause can be referenced in the ORDER BY clause. _________________________
سؤال
The process of retrieving only certain rows based upon a specified condition is known as ____.

A) selection
B) projection
C) retrieval
D) derivation
سؤال
When using a search pattern, a(n) ?\underline { ? } symbol is used to indicate exactly one character in that position. _________________________
سؤال
When two conditions are joined by the AND keyword, both conditions must be  FALSE \underline { \text { FALSE } } for a record to be included in the results. _________________________
سؤال
The  BETWEEN \underline {\text { BETWEEN } } operator is used to determine the rows that match a value in a given list. _________________________
سؤال
NOT, AND, and OR are  comparison \underline {\text { comparison } } operators. _________________________
سؤال
When data is sorted in ascending order, NULL values appear  first \underline { \text { first } } in the list. _________________________
سؤال
Which of the following clauses is used to restrict the rows returned by a query?

A) SELECT
B) FROM
C) WHERE
D) ORDER BY
سؤال
To indicate that data should be sorted in descending order, use the  DESC \underline {\text { DESC } } keyword. _________________________
سؤال
A(n)  percent \underline { \text { percent } } sign is used in a search pattern to indicate zero, one, or more characters in a position. _________________________
سؤال
The  SORT BY \underline { \text { SORT BY } } clause is used for displaying the results of a query in a sorted order. _________________________
سؤال
When sorting data, the values will be sorted in  ascending \underline { \text { ascending } } order by default. _________________________
سؤال
The  "equal to" \underline {\text { "equal to" }} comparison operator is used to search for NULL values. _________________________
سؤال
Which of the following clauses is used to indicate a particular sort sequence for presenting query results?

A) SELECT
B) SORT BY
C) WHERE
D) ORDER BY
سؤال
To instruct Oracle11g to sort data in descending order, enter ____ after the column name in the WHERE clause.

A) D
B) DES
C) DESC
D) none of the above
سؤال
Which of the following operators can be used to combine search conditions?

A) AND
B) =
C) IS NOT NULL
D) none of the above
سؤال
Which of the following search conditions can be used to identify records that have data stored in a column named ColB?

A) ColB IS NOT NULL
B) ColB ^= NULL
C) ColB != NULL
D) all of the above
سؤال
Which of the following search patterns would find dates occurring only in the year 2003?

A) %03%
B) *03
C) %03
D) _03%
سؤال
Which of the following is not a valid comparison operator?

A) =>
B) <>
C) ^=
D) none of the above
سؤال
When the WHERE clause contains multiple types of operators, which of the following is resolved last?

A) arithmetic operations
B) comparison operators
C) logical operators
D) search patterns
سؤال
When sorting the results in descending order, which of the following values will be presented first in the output?

A) numeric
B) character
C) NULL
D) date
سؤال
When sorting the results in ascending order, which of the following values will be presented first in the output?

A) numeric
B) character
C) NULL
D) date
سؤال
When the WHERE clause contains multiple types of operators, which of the following is resolved first?

A) arithmetic operations
B) comparison operators
C) logical operators
D) union operators
سؤال
When sorting the results in descending order, which of the following values will be presented last in the output?

A) numeric
B) character
C) NULL
D) date
سؤال
To instruct Oracle11g to sort data in ascending order, enter ____ after the column name in the ORDER BY clause.

A) ASC
B) A
C) ASCENDING
D) either a or c
سؤال
Which of the following search conditions can be used to identify records that do not have data stored in a column named ColB?

A) ColB = NULL
B) ColB IS NOT NULL
C) ColB IS NULL
D) ColB = ' '
سؤال
Which of the following is a valid comparison operator?

A) !=
B) IN
C) ^=
D) all of the above
سؤال
Which of the following search patterns could be used to find the word HELLO in Oracle11g?

A) %H%
B) HEL*
C) _EL*
D) %HEL?O
سؤال
Which of the following is a valid logical operator?

A) NOT
B) AND
C) OR
D) all of the above
سؤال
Which of the following symbols is a wildcard character that can represent any number of characters in a WHERE clause?

A) asterisk (*)
B) underscore (_)
C) question mark (?)
D) percent sign (%)
سؤال
When sorting the results in ascending order, which of the following values will be presented last in the output?

A) character
B) numeric
C) NULL
D) date
سؤال
Which of the following operators is used when the criteria is based upon a search pattern?

A) AND
B) LIKE
C) IS NULL
D) BETWEEN...AND
سؤال
Which of the following operators can be used to retrieve rows containing NULL values in a specific column?

A) =
B) LIKE
C) NOT
D) none of the above
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/132
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 8: Restricting Rows and Sorting Data
1
Search conditions for data contained in numeric columns must be enclosed in single quotation marks.
False
2
Retrieving only specific rows from a table is a process known as selection.
True
3
The percent sign (%) and underscore (_) symbols can be used with the LIKE comparison operator to create a search pattern.
True
4
The IN comparison operator is used when searching for a pattern of characters.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
5
A NULL value is the same as a blank space.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
6
The BETWEEN...AND comparison operator can be used to specify a range of values as a search condition.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
7
When two conditions are joined by the AND logical operator, both of the conditions must be evaluated as FALSE to be included in the query results.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
8
In a WHERE clause, logical operators are evaluated before comparison operators.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
9
Logical operators are evaluated in the order of NOT, AND, and OR.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
10
Using the OR logical operator to combine search conditions based upon the same column is the same as using the IN comparison operator.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
11
NOT, ALL, and OR are all considered logical operators.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
12
Search conditions for data contained in non-numeric columns must be enclosed in double quotation marks.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
13
When two conditions are joined by the AND logical operator, both of the conditions must be evaluated as True to be included in the query results.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
14
Although Oracle11g is not case sensitive in regards to keywords, table names, and column names, it is case sensitive when comparing search conditions to the data contained in a database table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
15
Retrieving only certain rows from a table is known as projection.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
16
The percent sign (%) is used in a search pattern to indicate "exactly one character in this position".
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
17
Comparison operators are used to combine search conditions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
18
The percent sign (%) and asterisk (*) symbols can be used with the LIKE comparison operator to create a search pattern.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
19
The underscore symbol (_) is used in a search pattern to indicate "exactly one character in this position".
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
20
When two conditions are joined by the AND logical operator, only one of the conditions must be True to be included in the query results.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
21
The process of specifying that certain rows be displayed in the results of a query is known as  selection \underline { \text { selection } } . _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
22
Oracle11g  is case sensitive \underline {\text { is case sensitive } } when comparing data to a search condition. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
23
A column alias that has been defined in the SELECT clause of a SELECT statement cannot be referenced in an ORDER BY clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
24
The  LIKE \underline { \text { LIKE } } operator is used to indicate a range of values. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
25
A search condition can be specified in a(n)  SELECT \underline { \text { SELECT } } clause. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
26
The <>, !=, or ^= operators can be used to search for values that are  not equivalent \underline { \text { not equivalent } } to the specified search condition. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
27
A greater than or equal to comparison is indicated by the symbols =>\underline {=> } . _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
28
By default, query results are sorted in ascending order based upon the column specified in the ORDER BY clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
29
The SORT BY clause is used to present query results in a specific order.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
30
A(n)  clause \underline { \text { clause } } identifies what must exist or a requirement that must be met for a record to be included in the results of a query. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
31
If a numeric column is being used for comparison against the search condition, the search condition  is enclosed \underline { \text { is enclosed } } in single quotation marks. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
32
When sorted in descending order, NULL values will be listed first in the results, unless the user specifies otherwise.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
33
An ORDER BY clause can reference a column to be used for sorting based upon its position in the database table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
34
To find rows containing a NULL value in a specified column, you must use the search condition of = NULL.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
35
Including the keywords NULLS FIRST in the ORDER BY clause will result in NULL values appearing first in the results, regardless of the specified sort sequence.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
36
The maximum number of columns that can be used to sort the results of a query is 52.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
37
If a date column is being used for comparison against the search condition, the search condition is enclosed in  double \underline { \text { double } } quotation marks. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
38
The first column listed in an ORDER BY clause is considered the primary sort.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
39
The IN logical operator is similar to using OR\underline{OR} . _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
40
An ORDER BY clause can reference a column to be used for sorting based upon its position in the SELECT clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
41
When two conditions are joined by the OR\underline{OR} keyword, both conditions must be True for a record to be included in the results. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
42
Which of the following operators would be most appropriate to determine whether or not the retail price of a book is at least $24.00?

A) LIKE
B) BETWEEN
C) >
D) >=
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
43
The \leq symbol is used to search for records containing a value that is less than or equal to the stated search condition. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
44
The maximum number of columns that can be used to sort data is 25\underline { 25 } _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
45
Which of the following is NOT a comparison operator?

A) >=
B) BETWEEN...AND
C) =
D) NOT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
46
If a user performs a query that restricts the rows returned based upon a specified date, the date must be enclosed in ____.

A) double quotation marks (" ")
B) single quotation marks (' ')
C) parentheses ( )
D) none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
47
A(n) ____ is used to indicate how data should relate to a given search condition.

A) comparison operator
B) logical operator
C) search pattern
D) criteria
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
48
The  numeric order \underline { \text { numeric order } } of columns in a SELECT clause can be referenced in the ORDER BY clause. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
49
The process of retrieving only certain rows based upon a specified condition is known as ____.

A) selection
B) projection
C) retrieval
D) derivation
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
50
When using a search pattern, a(n) ?\underline { ? } symbol is used to indicate exactly one character in that position. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
51
When two conditions are joined by the AND keyword, both conditions must be  FALSE \underline { \text { FALSE } } for a record to be included in the results. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
52
The  BETWEEN \underline {\text { BETWEEN } } operator is used to determine the rows that match a value in a given list. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
53
NOT, AND, and OR are  comparison \underline {\text { comparison } } operators. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
54
When data is sorted in ascending order, NULL values appear  first \underline { \text { first } } in the list. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
55
Which of the following clauses is used to restrict the rows returned by a query?

A) SELECT
B) FROM
C) WHERE
D) ORDER BY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
56
To indicate that data should be sorted in descending order, use the  DESC \underline {\text { DESC } } keyword. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
57
A(n)  percent \underline { \text { percent } } sign is used in a search pattern to indicate zero, one, or more characters in a position. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
58
The  SORT BY \underline { \text { SORT BY } } clause is used for displaying the results of a query in a sorted order. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
59
When sorting data, the values will be sorted in  ascending \underline { \text { ascending } } order by default. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
60
The  "equal to" \underline {\text { "equal to" }} comparison operator is used to search for NULL values. _________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
61
Which of the following clauses is used to indicate a particular sort sequence for presenting query results?

A) SELECT
B) SORT BY
C) WHERE
D) ORDER BY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
62
To instruct Oracle11g to sort data in descending order, enter ____ after the column name in the WHERE clause.

A) D
B) DES
C) DESC
D) none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
63
Which of the following operators can be used to combine search conditions?

A) AND
B) =
C) IS NOT NULL
D) none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
64
Which of the following search conditions can be used to identify records that have data stored in a column named ColB?

A) ColB IS NOT NULL
B) ColB ^= NULL
C) ColB != NULL
D) all of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
65
Which of the following search patterns would find dates occurring only in the year 2003?

A) %03%
B) *03
C) %03
D) _03%
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
66
Which of the following is not a valid comparison operator?

A) =>
B) <>
C) ^=
D) none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
67
When the WHERE clause contains multiple types of operators, which of the following is resolved last?

A) arithmetic operations
B) comparison operators
C) logical operators
D) search patterns
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
68
When sorting the results in descending order, which of the following values will be presented first in the output?

A) numeric
B) character
C) NULL
D) date
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
69
When sorting the results in ascending order, which of the following values will be presented first in the output?

A) numeric
B) character
C) NULL
D) date
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
70
When the WHERE clause contains multiple types of operators, which of the following is resolved first?

A) arithmetic operations
B) comparison operators
C) logical operators
D) union operators
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
71
When sorting the results in descending order, which of the following values will be presented last in the output?

A) numeric
B) character
C) NULL
D) date
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
72
To instruct Oracle11g to sort data in ascending order, enter ____ after the column name in the ORDER BY clause.

A) ASC
B) A
C) ASCENDING
D) either a or c
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
73
Which of the following search conditions can be used to identify records that do not have data stored in a column named ColB?

A) ColB = NULL
B) ColB IS NOT NULL
C) ColB IS NULL
D) ColB = ' '
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
74
Which of the following is a valid comparison operator?

A) !=
B) IN
C) ^=
D) all of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
75
Which of the following search patterns could be used to find the word HELLO in Oracle11g?

A) %H%
B) HEL*
C) _EL*
D) %HEL?O
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
76
Which of the following is a valid logical operator?

A) NOT
B) AND
C) OR
D) all of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
77
Which of the following symbols is a wildcard character that can represent any number of characters in a WHERE clause?

A) asterisk (*)
B) underscore (_)
C) question mark (?)
D) percent sign (%)
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
78
When sorting the results in ascending order, which of the following values will be presented last in the output?

A) character
B) numeric
C) NULL
D) date
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
79
Which of the following operators is used when the criteria is based upon a search pattern?

A) AND
B) LIKE
C) IS NULL
D) BETWEEN...AND
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
80
Which of the following operators can be used to retrieve rows containing NULL values in a specific column?

A) =
B) LIKE
C) NOT
D) none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 132 في هذه المجموعة.