Skip to main content

In the book The Outsiders, what page does it say that Darry is super smart?

The book never says that Darry is "super smart." However, there are two places in the book when Ponyboy comments on the fact that Darry is smart.  Page numbers will be different from edition to edition, so I will give you the page numbers that I have.  I will provide the full quote too, so that should get you really close to the exact location and page number.  


The first time that Ponyboy comments on Darry's intelligence is on page 7.  



He looks older than twenty -- tough, cool, and smart. He would be real handsome if his eyes weren't so cold. He doesn't understand anything that is not plain hard fact. But he uses his head.



I do not really think that is a glowing endorsement of Darry's potential intelligence.  Ponyboy says that Darry looks smart.   That doesn't mean he is smart.  Ponyboy does clarify himself a bit and says that Darry "uses his head"  This tells me that Darry thinks things through, which I believe is a smart personality trait.  Unfortunately, Darry doesn't seem to have any creative thoughts.  He only deals in facts.  


The next smartness quote about Darry is on page 108.  



"I know" I said. I had known it for a long time. In spite of not having much money, the only reason Darry couldn't be a Soc was us. The gang. Me and Soda. Darry was too smart to be a Greaser. I don't know how I knew, I just did.



This time Ponyboy's thoughts do convey the sentiment that Darry is most definitely smart.  Ponyboy admits that he doesn't know why he knows that Darry is smart, but Ponyboy definitely knows that the Greaser gang is holding back Darry's true potential.  

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...