हिंदी

(English Medium) ICSE Class 10 - CISCE Important Questions

Advertisements
विषयों
अध्याय
विषयों
मुख्य विषय
अध्याय

Please select a subject first

Advertisements
Advertisements
< prev  1601 to 1620 of 3901  next > 

Give the output of the following program segment and also mention the number of times the loop is executed:

int a,b;
for (a=6, b=4; a< =24; a=a + 6)
{
if (a%b= =0)
break;
}
System, out .println(a);

Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

Write the output:
charch= ‘F’;
int m= ch;
m=m+5;
System.out.println(m+ ” ” +ch);

Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

Convert following do-while loop into for loop.
int i = 1;
int d = 5;
do {
d=d*2;
System.out.println(d);
i+ + ; } while (i< =5);

Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

Analyze the given program segment and answer the following questions : 

for(int i = 3; i <= 4; i++){
    for(int j = 2; j <i; j++){
        System.out.print("");
    }
    System.out.println("WIN");
}

(i) How many times does the inner loop execute ?
(ii) Write the output of the program segment.

Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

State the difference between while and do-while loop.

Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

Convert the following while loop to the corresponding for loop: 

int m = 5, n = 10;
while (n >= 1)
{
System.out.println(m*n);
n--;
}
Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

Analyze the given program segment and answer the following questions:

(i) Write the output of the program segment.
(ii) How many times does the body of the loop gets executed?

for (int m=5; m<=20;m+=5)
{   if(m%3==0)
   break;
else
if(m%5==0)
System.out.println(m);
continue;
}

Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

Give the output of the following program segment and also mention how many times the loop is executed : 

int i; 
for (i = 5; i > 10; i++) 
System.out.println(i); 
System.out.println(i * 4);
Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

What is an infinite loop ? Write an infinite loop statement.

Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

Convert the following do...while loop to for loop:

int x = - 10;
do

{x - -;
System.out.print(x);
}while(r >= 1);
Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

Give the output of the following program segment. How many times is the loop executed?

for(x=10;x>20;x++)
System.out.println(x);
System.out.println(x*2);
Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Types of Nested Loops

Define a class to overload the method perform as follows:

double perform (double r, double h) to calculate and return the value of Curved surface area of cone CSA π rl
`l = sqrt(r^2 + h^2)`
void perform (int r, int c) Use NESTED FOR LOOP to generate the following format r = 4, c = 5 output -
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
void perform (int m, int n, char ch) to print the quotient of the division of m and n if ch is Q else print the remainder of the division of m and n if ch is R
Appears in 1 question paper
Chapter: [9] Nested Loop
Concept: Introduction of Nested Loop

Draw a demand curve with the help of a hypothetical individual demand schedule.

Appears in 1 question paper
Chapter: [1] Elementary Theory of Demand
Concept: Demand Schedule

Distinguish between derived demand and composite demand.

Appears in 1 question paper
Chapter: [1] Elementary Theory of Demand
Concept: Types of Demand

'Price is an indicator of quality'. The statement applies to ______.

Appears in 1 question paper
Chapter: [1] Elementary Theory of Demand
Concept: Exceptions to the Law of Demand

State and explain the law of demand with the help of a hypothetical schedule and graph.

Appears in 1 question paper
Chapter: [1] Elementary Theory of Demand
Concept: Law of Demand

In which exception to the law of demand does the consumer equate price and quality.

Appears in 1 question paper
Chapter: [1] Elementary Theory of Demand
Concept: Exceptions to the Law of Demand

If commodity X and Y are substitutes, increase in price of X will affect demand of Y how?

Appears in 1 question paper
Chapter: [1] Elementary Theory of Demand
Concept: Demand Schedule

Prepare a hypothetical market demand schedule and draw a market demand curve based on it.

Appears in 1 question paper
Chapter: [1] Elementary Theory of Demand
Concept: Demand Schedule

“The inverse relationship between price and quantity demanded does not hold good in many cases.”

  1. Justify the above as Yes or No.
  2. If justified, explain in brief the Giffen Effect.
Appears in 1 question paper
Chapter: [1] Elementary Theory of Demand
Concept: Exceptions to the Law of Demand
< prev  1601 to 1620 of 3901  next > 
Advertisements
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×