Advertisements
Advertisements
प्रश्न
Some of the code given below contains errors. Identify the error and correct it. Write the output of the correct/corrected code.
int ZR[] = {0, 0, 0, 0, 0, 0, O};
ZR[0] = 2;
for(int j =1; j < ZR.length; j++)
{
ZR[j] = ZR[j -1] * 2;
}
System.out.print(" The array is : ");
for(int j = 0; j < ZR.length; j++)
System.out.print (" " + ZR[j]);
अति संक्षिप्त उत्तर
Advertisements
उत्तर
No Error. Output : The array is : 2 4 8 16 32 64 128
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 7: Arrays - One Dimension - Exercises [पृष्ठ १७५]
