Answer: B
Explanation: a fisheye lense is good for wide shots.
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.
Answer:
"Feedback" is the correct answer for the above question.
Explanation:
- Feedback is used in any information system or any communication system to tells that any process is doing in the right direction.
- It is used in communication channels to tell the sender that the message is received by the receiver.
- It is a type of message which is sent by the user to the system that he gets the correct or wrong output by that system.
- The above question asked about the term which is used in the information system which suggests changing the processing activity. This is known as feedback which is described above.
public class MyClass {
public static void printChar(char ch1, char ch2, int numberPerLine){
int i = 0;
for (char c = ch1; c <= ch2; c++){
while (i < numberPerLine){
System.out.print(c + " ");
i += 1;
}
System.out.println("");
i = 0;
}
}
public static void main(String args[]) {
printChar('a', 'z', 10);
}
}
So far, this works by printing letters. If you need me to modify the code, I will.
Ancient mode of transmission are used by people in the past while modern mode of transmission are used by present people