Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Interview Questions-2
#2
Not Solved
For 2nd Question the reply is

Code:
'Taking All the Alphabets at iniative and reversing the string
s = StrReverse("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
MsgBox s
' At runtime provide the data so that these letters will not appear in output andthis string will be taken in Capital letters
x = UCase(InputBox("Enter a string : "))
MsgBox x
'taking each value from String s and initializing the count variable
For i=1 to len(s)
    a =mid(s,i,1)
    cnt =0
'taking string as one character at a time at runtime which should be checked
    For j=1 to len(x)
        b = Mid(x,j,1)
' Comparing the values of a and b,if they are not equal i am incrementing the count.        
        If a<>b Then
                        cnt =cnt+1
        End If
                        Next
'Identifying the string length which i have given at runtime,then iam going to print the character
            If cnt=len(x)Then
                      print a
        End If
        Next

Now Enjoy
Reply


Messages In This Thread
Interview Questions-2 - by supputuri - 06-02-2012, 11:56 AM
RE: Interview Questions-2 - by eswar - 07-27-2012, 12:04 PM
RE: Interview Questions-2 - by elango87 - 12-07-2012, 06:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Interview Questions praveen.sharma 4 5,546 08-23-2022, 02:07 PM
Last Post: ahmad3029
  Interview Questions supputuri 12 12,684 08-23-2022, 11:45 AM
Last Post: ahmad3029
  Interview question nandha 0 1,733 03-28-2018, 03:32 PM
Last Post: nandha
  Few Interview Question asked in various Companies.. shailesh.2.singh@bt.com 1 3,288 08-08-2017, 09:24 AM
Last Post: mallika199317@gmail.com
  Interview Question raghavaqtp 1 3,538 12-20-2014, 09:55 PM
Last Post: supputuri

Forum Jump:


Users browsing this thread: 1 Guest(s)