UrbanPro
true
Surbhi S. Class 9 Tuition trainer in Mumbai

Surbhi S.

Chemistry / Computer Science Teacher

Azad Nagar, Mumbai, India - 400053.

1 Student

Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Surbhi S.

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

I am Teaching Online and offline for last 5 years and Complete syllabus of my students according to their School Curriculum or on the basis of individual choice and also cover National/ International competitions like Olympiad or NTSE.
I have developed so many tricks and ways to make my subject easy to understand . I have developed models and videos to make 3 D or tough topics easy to understand .

Languages Spoken

English

Hindi

Education

BVP Pune 2010

Bachelor of Technology (B.Tech.)

Address

Azad Nagar, Mumbai, India - 400053

Verified Info

Phone Verified

Email Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

Class 9 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

5

Board

ICSE, IGCSE, State, CBSE, International Baccalaureate

IB Subjects taught

Chemistry, Computers

CBSE Subjects taught

Science, Information and Comunication Technology

ICSE Subjects taught

Computer Application, Chemistry

IGCSE Subjects taught

Chemistry

Taught in School or College

Yes

State Syllabus Subjects taught

Science

Teaching Experience in detail in Class 9 Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and competition syllabus ( Olympiad / NTSE) . I have developed so many tricks to make my subject very easy to understand . I used to teach through models and videos to make three dimensional topics easy to visulaised .

Class 10 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

5

Board

ICSE, IGCSE, State, CBSE, International Baccalaureate

IB Subjects taught

Chemistry, Computers

CBSE Subjects taught

Science, Information and Comunication Technology

ICSE Subjects taught

Computer Application, Chemistry

IGCSE Subjects taught

Chemistry

Taught in School or College

Yes

State Syllabus Subjects taught

Science

Teaching Experience in detail in Class 10 Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and competition syllabus ( Olympiad / NTSE) . I have developed so many tricks to make my subject very easy to understand . I used to teach through models and videos to make three dimensional topics easy to visulaised .

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

5

Proficiency level taught

Basic C++

Teaching Experience in detail in C++ Language Classes

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and students requirement .

Class 11 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

5

Board

IGCSE, ISC/ICSE, CBSE, International Baccalaureate, State

IB Subjects taught

Computer Science

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Teaching Experience in detail in Class 11 Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and student requirement .

Class 12 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 12 Tuition

5

Board

IGCSE, ISC/ICSE, CBSE, International Baccalaureate, State

IB Subjects taught

Computer Science

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Teaching Experience in detail in Class 12 Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and student requirement .

Class I-V Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class I-V Tuition

5

Board

IGCSE, State, ICSE, International Baccalaureate, CBSE

IB Subjects taught

Science, Computers

CBSE Subjects taught

Science

ICSE Subjects taught

Science

IGCSE Subjects taught

Science

Taught in School or College

Yes

State Syllabus Subjects taught

Science

Teaching Experience in detail in Class I-V Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and competition syllabus ( Olympiad / NTSE) . I have developed so many tricks to make my subject very easy to understand . I used to teach through models and videos to make three dimensional topics easy to visulaised .

Science Olympiad classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Science Olympiad classes

5

Teaching Experience in detail in Science Olympiad classes

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and competition syllabus ( Olympiad / NTSE) . I have developed so many tricks to make my subject very easy to understand . I used to teach through models and videos to make three dimensional topics easy to visulaised .

Documents (1)

Chemical Bonding Assignment

Reviews (1)

5 out of 5 1 review

Surbhi S. https://s3-ap-southeast-1.amazonaws.com/tv-prod/member/photo/2138216-small.jpg Azad Nagar
5.0051
Surbhi S.
K

Class 9 Tuition

"She's my favourite teacher as she's used to put lot of humour in class and used to put lot of efforts on weak student like me and just because of her I am now a science student . "

Have you attended any class with Surbhi? Write a Review

FAQs

1. Which school boards of Class 10 do you teach for?

ICSE, IGCSE, State and others

2. Do you have any prior teaching experience?

Yes

3. Which classes do you teach?

I teach C++ Language, Class 10 Tuition, Class 11 Tuition, Class 12 Tuition, Class 9 Tuition, Class I-V Tuition, Class VI-VIII Tuition and Science Olympiad Classes.

4. Do you provide a demo class?

Yes, I provide a free demo class.

5. How many years of experience do you have?

I have been teaching for 5 years.

Answers by Surbhi (5)

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

