No
TCP is the protocol of network layer, It is connection oriented protocol. UDP is the protocol of network layer, It is connection less protocol.
UDP and TCP both are transport layer protocols. UDP is connection less and TCP is connection oriented. UDP is preferred over TCP when large amount data is to be sent like on skype or video conferencing .
DHCP is a connectionless protocols. In general, any protocol that is based on TCP port alone is a connection-oriented protocol while any protocol that is based on UDP port alone is a connectionless protocol. And a protocols that can work on both TCP and UDP port can be either a connection-oriented or a connectionless protocol depending upon the which protocol is used (TCP or UDP). For checking other protocols if they are connection-oriented or connectionless check http://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers
If FTP did not have TCP working with it, it could be considered connectionless. TCP is connection oriented and it verifies the FTP transfers have been received. Therefore it is considered Connection Oriented. If FTP used UDP it would be considered connectionless as UDP just sends the data and never checks to see if it all made it to the recipient -
Different from a connectionless protocol, a connection-oriented protocol guaranties the delivery of the information. An example of connection-oriented protocol is (TCP) and a connectionless protocol is (UDP). TCP is a connection-oriented protocol, it makes a connection and checks whether the data is received, and resends if it is not. UDP is a connectionless protocol, it does not guarantee delivery by first connecting and checking whether data is received.
in udp there is no check for error detection as well as the packect has reached to destination or not. where as tcp takes care of all this that's why it is slower than udp.
UDP
Because UDP does not use handshaking, connection-oriented transmission, and is thus much faster.
Different from a connectionless protocol, a connection-oriented protocol guaranties the delivery of the information. An example of connection-oriented protocol is (TCP) and a connectionless protocol is (UDP). page/926 A+
flow control low overhead connectionless connection-oriented sequence and acknowledgements
TCP is connection oriented protocol,mean it ensure that a packet is delivered and also set up a connection before sending data to destination source and destination exchange several control signal before sending data.If a packet is lost,TCP resend it. UDP does not establish any communication before sending data.It sends data and forget it.If a packet is lost,application using UDP cannot resend it.A example of UDP is voip,if a packet is lost,a part of conversation is also lost and can not be resend
The transmission control protocol or TCP is used for connection oriented transmissions of data into a computer. The user datagram protocol or UDP is used to transmit simpler data into a computer.