Hi! Everyone
I'm Sangeeta
Shirsat.
A teacher plants the seeds of knowledge that blossom into the future's brightest dreams. In the classroom, a teacher is both a guide and a beacon, illuminating the path to understanding and growth. A teacher’s impact is like a ripple in a pond; it reaches far beyond the classroom, shaping lives and inspiring hearts.


C++
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi.
JAVA
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi.
VB.Net
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi.
Python
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi.
Skills & Languages







Working Projects.
Exciting projects are on the horizon! Stay tuned as I continue to craft innovative solutions and bring creative ideas to life. This section will soon feature detailed showcases of my work, highlighting my skills and dedication to excellence. Check back soon to explore the journey of my projects and see how I turn visions into reality!
#include <string>
using namespace std;
class Journey {
protected:
string name;
string institution;
public:
Journey (string n, string inst) : name(n), institution(inst){}
virtual void displayJourney() {
cout << name << " started at " << institution << endl;
}
};
class School : public Journey {
public:
School (string n, string inst) : Journey(n, inst) {}
void displayJourney() override {
cout << name << " began learning in school at " << institution << endl;
}
};
class College : public Journey {
public:
College (string n, string inst) : Journey(n, inst) {}
void displayJourney() override {
cout << name << " pursued higher education in college at " << institution << endl;
}
};
class Teacher : public Journey {
public:
Lecturer (string n, string inst) : Journey(n, inst) {}
void displayJourney() override {
cout << name << " is now a lecturer at " << institution << endl;
};
int main() {
School s(" Sangeeta ", " Kendriya Vidyalaya AFS, Thane 7 ");
College c(" Sangeeta ", " University Of Mumbai ");
Lecturer l(" Sangeeta ", " Vidyalankar Polytechnic ");
s.displayJourney();
c.displayJourney();
l.displayJourney();
return 0;
}