Start learning 50% faster. Sign in now
Pointers are variables that store the memory address of another variable. They are explicitly supported in languages like C and C++. Pointers provide low-level access to memory, enabling operations like dynamic memory allocation, arrays, and data structure manipulation. Example in C++: int x = 10; int* ptr = &x; // Pointer to variable x std::cout << "Value of x: " << *ptr << std::endl; // Dereferencing pointer ________________________________________ Why Other Options Are Incorrect: 1. Java: Java uses references instead of pointers, abstracting away memory management for safety and simplicity. 2. Python: Python abstracts memory management and does not expose raw pointers to developers. 3. JavaScript: JavaScript is a high-level language that does not support pointers or manual memory manipulation. 4. Kotlin: Kotlin, like Java, does not expose pointers and relies on managed memory through JVM.
In an equilateral triangle, the length of the side is 18 cm. A circle is inscribed in the triangle. Find the radius of the circle.
An equilateral triangle has all sides of length 14√3 cm. What is the altitude of this triangle?
ABC is an equilateral triangle with sides of 24cm. Find the difference between its in-radius and circum-radius.
Find the area of a triangle whose sides are 12 m, 14 m, and 16 m.
In a right-angled triangle, the length of the hypotenuse is 25 cm, and the perimeter is 60 cm. Find the area of the triangle.
In a right-angled triangle, the hypotenuse is 20 cm, and one of the legs is 12 cm. Find the area of the triangle.
In triangle △ ABC, the internal angle bisectors of ∠ B and ∠ C intersect at point OO. If the measure of ∠ BAC = 50o , determine the m...
The altitude of an equilateral triangle is 6√3 cm. Find the area of the equilateral triangle.