Posts

Showing posts from May, 2021

⚡ Excel VBA 🔥 Read & Write Settings In Windows Registry #tecqmate

Image
Download

In Cpp, Application That Calculates The Surface Area And Volume Of 2 Cylinders Using Two Sets Of Classes

Image
#include<iostream> #include<cmath> using namespace std; class ProtectedCircle{ protected: float radius; public: void setRadius(float r){ if(0 <= r) radius = r; } public: float getRadius() const{ return radius; } public: float getPerimeter() const{ return (2 * M_PI * radius); } public: float getArea() const{ return (radius * radius) * M_PI; } public: ProtectedCircle(float r = 0){ setRadius(r); } }; class ProtectedCylinder: public ProtectedCircle { private: float height; public: void setHeight(float h){ if(0 <= h) height = h; } public: float getHeight() const{ return height; } public: float getArea() const{ return (((radius * radius) * (2 * M_PI)) + (2 * M_PI * radius * height)); } public: float getVolume() const{ return (M_PI * (radius * radius) * height); } public: ProtectedCylinder(float r = 0, float h = 0): ProtectedCircle(r){ setHeight(h); } }; class PrivateCircle{

In Java, Addition Of Random Number's Quiz Using JSP

Image
Download

In Excel VBA, How To Add Custom Tab And Icon (हिंदी मे)

Image
Download