Deck 2: Creating and Modifying Database Tables

Full screen (f)
exit full mode
Question
If a column has a YEAR TO MONTH INTERVAL data type,then the value +02-11 specifies a positive time interval of 2 years and 11 months.
Use Space or
up arrow
down arrow
to flip the card.
Question
If a user only specifies the time when setting a value for a DATE column,the date portion will default to the current time.
Question
Up to 6 GB of binary data can be stored in a BLOB column.
Question
When declaring a NUMBER data type,scale is the total number of digits both to the left and to the right of the decimal point.
Question
A TIMESTAMP data type is the same as a DATE data type,except that time zone can be specified.
Question
A fixed-point number contains a specific number of decimal places.
Question
The CHAR data types stores up to 4,000 characters.
Question
The Oracle DBMS stores columns of all data types in the same amount of space.
Question
The following declaration represents a floating-point number: my_number NUMBER.
Question
The CHAR and VARCHAR2 data types store Unicode character data.
Question
To create a table it is only necessary to specify column names.
Question
A user schema contains all database objects created by a user.
Question
Using the CHAR data type causes a column value to be padded to the maximum declared size of the column.
Question
The SQL command to create a database table is an example of DML.
Question
The VARCHAR2 data type can store up to 4,000 characters.
Question
According to the Oracle Naming Standard,'-' (hyphen)is a legal character.
Question
A NOT NULL constraint is an example of a table constraint.
Question
Given the column declaration name CHAR(5),if a user attempted to store the value "Jonathan" in the name column,only the first 5 characters would be stored.
Question
The following declaration represents an integer: my_int number(4,2).
Question
A primary key is defined using an integrity constraint.
Question
Which of the following is a legal character in the Oracle Naming Standard?

A)%
B)^
C)#
D)*
Question
To check that the value entered into a CHAR column is either 'M' or 'F',you would use a check condition constraint.
Question
Which of the following declares a column named "name" that always contains exactly 30 characters?

A)VARCHAR2(30)name
B)CHAR(30)name
C)name VARCHAR2(30)
D)name CHAR(30)
Question
Which of the following is not required when creating a table?

A)table size
B)table name
C)column names
D)column data types
Question
You can change a column data type from VARCHAR2 to NUMBER.
Question
You can always rename a table.
Question
In an INTERVAL YEAR TO MONTH data type,which of the following indicates a positive time interval of 2 years and 11 months?

A)2-11
B)+2-11
C)+02-11
D)11-02
Question
Which of the following data types is used to store variable length ASCII character data?

A)CHAR
B)NCHAR
C)VARCHAR2
D)NVARCHAR2
Question
If the column S_ID is the primary key of the STUDENT table,the constraint name would be pk_STUDENT_S_ID according to the constraint naming convention.
Question
Which of the following declarations would be most appropriate for storing a dollar value up to $1000?

A)price NUMBER(5,2)
B)price NUMBER(5)
C)price NUMBER(2)
D)price NUMBER
Question
It is possible to temporarily disable constraints in an Oracle database.
Question
Which of the following is not part of a DDL command?

A)create table ...
B)drop table ...
C)create constraint ...
D)select table_name from ...
Question
Which of the following is not a legal table name according to the Oracle Naming Standard?

A)#COURSE_ID
B)COURSE$ID
C)COURSEID
D)COURSE_ID
Question
If a user enters only a time into a DATE column,what will the date portion be set to?

A)January 1,1970
B)first day of the current year
C)first day of the current month
D)current date
Question
An Oracle error consists of a 3 letter prefix and a 5 digit code.
Question
When you exit from a SQL*Plus session,the connection with the database is automatically closed.
Question
To log in to a database using SQL*Plus you only need to provide user name and password.
Question
A composite key is created using a value constraint.
Question
What is the default format for a DATE value?

