write program in C# for palindrome? (aug 2009)
write program in C3 for generating below output?(aug 2009)
#
# #
# # #
# # # #

Answers were Sorted based on User's Feedback



write program in C# for palindrome? (aug 2009) write program in C3 for generating below output?(aug..

Answer / elan

string sName = "elan";
char[] aName = sName.ToCharArray();
Array.Reverse(aName);
string sReversedName = new string(aName);
if (sName == sReversedName)
{
MessageBox.Show("it is palindrome");
}
else
{
MessageBox.Show("it is not palindrome");
}

Is This Answer Correct ?    25 Yes 10 No

write program in C# for palindrome? (aug 2009) write program in C3 for generating below output?(aug..

Answer / kanan

int k = 3;

for (int i = 1; i <= 4; i++)
{
for (int j = k; j > 0; j--)
{
Response.Write("&nbsp;&nbsp;");
}
for (int x = 0; x < i; x++)
{
Response.Write("#");
Response.Write("&nbsp;&nbsp;");
}
k--;
Response.Write("<br/>");

Is This Answer Correct ?    15 Yes 1 No

write program in C# for palindrome? (aug 2009) write program in C3 for generating below output?(aug..

Answer / elan

Hi Kanan,

Your code will work, however it was very standard one and
in interview, interviewer will expect candidate to provide
answers with regards to Array. In that point of view we
have provide answers using array. It will express our
knowledge in Array to employer.

I hope my answer make sence. Please provide your comments
if you have anything.

Is This Answer Correct ?    6 Yes 1 No

write program in C# for palindrome? (aug 2009) write program in C3 for generating below output?(aug..

Answer / elan

Hi Kannan,

Also my reply is for the following question.

write program in C# for palindrome? (aug 2009)

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More C Sharp Interview Questions

What is Co- and Contra-Variance in C#?

0 Answers  


Describe ways of cleaning up objects.

8 Answers   Wipro,


What is join in c#?

0 Answers  


What are the types of access modifiers?

0 Answers  


Which is faster iqueryable or ienumerable?

0 Answers  






Are tuples immutable c#?

0 Answers  


List the different stages of a thread?

0 Answers  


Explain About .Net remoting

0 Answers   Digital GlobalSoft,


What is the benefit of interface in c#?

0 Answers  


How many bytes is an int in c#?

0 Answers  


can you declare an override method to be static if the original method is not static?

0 Answers   Siebel Systems,


Where is the output of TextWriterTraceListener redirected?

1 Answers   Rolta, Siebel Systems,


Categories