Consider the following Java class declaration class C1 {int a; float b; int c[]; C1 d[];}; Assume that v is a local reference to C1, with an index of 4 within its frame. Show the JVM code that would be generated or v.a, v.c[5], v.d[2].b and v.d[2].c[4].