From 05be4c4776ee63f25207dc203233252908ba2657 Mon Sep 17 00:00:00 2001 From: Adrian Hum Date: Thu, 26 Nov 2015 16:32:52 +1100 Subject: [PATCH] Update Exercises(Plaintext).txt I propose that we add a list of common programing challenges that you may encounter at an interview. Also, that the questions should be rated somehow as being fair, unfair, or have no actual possible answer but are about finding problem solving skills. --- Exercises/Exercises(Plaintext).txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Exercises/Exercises(Plaintext).txt b/Exercises/Exercises(Plaintext).txt index d6d51c8..965ce3f 100644 --- a/Exercises/Exercises(Plaintext).txt +++ b/Exercises/Exercises(Plaintext).txt @@ -108,4 +108,12 @@ Each function takes two booleans as parameters and returns the result of the log (or You can do it with a switch and only one function) FIXME - Reverse -Create a function that reverse a string \ No newline at end of file +Create a function that reverse a string + + +Part 3: Interview Questions (Please rate the questions as Fair, Unfair, No Possible Answers) + + +The FizzBuzz Test: + +"Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”."