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 int.parse and int.tryparse methods?
What will be the output of the following code?
Which sorting algorithm is best?
What is streamreader/streamwriter class?
If multiple interfaces are inherited and they have conflicting method names; What will happen ?
Describe an interface class?
Explain the difference between directcast and ctype.
Is list immutable in c#?
If you want to convert a base type to a derived type, what type of conversion do you use?
Is an interface a type c#?
What are the fundamental differences between value types and reference types?
What is the syntax for calling an overloaded constructor within a constructor (this() and constructorname() does not compile)?
How long does it take to learn c# for unity?
What is serialization in c#?
What is the process of Serialization?