Skip to main content

How does Philip answer question number four on his English exam?

In Avi's Nothing But the Truth, question number four on Philip's Winter Term English exam for Margaret Narwin's class is:



What is the significance of Jack London's choice in making Buck, the dog in The Call of the Wild, the focus of his novel? Is the dog meant to be symbolic? Explain your answer. Can people learn from this portrayal of a dog? Expand on these ideas. 



Rather than provide a serious answer to this question, Philip chooses to be glib and to let his poor attitude spoil his efforts. He replies:



The significance of Buck in Jack London's novel The Call of the Wild is that Buck is symbolic of a cat. You might think that cats have nothing to do with the book, but that is the point. Dogs are willing to sit around and have writers write about them, which, in my personal opinion, makes them dumb. I think cats are smart. Cats don't like cold. A book that takes up so much time about a dog is pretty dumb. The book itself is a dog. That is what people can learn from Jack London's novel The Call of the Wild.



Miss Narwin is troubled by Philip's persistent disrespect and his lack of thoughtful intention, commenting that he needs to be "more than lazy in [his] thinking." She writes on his exam that she knows that he has the potential to do good work, particularly since his previous work has been much better; she also warns him that he is in danger of failing the class and gives him a "C-" on the grade.


This grade puts Philip's position on the track team in jeopardy, but still Philip can't seem to take responsibility for his own poor work ethic. He lashes out and tells Coach Jamison that he is only doing poorly because Miss Narwin doesn't like him and is too "old-fashioned" and "boring." Coach Jamison is sympathetic but informs Philip that he won't even be allowed to try out for the team. 

Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...