Searching for "at"

Q:

The tropic of cancer does not pass through which of these Indian states ?

A) Madhya Pradesh B) West Bengal
C) Rajasthan D) Odisha
 
Answer & Explanation Answer: D) Odisha

Explanation:

The tropic of cancer passes through 8 Indian states.

the_tropic_of_cancer_does_not_pass_through1537849395.jpg image

 

They are Gujarat, Rajasthan, Madhya Pradesh, Chhattisgarh, West Bengal, Jharkand, Tripura and Mizoram.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

Q:

The state with the largest area under waste land is

A) Gujarat B) Madhya pradesh
C) Jammu and Kashmir D) Rajasthan
 
Answer & Explanation Answer: C) Jammu and Kashmir

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

Q:

Indian Standard Maridian passes through the states of UP,MP

A) AP and Karnataka B) Karnataka and Tamilnadu
C) AP and Tamilnadu D) Orissa and AP
 
Answer & Explanation Answer: D) Orissa and AP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

Q:

The climate of India is mainly tropical because

A) of the location of the Himalayas in the north B) major part of India lies within the tropics
C) of the overpowering influence of India Ocean D) of the seasonal influence of jet streams
 
Answer & Explanation Answer: A) of the location of the Himalayas in the north

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

Q:

Which state of india has the smallest land area?

A) Goa B) Nagaland
C) Sikkim D) Tripura
 
Answer & Explanation Answer: A) Goa

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

Q:

This Union Territory possesses a coastal stretch of about 45 km with 28 marine fishing villages. However 45% of the population is engaged in agricultural and allied products.
Which among the following Union Territories is referred to in the above passage

A) Lakshadweep B) Pondicherry
C) Andaman and Nicobar D) Daman
 
Answer & Explanation Answer: A) Lakshadweep

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

Q:

public abstract class Shape {

private int x;

private int y;

public abstract void draw();

public void setAnchor(int x, int y) {

this.x = x;

this.y = y;

}

}

Which two classes use the Shape class correctly?

A) public class Circle implements Shape { private int radius; B) public abstract class Circle extends Shape { private int radius; }
C) public class Circle extends Shape { private int radius; public void draw(); D) None
 
Answer & Explanation Answer: B) public abstract class Circle extends Shape { private int radius; }

Explanation:

Only B is true

Report Error

View Answer Report Error Discuss

Filed Under: Java

Q:

public abstract class Shape {

private int x;

private int y;

public abstract void draw();

public void setAnchor(int x, int y) {

this.x = x;

this.y = y;

}

}

Which two classes use the Shape class correctly?

A) public class Circle implements Shape { private int radius; B) public abstract class Circle extends Shape { private int radius; }
C) public class Circle extends Shape { private int radius; public void draw(); D) None
 
Answer & Explanation Answer: B) public abstract class Circle extends Shape { private int radius; }

Explanation:

Only B is true

Report Error

View Answer Report Error Discuss

Filed Under: Java