answersLogoWhite

0

What is the meaning of J 435?

Updated: 10/24/2022
User Avatar

Wiki User

11y ago

Best Answer

The title is most certainly NOT "J. 435". Thomas H. Johnson was the first scholar to prepare a complete edition of all known poems by Emily Dickinson. It is regarded as a standard work. He made an effort to date them as precisely as documentary evidence allowed and to publish them in chronological order. I think he did a good job. The two numbers in the last line indicate the year of writing (circa 1862) and the year of first publication. The poem appears as No. 435 in his book "Emily Dickinson - The Complete Poems". For this reason it may be referred to as "J. 435", with "J." standing for "Johnson".

Emily Dickinson normally didn't give her poems titles. Most people treat the first lines as if they were the titles. There are advantages to both methods. Where the first line is given, the poem can often be found by people even if they don't have Johnson's collection. For people like myself, who use Johnson's book all the time, referring to the poems by number is much more useful, because it saves the effort of looking up the number from an index of first lines.

Though English isn't my first language either, I have lived in England for the past 30 years. If you live in an English-speaking country, asking you to do a school project of this nature certainly seems legitimate. If you live in (say) a Spanish-speaking country, your teacher is probably too demanding. You will know where you are and be able to decide how much can be expected from you.

Be that as it may, as I can not do your project for you, I will now give you a very brief explanation of the meaning of the poem. If you then study it again in detail, you will hopefully find out how Dickinson conveys the intended meaning and be able to take things from there:

Emily Dickinson is complaining that conformity is treated as if it were mental health, no matter how crazy the fashion to which people conform, while private reasoned eccentricity (like her own) is treated like madness.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the meaning of J 435?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Is scm 435 high or low alloy steel?

low


K j equals j but how is that?

K j equals j when K is 1 or j is 0.


What is C program pattern 12321 121 1?

/*determine the pattern 1234321*/ #include<stdio.h> #include<conio.h> main() { int i, j; for (i=1; i<=7; i++) { if (i<5) { j=i; printf("\n %d", j); } else { j=8-i; printf("\n %d", j); } } getch() }


Program to sort numbers in c plus plus?

/* Bubble sort: code snippet only nos to be sorted are in the array named 'n' of size 'N' for(int i=0;i<N-1;i++) for(int j=i+1;j<N-1-i;j++) if(n[j]>n[j+1]) swap(n[j],n[j+1]); */ /* insertion sort int v,j; for(int i=1;i<N;i++) { v=n[j]; for(int j=i-1;j>0&&n[j]>v;j--) n[j+1]=n[j]; n[j+1]=v; } */


C program - to perform matrix addition?

M #include<stdio.h> #include<conio.h> int main() { int a[3][3], b[3][3], sum[3][3], i,j; clrscr(); printf("Enter the first matrix"); for(i=0;i<3;i++) for(j=0;j<3;j++) scanf("%d", &a[i][j]); printf("Enter the second matrix"); for(i=0;i<3;i++) for(j=0;j<3;j++) scanf("%d", &b[i][j]); printf("\nThe first matrix is \n"); for(i=0;i<3;i++) { printf("\n"); for(j=0;j<3;j++) printf("%d\t", a[i][j]); } printf("\nEnter the second matrix"); for(i=0;i<3;i++) { printf("\n"); for(j=0;j<3;j++) printf("%d\t", b[i][j]); } for(i=0;i<3;i++) for(j=0;j<3;j++) sum[i][j]=a[i][j]+ b[i][j]; printf("\n The addition of two matrix is \n"); for(i=0;i<3;i++) { printf("\n"); for(j=0;j<3;j++) printf("%d\t", sum[i][j]); } getch(); return 0; }