Answer:
a) INFO2 file
Explanation:
When a file is deleted and moved to the Recycle Bin generates its own records inside a INFO2 file. These files save data from the deleted file, so it can be analyzed later. The size of a INFO2 file is 800 bytes usually.
The data saved into this files is:
- Original location of the removed file
- Date and time when deleted
- Physical size of the deleted file
<span>One emerging type of Trojan horse is called a remote-access Trojan (RAT).
</span> RAT is a malware program. With this Trojan horse an intruder is given administrative control over a target computer. The RAT controls the system via a remote network connection as if by physical access. It is typically installed<span> invisibly with a user-requested program.</span>
C. is very thin, thus allowing harmful gases to escape from it
Answer:
DROP TABLE
Explanation:
DROP TABLE is used to remove a database table in Oracle.
The syntax is DROP TABLE <TableName>;
For example: Suppose there is a table called Student in the database which needs to be removed. Then the administrator with the required privilege can issue with the following command:
DROP TABLE Student;
This is distinct from DELETE statement which is used to delete individual row or set of rows.