The first micro blogs was once known a tumblogs
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:
Answer is: looking through many lines of code for errors that cause bugs
Explanation:
A software engineer with a detail oriented personality has the patience and aptitude for looking through many lines of code for errors that cause bugs
Because software writes many lines of code for developing different application so he has to go through through many lines of code for errors that causes a bug or errors.
I hope you got the idea and answer thanks.