Answer: True
Explanation: TCP(Transmission control protocol) is the protocol that is responsible for making the connection between the two hosts and then they can share the data between them.
TCP guarantees that the data or data packets that are being sent from the source will be delivered to the host in the same way as it was sent from source port. This mechanism ensure that there will be no data manipulation in the order of the data. TCP also has a relation with the IP for the functioning.Thus the given statement is true.
Taking brakes every hour so your eyes don't start to strain.
Answer: Insertion steganography
Explanation: Insertion steganography is the way of encrypting the data with the help of a regular files and message. It is encrypted by the ordinary files because the identification of files can be neglected. This process is carried out just for the protection purpose in extra form and gets decrypted in the destination port .It has the working based on the replacement of the bits in a file .
the first row in a table is classed as the header row.
and with the last one I'm not sure because as far as I know there's not considered a last row.
Answer:
Following are the code to the given question:
#include <iostream>//header file
using namespace std;
int main()//main method
{
int r=26,x,y;//defining integer variable
char c;//defining a character variable
for(x= 1; y<= r; x++)//using for loop for count value
{
for(y= 1; y<= x; y++)//using for loop to convert value in triangle
{
c=(char)(y+64);//convert value into character
cout << c;//print character value
}
cout << "\n";//use print method for line break
}
return 0;
}
Output:
Please find the attachment file.
Explanation:
In this code, three integer variable "x,y, and r", and one character variable "c" is declared, that is used in the nested for loop, in the first for loop it counts the character value and in the next for loop, it converts the value into a triangle and uses the char variable to print its character value.