Skip to content

Category Archives: Geometric

Given a tank with definite height and radius and the flow of water available to fill the tank. Determine whether the tank will overflow or… Read More
We are given the sum of length, breadth and height, say S, of a cuboid. The task is to find the maximum volume that can… Read More
Ellipsoid, closed surface of which all plane cross sections are either ellipses or circles. An ellipsoid is symmetrical about three mutually perpendicular axes that intersect… Read More
Given a positive integer n, print a hexagonal pattern using start with each sides containing n stars. Example :   Input : 4 Output : * *… Read More
Given two coordinates, find the slope of a straight line. Examples:  Input : x1 = 4, y1 = 2, x2 = 2, y2 = 5… Read More
Given two sides A, B and angle C. Find the third side of the triangle using law of cosines.Examples:   Input : a = 5, b… Read More
Given a division of a circle into n pieces as an array of size n. The ith element of the array denotes the angle of… Read More
A pyramid is a 3-dimensional geometric shape formed by connecting all the corners of a polygon to a central apex. There are many types of pyramids.… Read More
An equilateral triangle is a triangle in which all three sides and angles are equal. All three internal angles of equilateral triangle measures 60 degree.… Read More
A regular octagon is a closed figure with sides of the same length and internal angles of the same size. It has eight lines of… Read More
Given two integers a and b, find the smallest possible height such that a triangle of at least area “a” and base “b” can be… Read More
Given slant height, height and radius of a cone, we have to calculate the volume and surface area of the cone.  Cone : Cone is a… Read More
Definition of Trapezoid : A Trapezoid is a convex quadrilateral with at least one pair of parallel sides. The parallel sides are called the bases of… Read More
A hexagon is a 6-sided, 2-dimensional geometric figure. The total of the internal angles of any hexagon is 720°. A regular hexagon has 6 rotational… Read More
Given three points of a regular polygon(n > 3), find the minimum area of a regular polygon (all sides same) possible with the points given.Examples: … Read More