Answer:
Kindly check explanation
Explanation:
The SQL statement above could be interpreted as follows :
create table command is used to create a table named 'persons' with five columns which are labeled :
person I'd : whose data type is an integer
last name column with a variable character data type with maximum length of 255
first name column with a variable character data type with maximum length of 255
address column with a variable character data type with maximum length of 255
city column with a variable character data type with maximum length of 255
The VARCHAR data type is ideal since we expect the column values to be of variable length.
Answer:
1 C
2 D
3 B
4 A
5 D
6 B (the question should state software that manages ...)
7 D
8 C
9 A
10 B
11 C
12 D
13 B
Explanation:
Answer:
Security Tab is the correct answer.
Explanation:
The Security Tab will enable the users to authorize anyone to use that file or directory.Many clients deleted the security tab because After that nobody can alter the security privileges on the device.
- With the help of the Security tab, we will minimize the ActiveX attacks on Internet Explorer. This option is available in the Internet Options of the dialog box.
- Other options are incorrect because they are not related to a given scenario.
D. All of the above
Sorry If Wrong
Answer:
SELECT MAX(salary), MIN(salary) FROM salaries WHERE job_id=101
Explanation:
Assumptions were made on the column and table names...