bertha as a foil to jane. explain
Answers
Explanation:
import java.io.*;
import java.util.*;
class GFG {
private static void FindCommonElemet(String[] arr1,
String[] arr2)
{
Set<String> set = new HashSet<>();
for (int i = 0; i < arr1.length; i++) {
for (int j = 0; j < arr2.length; j++) {
if (arr1[i] == arr2[j]) {
// add common elements
set.add(arr1[i]);
break;
}
}
}
for (String i : set) {
System.out.print(i + " ");
}
}
Answer:
Bertha is both a foil and mirror to Jane Eyre. She represents the angry self that Jane has rejected and repressed as an adult. Yet Jane had been like Bertha as a child, acting out in rage against patriarchy and imprisoned in the red-room, just as the rage-filled Bertha is imprisoned in the Thornfield attic.