The trapezoid is equivalent to the British definition of the trapezium. An isosceles trapezoid is a trapezoid in which the base angles are equal so.Sample Solution:Python Code:base_1 = 5 base_2 = 6 height = float(input("Height of trapezoid: ")) base_1 = float(input('Base one value: ...
// Rust program to calculate the // area of Trapezium use std::io; fn main() { let mut base1:f32 = 0.0; let mut base2:f32 = 0.0; let mut height:f32 = 0.0; let mut area:f32 = 0.0; let mut input1 = String::new(); let mut input2 = String::new(); let mut input3 ...
// C program to calculate the area of Trapezium#include <stdio.h>floatcalcuateAreaOfTrapezium(floatbase1,floatbase2,floatheight) {floatresult=0.0F; result=0.5*(base1+base2)*height;returnresult; }intmain() {floatbase1=0;floatbase2=0;floatheight=0;floatarea=0; printf("Enter base1: ");...
A prism is completely filled with 1,120 cubes that have edge lengths of 12 inches. What is the volume of the prism? What is the volume of a trapezium prism? Calculate the volume for a triangular prism. The triangle has a base of 9 cm and a height of 8.5 cm. The length of the pr...
C Program To Find Volume of Sphere | C Programs C Program Check A Character Is Upper Case Or Lower Case C Program Area Of Trapezium – 3 Ways | C Programs C Program To Find Area Of Semi Circle | C Programs C Program Area Of Rhombus – 4 Ways | C Programs C Program Area Of Isosce...
1 A trapezium has two parallel sides (mandatory) and two non-parallel sides (optional). 2 The sum of all the \(4\) angles is equal to \({360^ \circ }.\) 3 Two pairs of adjacent angles of a trapezium formed between the parallel sides and one of the non-parallel sides is equal ...
Calculate the total force on a side of the plate, which is in shape of trapezium with base 2 meters and unequal lengths 6 m and 8 m. The plate is submerged fully in a liquid of mass density 800 kg per Calculate the fluid force on a side of...
e e s s t t i i m m a a t t e e a a n n d d c c a a l l c c u u l l a a t t e e NQF Level: 2 US No: 12444 The availability of this product is due to the financial support of the National Department of Agriculture and the AgriSETA. Assessor: . . . ....
C - Find GCD (Greatest Common Divisor) of two integers C - Find LCM (Lowest Common Multiple) of two integers C - Calculate area of a triangle given three sides C - Calculate area of a triangle given base & height C - Calculate area of Trapezium C - Calculate area ofrhombus C - Calc...
// C program to calculate the surface Area and// volume of Sphere#include <stdio.h>#include <math.h>intmain() {floatradius=0;floatvolume=0;floatarea=0; printf("Enter the radius: "); scanf("%f",&radius); volume=(4.0/3)*(3.14)*pow(radius,3); ...