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
Explain the three services model (three-tier application). Presentation (ui), business (logic and underlying code) and data (from storage or other sources).
What is default value of enum c#?
Is a c# interface the same as a c++ abstract class?
Which .gang of four. Design pattern is shown below?
Explain the difference between .net and c#?
What is predicate c#?
What are some examples of desktop applications?
Define c# delegate?
Why we use get and set property in c#?
What is the use of tuple in c#?
What is the purpose of escape sequence?
What is difference between string and stringbuilder in c#?
What is the relationship between a process, application domain, and application?
Is c# an open source language?
Explain acid rule of thumb for transactions in c#.