Constructors are special class functions which performs initialization of every object. The Compiler calls the Constructor whenever an object is created. Constructors iitialize values to object members after storage is allocated to the object. class A { int x; public: A(); //Constructor }; While... ...more
Constructors are special class functions which performs initialization of every object. The Compiler calls the Constructor whenever an object is created. Constructors iitialize values to object members after storage is allocated to the object. class A { int x; public: A(); //Constructor }; While defining a contructor you must remeber that the name of constructor will be same as the name of the class, and contructors never have return type. Constructors can be defined either inside the class definition or outside class definition using class name and scope resolution :: operator. class A { int i; public: A(); //Constructor declared }; A::A() // Constructor definition { i=1; }
Answers 250 Comments
Dislike Bookmark

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

A memory leak occurs when a piece (or pieces) of memory that was previously allocated by a programmer is not properly deallocated by the programmer. Even though that memory is no longer in use by the program, it is still “reserved”, and that piece of memory can not be used by the program until it is... ...more
A memory leak occurs when a piece (or pieces) of memory that was previously allocated by a programmer is not properly deallocated by the programmer. Even though that memory is no longer in use by the program, it is still “reserved”, and that piece of memory can not be used by the program until it is properly deallocated by the programmer. That’s why it’s called a memory leak – because it’s like a leaky faucet in which water is being wasted, only in this case it’s computer memory.
Answers 4 Comments
Dislike Bookmark

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

A class in C++ is a user defined type or data structure declared with keyword class that has data and functions (also called methods) as its members whose access is governed by the three access specifiers private, protected or public (by default access to members of a class is private). A class (declared... ...more
A class in C++ is a user defined type or data structure declared with keyword class that has data and functions (also called methods) as its members whose access is governed by the three access specifiers private, protected or public (by default access to members of a class is private). A class (declared with keyword class) in C++ differs from a structure (declared with keyword struct) as by default, members are private in a class while they are public in a structure. The private members are not accessible outside the class; they can be accessed only through methods of the class. The public members form an interface to the class and are accessible outside the class. Instances of these data types are known as objects and can contain member variables, constants, member functions, and overloaded operators defined by the programmer.
Answers 3 Comments
Dislike Bookmark

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

Member functions are the functions, which have their declaration inside the class definition and works on the data members of the class. The definition of member functions can be inside or outside the definition of class. If the member function is defined inside the class definition it can be defined... ...more
Member functions are the functions, which have their declaration inside the class definition and works on the data members of the class. The definition of member functions can be inside or outside the definition of class. If the member function is defined inside the class definition it can be defined directly, but if its defined outside the class, then we have to use the scope resolution :: operator along with class name alng with function name.
Answers 5 Comments
Dislike Bookmark

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

1) Structure :- Structures are by default public. Classes are by default private. 2) Structure cannot be inherited. But class can be inherit. 3) There is no data hiding features comes with structures. Classes do, private, protected and public. 4) A structure can't be abstract, a class can. 5) A... ...more
1) Structure :- Structures are by default public. Classes are by default private. 2) Structure cannot be inherited. But class can be inherit. 3) There is no data hiding features comes with structures. Classes do, private, protected and public. 4) A structure can't be abstract, a class can. 5) A structure is a value type, while a class is a reference type. 6) A structure contains only data member , but class contains data member and member function. 7) In a Structure we can't initialize the value to the variable but in class variable we can assign the values. 8) Structures are value type, They are stored as a stack on memory. where as classes are reference type. They are stored as heap on memory.
Answers 4 Comments
Dislike Bookmark

Teaches

Class 9 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

5

Board

ICSE, IGCSE, State, CBSE, International Baccalaureate

IB Subjects taught

Chemistry, Computers

CBSE Subjects taught

Science, Information and Comunication Technology

ICSE Subjects taught

Computer Application, Chemistry

IGCSE Subjects taught

Chemistry

Taught in School or College

Yes

State Syllabus Subjects taught

Science

Teaching Experience in detail in Class 9 Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and competition syllabus ( Olympiad / NTSE) . I have developed so many tricks to make my subject very easy to understand . I used to teach through models and videos to make three dimensional topics easy to visulaised .

Class 10 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

5

Board

ICSE, IGCSE, State, CBSE, International Baccalaureate

IB Subjects taught

Chemistry, Computers

CBSE Subjects taught

Science, Information and Comunication Technology

ICSE Subjects taught

Computer Application, Chemistry

IGCSE Subjects taught

Chemistry

Taught in School or College

Yes

State Syllabus Subjects taught

Science

Teaching Experience in detail in Class 10 Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and competition syllabus ( Olympiad / NTSE) . I have developed so many tricks to make my subject very easy to understand . I used to teach through models and videos to make three dimensional topics easy to visulaised .

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

5

Proficiency level taught

Basic C++

Teaching Experience in detail in C++ Language Classes

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and students requirement .

Class 11 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

5

Board

IGCSE, ISC/ICSE, CBSE, International Baccalaureate, State

IB Subjects taught

Computer Science

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Teaching Experience in detail in Class 11 Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and student requirement .

Class 12 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 12 Tuition

5

Board

IGCSE, ISC/ICSE, CBSE, International Baccalaureate, State

IB Subjects taught

Computer Science

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Teaching Experience in detail in Class 12 Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and student requirement .

Class I-V Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class I-V Tuition

5

Board

IGCSE, State, ICSE, International Baccalaureate, CBSE

IB Subjects taught

Science, Computers

CBSE Subjects taught

Science

ICSE Subjects taught

Science

IGCSE Subjects taught

Science

Taught in School or College

Yes

State Syllabus Subjects taught

Science

