Mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
Answer:
public class CheckPalindrome{
public static boolean IsPalindrome(String str){
if(str.Length<1)
{
return true;
}
else
{
if(str[0]!=str[str.length-1])
return false;
else
return IsPalindrome(str.substring(1,str.Length-2));
}
}
public static void main(string args[])
{
//console.write("checking palindromes");
string input;
boolean flag;
input=Console.ReadLine();
flag= IsPalindrome(input);
if(flag)
{
Console.WriteLine("Received"+input+"is indeed palindrome");
}
else
{
Console.WriteLine("received"+input+"is not a palindrome");
}
}
Explanation:
<span>Software that interprets commands from the keyboard and mouse is also known as Operating system.The Mouse will let you communicate and operate with the monitor in a computer.Not only mouse keyboard also plays the same role.But it is very easy to use rather than keyboard.sing MouseKeys can help someone move the pointer in smaller, controlled increments for better control</span>
Answer:Transport Layer
Explanation: Transport layer belongs to the OSI architecture that helps in maintaining the end to end transporting and delivery over a network. It fulfills the duties like error free communication, Delivering data from source to destination.Over a network, it uses the internet and TCP(Transfer control protocol), UDP(user datagram protocol) etc. for transporting data.