A)MM/DD/YY
B)DD-MON-YY
C)MM/DD/YYYY
D)MON-DD-YYYY
Question
To view the column names and data types of the LOCATION table you would type DESCRIBE LOCATION;at the SQL*Plus prompt.
Question
Which of the following sql commands adds a new VARCHAR2 column of length 20 named new_column to table test?

A)ALTER TABLE test
ADD (new_column VARCHAR2(20))
B)ADD column new_column VARCHAR2(20)to TABLE test
C)ADD to TABLE test (new_column VARCHAR2(20))
D)ALTER TABLE test (new_column VARCHAR2(20))
Question
If you need to store a jpeg image in the database,which column declaration would you use?

A)my_image BLOB
B)my_image CLOB
C)my_image LOB
D)my_image BFILE
Question
When selecting the table_name column from the all_tables view which tables are displayed?

A)all tables in database
B)all tables in user's schema
C)all tables user has permission to manipulate
D)all newly created tables
Question
Which of the following pieces of information is not displayed by SQL*Plus when an error occurs?

A)error line number
B)error location
C)error code
D)suggested correction
Question
Almost all relational database vendors support the ____ ANSI standard.

A)SQL-88
B)SQL-92
C)SQL-93
D)SQL-99
Question
Which of the following is true when decreasing the maximum size of a CHAR column?

A)it is an unrestricted action
B)it is only permitted if all values are NULL
C)all values in the column will be truncated to the new size
D)all values larger than the new size will be automatically set to NULL
Question
Which command is used to disable the constraint named faculty_loc_id_fk in the faculty table?

A)MODIFY TABLE CONSTRAINT
DISABLE faculty_loc_id_fk;
B)ALTER TABLE faculty
DISABLE faculty_loc_id_fk;
C)MODIFY TABLE faculty
DISABLE faculty_loc_id_fk;
D)ALTER TABLE faculty
DISABLE CONSTRAINT faculty_loc_id_fk;
Question
Which of the following is not required to log in to an Oracle database using SQL*Plus?

A)password
B)database server ip
C)host string
D)user name
Question
Which of the following is not automatically transferred to a new table name upon renaming a table?

A)indexes
B)constraints
C)views
D)privileges
Question
Which of the following pieces of information about a table is not displayed when using the DESCRIBE command?

A)column name
B)column data type
C)not null settings
D)table constraints
Question
____ commands are used to add new database objects.

A)DML
B)DDL
C)DCL
D)XML
Question
Which of the following column data type changes is permitted?

A)DATE to CHAR
B)VARCHAR2 to CHAR
C)CHAR to NUMBER
D)NUMBER to DATE
Question
Which of the following LOB data types does not store the entire large object in the database?

A)BLOB
B)BFILE
C)CLOB
D)NCLOB
Question
SQL command words are also known as ____.

A)Java commands
B)terms
C)code words
D)reserved words
Question
Which command would be used to delete table x and all foreign key constraints to x?

A)delete x
B)delete x cascade constraints
C)drop x
D)drop x cascade constraints
Question
The ____ data type stores variable-length character data.

A)CHAR
B)VARCHAR
C)VARCHAR2
D)STRING2
Question
The Oracle Naming Standard states that objects must be from 1 to ____ characters long.

A)20
B)30
C)40
D)unlimited
Question
Which of the following data dictionary views can only be seen by users with special privileges?

A)USER
B)ALL
C)DBA
D)SCHEMA
Question
Which of the following is a table constraint?

A)not null constraint
B)check condition
C)unique constraint
D)default constraint
Question
Which of the following is not created using an integrity constraint?

A)foreign key
B)primary key
C)composite key
D)surrogate key
Question
A ____ is a character LOB,storing up to 4 GB of character data in the database.

A)BFILE
B)BLOB
C)CLOB
D)CHAR
Question
A(n)____________________ is a whole number with no digits on the right side of the decimal point.
Question
A(n)____________________ specifies the kind of data that the column stores.
Question
Fixed-length character data is stored in the ____________________ data type.
Question
The data objects within a user schema are called database objects or ____________________.
Question
Deleting columns from a table is a(n)____ action.

