Chapter 2 Test
A short test of some Chapter 2 skills.
This is a test, please do it on your own and do not help others. You are supposed to show your understanding of Haskell. Just getting an answer might not show a good understanding.
-
Create the following list with less effort:
[31,35,39,43,47,...,431]
-
Make a list of all of the odd numbers less than 1000 that are perfect squares. Notes:
- 900 = 30^2 is a perfect square less than 1000, but it is not odd.
- 10201 = 101^2 is an odd perfect square, but it is not less than 1000
-
Given $y=3x-12$, find 100 points on this line with $0 <= x <= 10$. No need to round to make them exactly on the line.
-
Write a function to select all of the numbers between 200 and 300 (inclusive) out of a given list.
prob4 [100,250,290,310,210] == [250, 290, 210]