Answer:
1. From the command prompt, type:
pgp --encrypt "my-message.txt" --recipient "Sean" --output "secret-message.txt.gpg"
2. Press Enter.
Explanation:
From the command line, the above command is entered and Enter is pressed.
The command start with pgp, then it has different options:
--encrypt: this specifies the input file to be encrypted
--recipient: this specifies the specific user to which the file is been encrypted
--output: this specifies the name to which the output (encrypted file) is saved.
Answer:
The correct answer for the following question will be A. Cipher code.
Explanation:
Cipher code:
Ciphers are potentially the cryptographic central pillar. A cipher is usually an algorithm to perform both encryption and decryption.
Secret key encryption relies on the use of symmetric ciphers. Whether the goal is to convert plaintext to ciphertext and vice-versa. The secret key is shared on both ends, and the person having the secret key can only encrypt and decrypt the data.
So, option A is a suitable answer.
In some database programs, a data file referred to as a table option (a) is correct.
<h3>What is a database?</h3>
A database in computer is a structured data collection that is technologically accessible and stored.
The question is incomplete.
The complete question is:
In some database programs, a data file is referred to as a(n) ______.
a. table
b. unit
c. record
d. sheet
A data file is known as a table in some database applications.
A database system contains vital info about a business; when the data is processed, it becomes valuable knowledge about the business and aids in choice.
Thus, in some database programs, a data file referred to as a table option (a) is correct.
Learn more about the database here:
brainly.com/question/6447559
#SPJ4
<h3>The maximum discount using SQL</h3>
Product_Id Product_Name Category Price Discount Available
1 P-1 C-5 720 10 1
2 P-2 C-1 935 17 1
3 P-3 C-2 588 19 1
4 P-4 C-4 619 5 0
5 P-5 C-1 803 16 1
<h3>The Output </h3>
C-1 2 17
C-2 3 19
C-4 4 5
C-5 1 10
The code that would print the fields in SQL for the maximum discount is:
WITH newTable AS (
SELECT
t.Category,
t.Product_Id,
b.Discount as maxDiscount,
ROW_NUMBER() OVER (
PARTITION BY t.Category
ORDER BY Product_Id DESC
) AS [ROW NUMBER]
FROM Products t
INNER JOIN
(
SELECT MAX(Discount) as maxDiscount, Category
FROM Products
GROUP BY Category
) b ON t.Discount = b.Discount AND t.Category = b.Category)
select Category,Product_Id,maxDiscount from newTable
WHERE newTable.[ROW NUMBER] = 1
Read more about SQL here:
brainly.com/question/25694408
#SPJ1
I believe the answers are:
3. B
4. D