Teaching Experience in detail in Class I-V Tuition

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and competition syllabus ( Olympiad / NTSE) . I have developed so many tricks to make my subject very easy to understand . I used to teach through models and videos to make three dimensional topics easy to visulaised .

Science Olympiad classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Science Olympiad classes

5

Teaching Experience in detail in Science Olympiad classes

I am teaching online and offline for last 5 years and cover all topics according to school curriculum and competition syllabus ( Olympiad / NTSE) . I have developed so many tricks to make my subject very easy to understand . I used to teach through models and videos to make three dimensional topics easy to visulaised .

5 out of 5 1 review

Surbhi S.
K

Class 9 Tuition

"She's my favourite teacher as she's used to put lot of humour in class and used to put lot of efforts on weak student like me and just because of her I am now a science student . "

Have you attended any class with Surbhi? Write a Review

Answers by Surbhi S. (5)

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

Constructors are special class functions which performs initialization of every object. The Compiler calls the Constructor whenever an object is created. Constructors iitialize values to object members after storage is allocated to the object. class A { int x; public: A(); //Constructor }; While... ...more
Constructors are special class functions which performs initialization of every object. The Compiler calls the Constructor whenever an object is created. Constructors iitialize values to object members after storage is allocated to the object. class A { int x; public: A(); //Constructor }; While defining a contructor you must remeber that the name of constructor will be same as the name of the class, and contructors never have return type. Constructors can be defined either inside the class definition or outside class definition using class name and scope resolution :: operator. class A { int i; public: A(); //Constructor declared }; A::A() // Constructor definition { i=1; }
Answers 250 Comments
Dislike Bookmark

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

A memory leak occurs when a piece (or pieces) of memory that was previously allocated by a programmer is not properly deallocated by the programmer. Even though that memory is no longer in use by the program, it is still “reserved”, and that piece of memory can not be used by the program until it is... ...more
A memory leak occurs when a piece (or pieces) of memory that was previously allocated by a programmer is not properly deallocated by the programmer. Even though that memory is no longer in use by the program, it is still “reserved”, and that piece of memory can not be used by the program until it is properly deallocated by the programmer. That’s why it’s called a memory leak – because it’s like a leaky faucet in which water is being wasted, only in this case it’s computer memory.
Answers 4 Comments
Dislike Bookmark

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

A class in C++ is a user defined type or data structure declared with keyword class that has data and functions (also called methods) as its members whose access is governed by the three access specifiers private, protected or public (by default access to members of a class is private). A class (declared... ...more
A class in C++ is a user defined type or data structure declared with keyword class that has data and functions (also called methods) as its members whose access is governed by the three access specifiers private, protected or public (by default access to members of a class is private). A class (declared with keyword class) in C++ differs from a structure (declared with keyword struct) as by default, members are private in a class while they are public in a structure. The private members are not accessible outside the class; they can be accessed only through methods of the class. The public members form an interface to the class and are accessible outside the class. Instances of these data types are known as objects and can contain member variables, constants, member functions, and overloaded operators defined by the programmer.
Answers 3 Comments
Dislike Bookmark

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

Member functions are the functions, which have their declaration inside the class definition and works on the data members of the class. The definition of member functions can be inside or outside the definition of class. If the member function is defined inside the class definition it can be defined... ...more
Member functions are the functions, which have their declaration inside the class definition and works on the data members of the class. The definition of member functions can be inside or outside the definition of class. If the member function is defined inside the class definition it can be defined directly, but if its defined outside the class, then we have to use the scope resolution :: operator along with class name alng with function name.
Answers 5 Comments
Dislike Bookmark

Answered on 28/04/2016 Learn IT Courses/Programming Languages/C++ Language

1) Structure :- Structures are by default public. Classes are by default private. 2) Structure cannot be inherited. But class can be inherit. 3) There is no data hiding features comes with structures. Classes do, private, protected and public. 4) A structure can't be abstract, a class can. 5) A... ...more
1) Structure :- Structures are by default public. Classes are by default private. 2) Structure cannot be inherited. But class can be inherit. 3) There is no data hiding features comes with structures. Classes do, private, protected and public. 4) A structure can't be abstract, a class can. 5) A structure is a value type, while a class is a reference type. 6) A structure contains only data member , but class contains data member and member function. 7) In a Structure we can't initialize the value to the variable but in class variable we can assign the values. 8) Structures are value type, They are stored as a stack on memory. where as classes are reference type. They are stored as heap on memory.
Answers 4 Comments
Dislike Bookmark

Surbhi S. describes herself as Chemistry / Computer Science Teacher. She conducts classes in C++ Language, Class 10 Tuition and Class 11 Tuition. Surbhi is located in Azad Nagar, Mumbai. Surbhi takes Regular Classes- at her Home and Online Classes- via online medium. She has 5 years of teaching experience . Surbhi has completed Bachelor of Technology (B.Tech.) from BVP Pune in 2010. She is well versed in English and Hindi. Surbhi has got 1 reviews till now with 100% positive feedback.

X

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more