Author |
Topic: Test the functionality of this stapler (Read 5329 times) |
|
MessesUpGuy
Guest
|
|
Test the functionality of this stapler
« on: May 16th, 2003, 7:42am » |
Quote Modify
Remove
|
My friend interviewed with MS 2 months back and the following were asked and I thought it might be helpful to stir some of yor thought process. Test the following: a) the functionality of this stapler b) a function that compares 2 dates c) a program that turns the monitor an unexpected color when you press a certain key on the keyboard. d) a given user input/output box. -cheers
|
|
IP Logged |
|
|
|
MattyDK23
Newbie
Gender:
Posts: 46
|
|
Re: Test the functionality of this stapler
« Reply #1 on: May 25th, 2003, 2:46pm » |
Quote Modify
|
on May 16th, 2003, 7:42am, MessesUpGuy wrote: Test the following: b) a function that compares 2 dates |
| I had an interview with an IT company two weeks ago, and they said to assume they had a database that recorded dates using "format x" -- similar to a Unix timestamp in that it recorded dates using only a number. The only function I was allowed to use was convert("MM-DD-YYYY") to see what a date was in "format x". He asked me to determine a function to convert these numbers into dates. I was stumped. First question: Can I assume "format x" is linear in it's growth? Nope...so it might be linear (which would make it a lot easier), but it might not be. And where is the 'zero' date, ie: Jan 1 1970 is the Unix epoch. Second question: Can assume convert("MM-DD-YYYY") increases as the date increases / ages? Sure...helps a bit... Yeah...I just said to insert() dates and try and find a curve with the results...it was pathetic, I didn't get the job.
|
|
IP Logged |
|
|
|
towr
wu::riddles Moderator Uberpuzzler
Some people are average, some are just mean.
Gender:
Posts: 13730
|
|
Re: Test the functionality of this stapler
« Reply #2 on: May 25th, 2003, 3:16pm » |
Quote Modify
|
you could have tried binary search.. Aside from a unix-like time stamp, you could also have something like YYYYMMDD(hhmmss), simply concattenating year, month and date (and time), it's increasing with time, but non-linear.
|
|
IP Logged |
Wikipedia, Google, Mathworld, Integer sequence DB
|
|
|
James Fingas
Uberpuzzler
Gender:
Posts: 949
|
|
Re: Test the functionality of this stapler
« Reply #3 on: Jun 10th, 2003, 10:13am » |
Quote Modify
|
Hey, now that computers are fast, just try every possible date until you find the right one... I think binary search is probably what they were looking for. You only have to assume that the number increases as the date increases.
|
|
IP Logged |
Doc, I'm addicted to advice! What should I do?
|
|
|
Phuoc
Guest
|
|
Re: Test the functionality of this stapler
« Reply #4 on: Jul 10th, 2003, 12:42pm » |
Quote Modify
Remove
|
on May 16th, 2003, 7:42am, MessesUpGuy wrote:My friend interviewed with MS 2 months back and the following were asked and I thought it might be helpful to stir some of yor thought process. Test the following: a) the functionality of this stapler b) a function that compares 2 dates c) a program that turns the monitor an unexpected color when you press a certain key on the keyboard. d) a given user input/output box. -cheers |
| Here's the answer to a): Function DoesStaplerWork() Interviewer.Hand.PlaceOnTable Interviewer.Hand.StapleToTable If Interviewer.Scream Then DoesStaplerWork = True ElseIf NOT Interviewer.Scream Then DoesStaplerWork = False End If End Function Cheers, Phuoc http://www.phuoc.com
|
|
IP Logged |
|
|
|
Chewdog
Newbie
Gender:
Posts: 50
|
|
Re: Test the functionality of this stapler
« Reply #5 on: Jul 10th, 2003, 9:00pm » |
Quote Modify
|
The interviewer probably just want to know how many ways you can test to see how efficent the stapler is. Here goes: 1. The length of the staples inside.... if long then they can staple large stacks of documents making it more efficient 2. the lenth from the hinge to the head of the stapler... If it's long then u can staple the center part of a document such as a pamphlet. 3. How many staples can it hold at once... more is always better 4. Is it electronic? there for you do not have to push down on it 5. can u use it to staple things to walls? 6. Does it staple everytime, or does it sometimes mess up? 7. Does it have any other uses? more points if more uses 8. Does it have a warantee? 9. Wat's the color? Based on the answers to the last nine evaluations u should be able to test the functionality very well
|
|
IP Logged |
|
|
|
|