A)restricted
B)unrestricted
C)illegal
D)privileged
Question
____________________ are restrictions on the data values that a column can store.
Question
The ____ constraint specifies whether the user must enter a column for a specific record,or whether the value can be NULL (indeterminate or unknown).

A)INDEF
B)INPUT
C)NULL
D)NOT NULL
Question
____ constraints define specific data values or data ranges that must be inserted into columns and whether values must be unique or not NULL.

A)Value
B)Integrity
C)Redundancy
D)Range
Question
A(n)____ number would be best to store a currency value.

A)int
B)char
C)floating-point
D)fixed-point
Question
The VARCHAR2 data type stores variable-length character data up to a maximum of ____________________ characters.
Question
The CHAR data type stores fixed-length character data up to a maximum size of ____ characters.

A)2,000
B)4,000
C)10,000
D)unlimited
Question
Each SQL*Plus command is terminated with a(n)____.

A)period
B)semicolon
C)colon
D)exclamation mark
Question
Oracle10g stores character data in VARCHAR2 and CHAR columns using ____ encoding.

A)Unicode
B)ASCII
C)EBCDIC
D)Java
Question
The ____________________ specifies the number of digits on the right side of the decimal point.
Question
You use the ____ data type for any column that stores numerical data upon which users may perform arithmetic calculations.

A)NUMBER
B)NUMERIC
C)VAR
D)FLOAT
Question
______________________________ commands are used to insert,update,delete,and view data.
Question
The ____ TABLE command is used to modify an existing column's data declaration.

A)CHANGE
B)RESET
C)MODIFY
D)ALTER
Question
____________________ is the total number of digits both to the left and to the right of the decimal point.
Question
NVARCHAR2 and NCHAR store character data with ____________________ coding.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/100
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 2: Creating and Modifying Database Tables
1
If a column has a YEAR TO MONTH INTERVAL data type,then the value +02-11 specifies a positive time interval of 2 years and 11 months.
True
2
If a user only specifies the time when setting a value for a DATE column,the date portion will default to the current time.
False
3
Up to 6 GB of binary data can be stored in a BLOB column.
False
4
When declaring a NUMBER data type,scale is the total number of digits both to the left and to the right of the decimal point.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
5
A TIMESTAMP data type is the same as a DATE data type,except that time zone can be specified.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
6
A fixed-point number contains a specific number of decimal places.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
7
The CHAR data types stores up to 4,000 characters.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
8
The Oracle DBMS stores columns of all data types in the same amount of space.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
9
The following declaration represents a floating-point number: my_number NUMBER.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
10
The CHAR and VARCHAR2 data types store Unicode character data.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
11
To create a table it is only necessary to specify column names.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
12
A user schema contains all database objects created by a user.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
13
Using the CHAR data type causes a column value to be padded to the maximum declared size of the column.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
14
The SQL command to create a database table is an example of DML.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
15
The VARCHAR2 data type can store up to 4,000 characters.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
16
According to the Oracle Naming Standard,'-' (hyphen)is a legal character.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
17
A NOT NULL constraint is an example of a table constraint.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
18
Given the column declaration name CHAR(5),if a user attempted to store the value "Jonathan" in the name column,only the first 5 characters would be stored.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
19
The following declaration represents an integer: my_int number(4,2).
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
20
A primary key is defined using an integrity constraint.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
21
Which of the following is a legal character in the Oracle Naming Standard?

A)%
B)^
C)#
D)*
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
22
To check that the value entered into a CHAR column is either 'M' or 'F',you would use a check condition constraint.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
23
Which of the following declares a column named "name" that always contains exactly 30 characters?

A)VARCHAR2(30)name
B)CHAR(30)name
C)name VARCHAR2(30)
D)name CHAR(30)
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
24
Which of the following is not required when creating a table?

