Advertisements
Advertisements
Question
Creating a program for pattern making is an important aspect of logical development. Kunal has tried to design a program for a pattern shown alongside. But, due to some confusion, he could not complete it and has left some places blank marked with ?1?, ?2?, ?3? and ?4? to be filled with appropriate value/ expression. The program is as shown below:
ZZZZZ XXXX VVV TT R |
class Pattern
{
public static void main()
{
int a, b, p;
p = ..........?1?.........;
for (a = 5; a >= 1; a--)
{
for(............?2?...............)
System.out.print((...?3?...)p);
System.out.println();
p = .....?4?......;
}
}
}
Based on the above discussion, answer the following questions:
- What will be filled in the place marked with ?1?
- 65
- 82
- 90
- 122
- What will be filled in the place marked with ?2?
- b = 1; b <= a; b++
- b = a; b < 90; b++
- b = 90; b > 65; b++
- b = 65; b <= 90; b++
- What will be filled in the place marked with ?3?
- int
- char
- float
- double
- What will be filled in the place marked with ?4?
- p + 2
- p * 2
- p++
- p − 2
Answer in Brief
Solution
- iii. 90
- i. b = 1; b <= a; b++
- i. char
- iv.
- iv. p − 2
shaalaa.com
Is there an error in this question or solution?