Answer Posted / sayan
Private Sub btnAnswer_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles btnevaluate.Click
Dim Input As String
If IsPalindrome(Input) Then
txtAnswer.Text = "True"
Else
txtAnswer.Text = "False"
End If
End Sub
Function IsPalindrome(ByVal Input As String) As Boolean
Dim Front As Integer
Dim Back As Integer
Dim Middle As Integer
Dim nPalindrome As Boolean
IsPalindrome = False
nPalindrome = True
Back = Input
Middle = Back / 2
Front = 1
If (Back < 1) Then
Exit Function
End If
Do While (Front <> Back And Front <= Middle)
If (Mid(Input, Front, 1) <> Mid(Input, Back, 1)) Then
nPalindrome = False
Exit Do
End If
Back = Back - 1
Front = Front + 1
Loop
IsPalindrome = nPalindrome
Exit Function
End Function
End Class
| Is This Answer Correct ? | 7 Yes | 6 No |
Post New Answer View All Answers
What is the difference between an application domain and a process?
What is the use of iqueryable in c#?
What are PE(Portable Executable)?
Is c sharp open source?
What is a generic class?
What is wpf c#?
What is the difference between finally and finalize block?
Contrast System.String and System.Text.StringBuilder classes?
What is icomparer in c#?
Explain hash table in c# ?
How do switch statements work?
What is as keyword in c#?
What is difference between singleton and static class in c#?
What is a nested type. Give an example?
What is public or shared assemblies ?