A)table size
B)table name
C)column names
D)column data types
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
25
You can change a column data type from VARCHAR2 to NUMBER.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
26
You can always rename a table.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
27
In an INTERVAL YEAR TO MONTH data type,which of the following indicates a positive time interval of 2 years and 11 months?

A)2-11
B)+2-11
C)+02-11
D)11-02
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
28
Which of the following data types is used to store variable length ASCII character data?

A)CHAR
B)NCHAR
C)VARCHAR2
D)NVARCHAR2
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
29
If the column S_ID is the primary key of the STUDENT table,the constraint name would be pk_STUDENT_S_ID according to the constraint naming convention.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
30
Which of the following declarations would be most appropriate for storing a dollar value up to $1000?

A)price NUMBER(5,2)
B)price NUMBER(5)
C)price NUMBER(2)
D)price NUMBER
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
31
It is possible to temporarily disable constraints in an Oracle database.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
32
Which of the following is not part of a DDL command?

A)create table ...
B)drop table ...
C)create constraint ...
D)select table_name from ...
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
33
Which of the following is not a legal table name according to the Oracle Naming Standard?

A)#COURSE_ID
B)COURSE$ID
C)COURSEID
D)COURSE_ID
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
34
If a user enters only a time into a DATE column,what will the date portion be set to?

A)January 1,1970
B)first day of the current year
C)first day of the current month
D)current date
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
35
An Oracle error consists of a 3 letter prefix and a 5 digit code.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
36
When you exit from a SQL*Plus session,the connection with the database is automatically closed.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
37
To log in to a database using SQL*Plus you only need to provide user name and password.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
38
A composite key is created using a value constraint.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
39
What is the default format for a DATE value?

A)MM/DD/YY
B)DD-MON-YY
C)MM/DD/YYYY
D)MON-DD-YYYY
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
40
To view the column names and data types of the LOCATION table you would type DESCRIBE LOCATION;at the SQL*Plus prompt.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
41
Which of the following sql commands adds a new VARCHAR2 column of length 20 named new_column to table test?

A)ALTER TABLE test
ADD (new_column VARCHAR2(20))
B)ADD column new_column VARCHAR2(20)to TABLE test
C)ADD to TABLE test (new_column VARCHAR2(20))
D)ALTER TABLE test (new_column VARCHAR2(20))
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
42
If you need to store a jpeg image in the database,which column declaration would you use?

A)my_image BLOB
B)my_image CLOB
C)my_image LOB
D)my_image BFILE
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
43
When selecting the table_name column from the all_tables view which tables are displayed?

A)all tables in database
B)all tables in user's schema
C)all tables user has permission to manipulate
D)all newly created tables
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
44
Which of the following pieces of information is not displayed by SQL*Plus when an error occurs?

A)error line number
B)error location
C)error code
D)suggested correction
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
45
Almost all relational database vendors support the ____ ANSI standard.

A)SQL-88
B)SQL-92
C)SQL-93
D)SQL-99
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
46
Which of the following is true when decreasing the maximum size of a CHAR column?

A)it is an unrestricted action
B)it is only permitted if all values are NULL
C)all values in the column will be truncated to the new size
D)all values larger than the new size will be automatically set to NULL
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
47
Which command is used to disable the constraint named faculty_loc_id_fk in the faculty table?

A)MODIFY TABLE CONSTRAINT
DISABLE faculty_loc_id_fk;
B)ALTER TABLE faculty
DISABLE faculty_loc_id_fk;
C)MODIFY TABLE faculty
DISABLE faculty_loc_id_fk;
D)ALTER TABLE faculty
DISABLE CONSTRAINT faculty_loc_id_fk;
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
48
Which of the following is not required to log in to an Oracle database using SQL*Plus?

A)password
B)database server ip
C)host string
D)user name
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
49
Which of the following is not automatically transferred to a new table name upon renaming a table?

