TCP/IP is the standard set of protocols. Note that these are actually 2 protocols working together.
TCP (Transmission Control Protocol) is responsible for ensuring the reliable transmission of data across Internet-connected networks, while IP (Internet Protocol) defines how to address and route each data packet to make sure it reaches the right destination.
Let me know if you have any questions.
2. Web Browser
3. Test Editor
4. Application software
I think that number 1 HTML
the answer is correct mark me as brain list
Answer:
Actually they are wrong the answer is Web Browser!
Explanation:
a. True
b. False
Answer:
~ I've done the test.
Answer:
This program will complete in 5 iterations,
initially
Seq[0]=3
Iteration 1:
loop starting from 1 and ends at 5 so
when K=1, then seq[1]=1
if seq[1]>=Seq[0] ==> 1 is not greater than equal to 3
so "nothing to print because condition not true"
Iteration 2:
Now
K=2 so seq[2]=8
if seq[2]>=Seq[0] ==> 8 is greater than equal to 3
so "condition is true" the output will be
output="8","2" means seq[k]=8 and K=2
Iteration 3:
Now
K=3 so seq[3]=4
if seq[3]>=Seq[0] ==> 4 is greater than equal to 3
so "condition is true" the output will be
output="4","3" means seq[k]=4 and K=3
Iteration 4:
Now
K=4 so seq[4]=2
if seq[4]>=Seq[0] ==> 2 is not greater than equal to 3
so "condition is not true" the output will be
output=nothing
Iteration 5:
Now
K=5 so seq[5]=5
if seq[5]>=Seq[0] ==> 5 is greater than equal to 3
so "condition is true" the output will be
output="5","5" means seq[k]=5 and K=5
Explanation: