Poll: rate the questions
You do not have permission to vote in this poll.
good
0%
0 0%
average
0%
0 0%
wrost
0%
0 0%
extra ordinary
0%
0 0%
superb
0%
0 0%
Total 0 vote(s) 0%
* You voted for this item. [Show Results]

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Amazing Interview Questions
#3
Not Solved
1. How a function can return two values.? write the code for the function.. ?
Code:
'''using two output parameters while defining a function
'' defining function with one input and two output parameters
Function TwoValues(inVal, outVal1, outVal2)
'''' processes
''....
''....

''assigning values to output parameters
   outVal1 = 1234
   outVal2 = 2222
End Function

''calling the function
TwoValues x, y, z
MsgBox y
MsgBox z

Code:
'''using arrays
Function TwoValues()
TwoValues = Array("abcd", "efgh")

End Function

x = TwoValues()

MsgBox x(0)
MsgBox x(1)

2. compare two date "10/10/2013" and "10-octomber-2013" and return true or false.?
Code:
date1 = "10/10/2013"
date2 = "10-october-2013"

dateArray1 = Split(date1, "/", -1, 1)
dateArray2 = Split(date2, "-", -1, 1)

If dateArray1(0) = dateArray2(0) And _
UCase(MonthName(dateArray1(1))) = UCase(dateArray2(1)) And _
dateArray1(2) = dateArray2(2) Then
    MsgBox True
Else
    MsgBox False

End If
Reply


Messages In This Thread
Amazing Interview Questions - by amanjain42 - 07-09-2013, 11:52 PM
RE: Amazing Interview Questions - by Ankur - 07-10-2013, 10:38 AM
RE: Amazing Interview Questions - by nakulgupta18 - 08-20-2013, 03:07 AM
RE: Amazing Interview Questions - by anu05446 - 01-27-2014, 01:32 PM
RE: Amazing Interview Questions - by anu05446 - 01-27-2014, 03:55 PM

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

Forum Jump:


Users browsing this thread: 1 Guest(s)