Searching for "="

Q:

Find the minimum number of straight lines required to make the given figure.

A) 11 B) 14
C) 16 D) 17
 
Answer & Explanation Answer: B) 14

Explanation:

  

The horizontal lines are AK, BJ, CI, DH and EG i.e. 5 in number.

The vertical lines are AE, LF and KG i.e. 3 in number.

The slanting lines are LC, CF, FI, LI, EK and AG i.e. 6 in number.

Thus, there are 5 + 3 + 6 = 14 straight lines in the figure.

Report Error

View Answer Report Error Discuss

Filed Under: Analytical Reasoning

Q:

Find the number of triangles in the given figure.

A) 8 B) 10
C) 11 D) 12
 
Answer & Explanation Answer: B) 10

Explanation:

  

The simplest triangles are ABG, BCG, CGE, CDE, AGE and AEF i.e. 6 in number.

The triangles composed of two components each are ABE, ABC, BCE and ACE i.e. 4 in number.

There are 6 + 4 = 10 triangles in the figure.

Report Error

View Answer Report Error Discuss

Filed Under: Analytical Reasoning

Q:

Find the minimum number of straight lines required to make the given figure.

A) 13 B) 15
C) 17 D) 19
 
Answer & Explanation Answer: A) 13

Explanation:

  

The horizontal lines are IJ, AB, EF, MN, HG, DC and LK i.e. 7 in number.

The vertical lines are AD, EH, IL, FG, BC and JK i.e. 6 in number.

Thus, there are 7 + 6 = 13 straight lines in the figure.

Report Error

View Answer Report Error Discuss

Filed Under: Analytical Reasoning

Q:

Find the minimum number of straight lines required to make the given figure.

A) 16 B) 17
C) 18 D) 19
 
Answer & Explanation Answer: B) 17

Explanation:

The horizontal lines are IK, AB, HG and DC i.e. 4 in number.

The vertical lines are AD, EH, JM, FG and BC i.e. 5 in number.

The slanting lines are IE, JE, JF, KF, DE, DH, FC and GC i.e. 8 is number.

Thus, there are 4 + 5 + 8 = 17 straight lines in the figure.

Report Error

View Answer Report Error Discuss

Filed Under: Analytical Reasoning

Q:

Find the number of triangles in the given figure?

A) 16 B) 22
C) 28 D) 32
 
Answer & Explanation Answer: C) 28

Explanation:

The simplest triangles are AFJ, FJK, FKB, BKG, JKG, JGC, HJC, HIJ, DIH, DEI, EIJ and AEJ i.e. 12 in number.

The triangles composed of two components each are JFB, FBG, BJG, JFG, DEJ, EJH, DJH and DEH i.e. 8 in number.

The triangles composed of three components each are AJB, JBC, DJC and ADJ i.e. 4 in number.

The triangles composed of six components each are DAB, ABC, BCD and ADC i.e. 4 in number.

Thus, there are 12 + 8 + 4 + 4 = 28 triangles in the figure.

Report Error

View Answer Report Error Discuss

Filed Under: Analytical Reasoning

Q:

Find the number of triangles in the given figure?

A) 18 B) 20
C) 24 D) 27
 
Answer & Explanation Answer: C) 24

Explanation:

The simplest triangles are IJO, BCJ, CDK, KQL, MLQ, GFM, GHN and NIO i.e. 8 in number.

The triangles composed of two components each are ABO, AHO, NIJ, IGP, ICP, DEQ, FEQ, KLM, LCP and LGP i.e.10 in number.

The triangles composed of four components each are HAB, DEF, LGI, GIC, ICL and GLC i.e. 6 in number.

Total number of triangles in the figure = 8 + 10 + 6 = 24.

Report Error

View Answer Report Error Discuss

Filed Under: Analytical Reasoning

Q:

Which of the following statements are equal for a variable declared in the interface ?

1. int X=10
2. public int X=10
3. public static final int X=10

A) Only 1 and 2 are equal B) Only 2 and 3 are equal
C) All are unequal D) All are equal
 
Answer & Explanation Answer: D) All are equal

Explanation:

All the statements are equal because inside an interface a variable declared will be public static final by default 

Report Error

View Answer Report Error Discuss

Filed Under: Java
Job Role: IT Trainer

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