Advertisements
Advertisements
प्रश्न
Study the snippet given below and answer the following questions:
int j, k, p = -1;
for (j = -2; j <= 1; j++)
{
for (k = j; k <= 0; k++)
k = Math.max(j * k, p);
System.out.print(k);
p = p + 2;
}
- How many times will the outer loop run?
- Predict the output.
थोडक्यात उत्तर
उत्तर
- The outer loop runs 4 times.
- The output: 5 2 4 1
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?