A)indexes
B)constraints
C)views
D)privileges
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
50
Which of the following pieces of information about a table is not displayed when using the DESCRIBE command?

A)column name
B)column data type
C)not null settings
D)table constraints
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
51
____ commands are used to add new database objects.

A)DML
B)DDL
C)DCL
D)XML
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
52
Which of the following column data type changes is permitted?

A)DATE to CHAR
B)VARCHAR2 to CHAR
C)CHAR to NUMBER
D)NUMBER to DATE
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
53
Which of the following LOB data types does not store the entire large object in the database?

A)BLOB
B)BFILE
C)CLOB
D)NCLOB
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
54
SQL command words are also known as ____.

A)Java commands
B)terms
C)code words
D)reserved words
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
55
Which command would be used to delete table x and all foreign key constraints to x?

A)delete x
B)delete x cascade constraints
C)drop x
D)drop x cascade constraints
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
56
The ____ data type stores variable-length character data.

A)CHAR
B)VARCHAR
C)VARCHAR2
D)STRING2
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
57
The Oracle Naming Standard states that objects must be from 1 to ____ characters long.

A)20
B)30
C)40
D)unlimited
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
58
Which of the following data dictionary views can only be seen by users with special privileges?

A)USER
B)ALL
C)DBA
D)SCHEMA
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
59
Which of the following is a table constraint?

A)not null constraint
B)check condition
C)unique constraint
D)default constraint
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
60
Which of the following is not created using an integrity constraint?

A)foreign key
B)primary key
C)composite key
D)surrogate key
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
61
A ____ is a character LOB,storing up to 4 GB of character data in the database.

A)BFILE
B)BLOB
C)CLOB
D)CHAR
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
62
A(n)____________________ is a whole number with no digits on the right side of the decimal point.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
63
A(n)____________________ specifies the kind of data that the column stores.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
64
Fixed-length character data is stored in the ____________________ data type.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
65
The data objects within a user schema are called database objects or ____________________.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
66
Deleting columns from a table is a(n)____ action.

A)restricted
B)unrestricted
C)illegal
D)privileged
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
67
____________________ are restrictions on the data values that a column can store.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
68
The ____ constraint specifies whether the user must enter a column for a specific record,or whether the value can be NULL (indeterminate or unknown).

A)INDEF
B)INPUT
C)NULL
D)NOT NULL
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
69
____ constraints define specific data values or data ranges that must be inserted into columns and whether values must be unique or not NULL.

A)Value
B)Integrity
C)Redundancy
D)Range
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
70
A(n)____ number would be best to store a currency value.

A)int
B)char
C)floating-point
D)fixed-point
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
71
The VARCHAR2 data type stores variable-length character data up to a maximum of ____________________ characters.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
72
The CHAR data type stores fixed-length character data up to a maximum size of ____ characters.

A)2,000
B)4,000
C)10,000
D)unlimited
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
73
Each SQL*Plus command is terminated with a(n)____.

A)period
B)semicolon
C)colon
D)exclamation mark
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
74
Oracle10g stores character data in VARCHAR2 and CHAR columns using ____ encoding.

A)Unicode
B)ASCII
C)EBCDIC
D)Java
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
75
The ____________________ specifies the number of digits on the right side of the decimal point.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
76
You use the ____ data type for any column that stores numerical data upon which users may perform arithmetic calculations.

A)NUMBER
B)NUMERIC
C)VAR
D)FLOAT
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
77
______________________________ commands are used to insert,update,delete,and view data.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
78
The ____ TABLE command is used to modify an existing column's data declaration.

A)CHANGE
B)RESET
C)MODIFY
D)ALTER
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
79
____________________ is the total number of digits both to the left and to the right of the decimal point.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
80
NVARCHAR2 and NCHAR store character data with ____________________ coding.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 100 flashcards in this deck.