Posts

switching

Image
Switching Switching is one of the most important aspect of computer networking. In todays world we use internet quite often from searching information, watching videos to all our bank operational stuffs. Well this has been possible just because of switching. So, what is switching that might be the first question one may ask. Switching is basically the mechanism of information exchange between computer networks and network segments. Switching can be classified in two segments:  - Connection oriented switching -      i. Handshaking will be there. ii. In this handshaking generally strobe signals are used. iii. Each packet is sent through the same route iv. For faster data transfer, we use connection-oriented switching. v. Example- ATM, PCM, frame relay vi. Basically, there are 3 phases in this- a. Connection will be set-up or connection set-up b. Data will be transmitted or data transmission c. Release  Connectionless switching-              i. Handshaking is

C LANGUAGE TUTORIAL-(2)-PALINDROME STRING

Image
PALINDROME STRING "Palindrome" is a greek word;the world "palin" means  back and "drome" means direction.a string is said to be palindrome if by moving forward and reverse traversal we get the same result.lets take an example:-if we consider "malayalam" string as a input,so by moving start to end(forward traversal)and end to start(reverse traversal)we will get the same result,so we can say this is palindrome,on the other hand if we take the word"electronics",then it is non-palindrome because if we  take the backward traversal we are getting "scinortcele"(reverse of the word electronics). Example:-"madam","malayalam","civic". Flowchart:-                      Program code using c:- CODE:- #include<stdio.h> #include<conio.h> #include<string