Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialUnsubscribed User
7,386 PointsSet the variable quotient to be the result of dividing the product variable by 3.
I've gone over each video twice and read the transcript. I do not see where I was ever shown how to come up with the answer to this question.
a = 6
b = 2
product = a * b
4 Answers
Steve Hunter
57,712 PointsHi Sarah,
It is asking you to divide product
by 3 and store the result in a variable called quotient
. That looks like:
a = 6
b = 2
product = a * b
quotient = product / 3
Make sense?
Steve.
Unsubscribed User
7,386 PointsThank you Steve. It makes more sense when it's worded clearly, such as the way that you put it, 'divide product by 3 and store the result in a variable called quotient'. I want to start a petition to word questions in all of the tests to be the same wording that's used in the videos. If the instructors would do this one thing, I'd save hours of banging my head against the wall.
Steve Hunter
57,712 PointsThe wording is a little opaque on that one, I'd agree.
Unsubscribed User
7,386 PointsThis situation of writing test questions with different wording than what's verbalized in videos is throughout WordPress videos and I've caught it three times so far in the Ruby series. It's something that language teachers watch for when giving tests. It's also a rather side effect from being an expert in a certain field, which I've no doubt these teachers are. They know what they're talking about, but they aren't looking at it from the learners (and test takers') perspective.
Steve Hunter
57,712 PointsI've done quite a few courses on here and must say that I haven't come across this too badly. Getting the language containing a consistent level and content, whilst maintaining the element of challenge, is a tough task and, given the wide reach of these courses, is pretty much impossible to achieve, I'd guess. There is the ability to leave comment & feedback at the end of each challenge. The Treehouse guys will act on input where possible.
Unsubscribed User
7,386 PointsI'm sorry to report, I come across it consistently. Writing/creating test questions that accurately communicate what's been taught is just good teaching. Assuming that a student who is new to said information to be familiar with other wording for a new process, other than what's been taught, is.. well.. as they say, 'assume' is to make an 'ass' out of 'u' and 'me'.