Start learning 50% faster. Sign in now
Transmission Control Protocol (TCP) is responsible for providing reliable, ordered, and error-checked delivery of data between devices over a network. TCP ensures that data packets are transmitted correctly, in the correct order, and without errors, making it ideal for applications requiring reliability, such as file transfers and web communications. TCP uses acknowledgments and retransmissions to guarantee that the data reaches its destination. A (Incorrect): HTTP is an application-layer protocol used for transmitting web pages over the internet, but it does not provide reliability at the transport layer like TCP. B (Incorrect): IP (Internet Protocol) is responsible for addressing and routing packets between devices, but it does not ensure reliable delivery by itself. C (Incorrect): FTP (File Transfer Protocol) is an application-layer protocol for transferring files, but it relies on TCP for reliable data transfer. E (Incorrect): UDP (User Datagram Protocol) is a connectionless protocol that does not guarantee reliable data transfer; it is used when speed is more important than reliability.
In deep learning, which type of neural network is most suitable for sequential data like time series?
Which algorithm is most suitable for solving optimization problems in Numerical and Statistical Computing?
When using virtual memory, what happens when a page fault occurs and the operating system cannot find a free frame in physical memory?
Which of the following cloud service models provides the most control over the underlying infrastructure to the user?
Predict the program output
void main ()
{
int x = 128;
printf ("n%d", 1 + x++);
}
Definition of brute force attack
In software engineering, what is the primary purpose of the software development life cycle (SDLC)?
In the Least Recently Used (LRU) page replacement algorithm, given the following reference string 4, 2, 4, 1, 5, 2, 3, 4, and assuming 3 frames, how man...
In which scenario would para virtualization be preferred over full virtualization?