answersLogoWhite

0

Shel Silverstein

Shel Silverstein is best known for his collections of children's poetry. He has written cartoons for several magazines, and was also a songwriter. Shel Silverstein passed away in 1999 at the age of 68.

301 Questions

What year was Shel Silverstein drafted to the military?

Born in Chicago in September of 1930, Shel Silverstein was drafted into the Army in September of 1953.

What type of poems did Shel Silverstein mostly write?

Shel Silverstein mostly wrote humorous and whimsical poems, often geared toward children. His poems are known for their imaginative language and playful illustrations.

What is the meaning to the poem Hippo Sandwich by Shel Silverstein?

"Hippo Sandwich" by Shel Silverstein is a playful and nonsensical poem that imagines a world where people can make sandwiches out of hippos. It explores the absurdity of such a concept and delights in the imagination and creativity of a child's mind. The poem emphasizes the joy of inventing and envisioning fantastical scenarios.

Does Shel Silverstein write Symbolism poems?

Yes, Shel Silverstein is known for writing poems with symbolic elements. While his poetry often appears simple and playful, it frequently carries deeper meanings and themes, using symbols to convey universal truths and emotions.

How tall was Shel Silverstein?

From where I have searched he was five foot six

What is the mood of the poem sick by Shel Silverstein?

Well, His poems aren't really a theme all together. There may be a poem called "sick" but not ALL will be about "sick". I have a book by him and there was only one poem about the title, you may of heard of this book, "Where The Sidwalk Ends" There was only one called that.

REPLY!!!

What is the poem rain about by Shel siverstein?

The rain is a metaphor for "the way things are" and the fact that the poet's eyes were open and looked at the rain, means that the poet looked at the way the world really was, and now that the information is in the poet's head, it's stuck there and the poet doesn't want to lose it, but knows that the knowledge keeps running around in the poet's head.

How did Shel Silverstein know Ursula Nordstrom?

Ursula Nordstrom was a famous publisher and editor in chief of children's books. Shel Silverstein's friend took him to see her and she convinced him to write children's books. Up until then, Silverstein had never written for children and didn't want to. She published his works and became a good friend.

What is the meaning of sick by Shel Silverstein?

It is about a girl named Peggy Ann McKay who one day says she's sick and comes up with all of these excuses that are gonna tell that she really is sick. Peggy Ann McKay. The lesson learned in this poem is to never lie that you sick or else it will backfire on you

Who did Shel Silverstein get married to?

Shel Silverstein had a wife named Susan Hastings. Susan died 5 years after having Shels baby girl Shoshana. Susan Hastings died on June 29, 1975 in Baltimore, Maryland.

Why is the giving tree banned at other schools?

There are a few different reasons why the book The Giving Tree is banned at schools. One reason is that it is considered sexist. Another reason is that some feel that it sends a bad message to children.

What is the meaning of Picture Puzzle Piece by Shel Silverstein?

Its about the first 4 lines…

"One picture puzzle piece

Lyin' on the sidewalk,

One picture puzzle piece

Soakin' in the rain."

...and the possibilities of what the puzzle piece might be, ending with:

"Nothing has more possibilities

Than one old wet picture puzzle piece."

What is the poem dancing pants by Shel Silverstein?

And now for the Dancing Pants,

Doing their fabulous dance.

From the seat to the pleat

They will bounce to the beat,

With no legs inside them

And no feet beneath.

They'll whirl, and twirl, and jiggle and prance,

So just start the music

And give them a chance-

Let's have a big hand for the wonderful, marvelous,

Super sensational, utterly fabulous,

Talented Dancing Pants!

What does Ribono shel-oylam mean?

"Ribono shel Olam" is a Hebrew phrase that means "Master of the World." It is a term often used in Jewish prayers and refers to acknowledging God as the ultimate authority and ruler over all of creation.

What is the theme of clooney the clown?

Don't ever think you not funny, because anybody can be funny, but you cant be funny just like that, sometimes you have to practice, and sometimes it just comes to you, and who knows, maybe you could be a clown one day!

What themes did Shel slverstein write about?

Some themes Shel Silverstein wrote about include childhood, imagination, friendship, love, individuality, and the passage of time. His works often contain whimsical and thought-provoking insights on these themes.

Is silverstein Christian?

No Silverstein is Jewish His father and my father were very good friends in Boston

Is Playboy's Teevee Jeebies by Shel Silverstein for kids?

No, "Playboy's Teevee Jeebies" by Shel Silverstein is not aimed at children. It is a more mature and satirical piece intended for an adult audience, as it explores themes and topics not suitable for children.

What are facts about Shel Silversteins childhood?

One of Shel Silverstein's favorite hobbies was music. He actually wrote some hit songs. One of these is 'A Boy Named Sue', which was performed by the late Johnny What_were_Shel_Silverstien's_hobbies.

Read more: What_were_Shel_Silverstien's_hobbies

What did Shel Silverstein daughter die from?

She died of an aneurysm. She died on a Saturday while at a skating party.

How do you find the gcd and LCM of given numbers?

  • #include

    void main()

    {

    int n1,n2,n3,i,gcd,s;

    printf("enter number n1,n2,n3:-");

    scanf("%d %d %d",&n1,&n2,&n3);

    if(n1

    s=n1;

    else if(n2

    s=n2;

    else

    s=n3;

    for(i=1;i<=s;i++)

    {

    if(n1%i==0&&n2%i==0&&n3%i==0)

    gcd=i;

    }

    printf("gcd=%d",gcd);

    }

GCD OF THREE NUBER USING FUNCTION.
  • #include

    void main()

    {

    int gcd(int x,int y);

    int a,b,c;

    printf("enter two number");

    scanf("%d %d",&a,&b);

    c=gcd(a,b);

    printf("%d",c);

    }

    int gcd(int x,int y)

    {

    int temp1,temp2,temp;

    temp1=(x>=0)?x:-x;

    temp2=(y>=0)?y:-y;

    if(temp1

    {

    temp=temp1;

    temp1=temp2;

    temp2=temp;

    }

    while(temp2>0)

    {

    temp=temp1%temp2;

    temp1=temp2;

    temp2=temp;

    }

    return (temp1);

    }

LCM AND GCD OF TWO NUMBER.

#include

void main()

{

int n1,n2,i,lcm,gcd,min=0,f;

printf("enter number :-");

scanf("%d %d",&n1,&n2);

if(n1

min=n1;

else

min=n2;

for(i=1;i<=min;i++)

{

if(n1%i==0&&n2%i==0)

gcd=i;

}

f=n1*n2;

lcm=f/gcd;

printf("gcd=%d",gcd);

printf("\nlcm=%d",lcm);

}

What instruments did Shel Silverstein play?

Shel Silverstein was a talented musician who played multiple instruments, including the guitar, piano, and saxophone. His musical skills complemented his songwriting and storytelling abilities, allowing him to create memorable and engaging songs for both children and adults.

Who are Shel Silverstein friends?

Shel Silverstein was known to have many friends in the music and literary world, including musicians such as Johnny Cash and Bobby Bare, and authors like Roald Dahl and Maurice Sendak. He also had numerous friends and admirers among fellow artists and illustrators.

What Is Shel Silverstein's favorite animal?

I think it is a Zebra or a Lion. Or perhaps the unicorn. He wrote a song about it.