UrbanPro
true
Shashikala H. Company Secretary (CS) trainer in Bangalore

Shashikala H.

CS Master

Banashankari 3rd Stage, Bangalore, India - 560085.

11 yrs of Exp

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

Details verified of Shashikala H.

Identity

Education

Know how UrbanPro verifies Tutor details

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

Overview

Shashikala H. describes herself as CS Master. She conducts classes in .Net Training, BCA Tuition and BTech Tuition. Shashikala is located in Banashankari 3rd Stage, Bangalore. Shashikala takes Regular Classes- at her Home and Online Classes- via online medium. She has 11 years of teaching experience . Shashikala has completed Master of Engineering - Master of Technology (M.E./M.Tech.) from VTU in 2013. She is well versed in English.

Languages Spoken

English

Education

VTU 2013

Master of Engineering - Master of Technology (M.E./M.Tech.)

Address

Banashankari 3rd Stage, Bangalore, India - 560085

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

Company Secretary (CS) Coaching Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Company Secretary (CS) Coaching Classes

11

Type of class

Regular Classes, Crash Course

C++ Language Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

11

Proficiency level taught

Basic C++, Advanced C++

BTech Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

11

BTech Computer Science subjects

Java Programming, Protocol Engineering, Network security, Object Oriented Programming & Systems, Data Structures and Algorithms, Wireless Networks, Data Communication, Data Warehouse and Data Mining, Database Management Systems, Information Security, Types of Database Systems, Network Management & Design, Web Engineering, Computer Networks, Computer Organization & Design, Design and Analysis of Algorithms, Simulation and Modelling, Internet Technology and Applications, Unix Network Programming

BTech Branch

BTech Computer Science Engineering

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

C Language Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

11

Engineering Diploma Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

11

Engineering Diploma Branch

Computer Engineering Diploma

Computer Engineering Diploma Subject

Digital Techniques, Java Programming, Network Programming, Programming Windows in VC++, Microprocessor and Programming, Relational Database Management Systems, Object Oriented Programming, Operating System, Computer Network, Computer Security, Graphical User Interface (GUI), Computer Graphics, Data Structure Using 'C', Basics of C Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

Java Training Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

11

Teaches

JSP (Java Server Pages), Hibernate, Core Java

Certification training offered

No

BCA Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

11

BCA Subject

Object Oriented Technologies, Data Communication and Networks, Visual Programing, Digital Electronics, Computer Networks , Computer Oriented Numerical Techniques , Cryptography and Network Security, Programming in C++ , Unix Shell programming, Algorithm Design , IT, Operating System Concepts and Networking Management , C Language Programming, E-Commerce , Statistical Techniques , Software Engineering , Business Organization , Database Management Systems , Computer Architecture, Communication Skills , Network Programming and Administration , Web Programming, Data and File Structures , Business Communication , Mathematics, Financial Accounting and Management, Operation Research, Data structures, Problem Solving and Programming , Assembly Language Programming, Microprocessor, Systems Analysis and Design , Java Programming, Computer Basics and PC Software , Accountancy, Internet Concepts and Web Design

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

Computer Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

11

Type of Computer course taken

Basics of Computer usage

.Net Training

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in .Net Training

11

Certification offered

No

Class 9 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

11

Board

CBSE, ICSE, State

Subjects taught

Science, Mathematics, English, Computer Application, Kannada

Taught in School or College

Yes

Class 10 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

11

Board

CBSE, ICSE, State

Subjects taught

English, Computer Application, Mathematics, Science, Kannada

Taught in School or College

Yes

Upcoming Live Classes

Reviews

No Reviews yet!

FAQs

1. Which classes do you teach?

I teach .Net Training, BCA Tuition, BTech Tuition, C Language, C++ Language, Class 10 Tuition, Class 9 Tuition, Company Secretary (CS) Coaching, Computer and Engineering Diploma Tuition Classes.

2. Do you provide a demo class?

Yes, I provide a free demo class.

3. How many years of experience do you have?

I have been teaching for 11 years.

Answers by Shashikala H. (3)

Answered on 03/09/2015

Operator overloading is an important concept in C++. It is a type of polymorphism in which an operator is overloaded to give user defined meaning to it. Overloaded operator is used to perform operation on user-defined data type. For example '+' operator can be overloaded to perform addition on various... ...more
Operator overloading is an important concept in C++. It is a type of polymorphism in which an operator is overloaded to give user defined meaning to it. Overloaded operator is used to perform operation on user-defined data type. For example '+' operator can be overloaded to perform addition on various data types, like for Integer, String(concatenation) etc.
Answers 3 Comments
Dislike Bookmark

Answered on 03/09/2015 Learn IT Courses/Programming Languages/C++ Language

In POP, program is divided into small parts called functions. In OOP, program is divided into parts called objects. POP follows Top Down approach. OOP follows Bottom Up approach. POP does not have any access specifier. OOP has access specifiers named Public, Private, Protected, etc. In POP, Data can... ...more
In POP, program is divided into small parts called functions. In OOP, program is divided into parts called objects. POP follows Top Down approach. OOP follows Bottom Up approach. POP does not have any access specifier. OOP has access specifiers named Public, Private, Protected, etc. In POP, Data can move freely from function to function in the system. In OOP, objects can move and communicate with each other through member functions. To add new data and function in POP is not so easy. OOP provides an easy way to add new data and function. In POP, Most function uses Global data for sharing that can be accessed freely from function to function in the system. In OOP, data can not move easily from function to function,it can be kept public or private so we can control the access of data. POP does not have any proper way for hiding data so it is less secure. OOP provides Data Hiding so provides more security.
Answers 20 Comments
Dislike Bookmark

Answered on 03/09/2015

One of the important concept of OOP is data hiding, i.e., a nonmember function cannot access an object's private or protected data. But, sometimes this restriction may force programmer to write long and complex codes. So, there is mechanism built in C++ programming to access private or protected data... ...more
One of the important concept of OOP is data hiding, i.e., a nonmember function cannot access an object's private or protected data. But, sometimes this restriction may force programmer to write long and complex codes. So, there is mechanism built in C++ programming to access private or protected data from non-member function which is friend function and friend class.
Answers 4 Comments
Dislike Bookmark

Teaches

Company Secretary (CS) Coaching Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Company Secretary (CS) Coaching Classes

11

Type of class

Regular Classes, Crash Course

C++ Language Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

11

Proficiency level taught

Basic C++, Advanced C++

BTech Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

11

BTech Computer Science subjects

Java Programming, Protocol Engineering, Network security, Object Oriented Programming & Systems, Data Structures and Algorithms, Wireless Networks, Data Communication, Data Warehouse and Data Mining, Database Management Systems, Information Security, Types of Database Systems, Network Management & Design, Web Engineering, Computer Networks, Computer Organization & Design, Design and Analysis of Algorithms, Simulation and Modelling, Internet Technology and Applications, Unix Network Programming

BTech Branch

BTech Computer Science Engineering

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

C Language Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

11

Engineering Diploma Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

11

Engineering Diploma Branch

Computer Engineering Diploma

Computer Engineering Diploma Subject

Digital Techniques, Java Programming, Network Programming, Programming Windows in VC++, Microprocessor and Programming, Relational Database Management Systems, Object Oriented Programming, Operating System, Computer Network, Computer Security, Graphical User Interface (GUI), Computer Graphics, Data Structure Using 'C', Basics of C Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

Java Training Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

11

Teaches

JSP (Java Server Pages), Hibernate, Core Java

Certification training offered

No

BCA Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

11

BCA Subject

Object Oriented Technologies, Data Communication and Networks, Visual Programing, Digital Electronics, Computer Networks , Computer Oriented Numerical Techniques , Cryptography and Network Security, Programming in C++ , Unix Shell programming, Algorithm Design , IT, Operating System Concepts and Networking Management , C Language Programming, E-Commerce , Statistical Techniques , Software Engineering , Business Organization , Database Management Systems , Computer Architecture, Communication Skills , Network Programming and Administration , Web Programming, Data and File Structures , Business Communication , Mathematics, Financial Accounting and Management, Operation Research, Data structures, Problem Solving and Programming , Assembly Language Programming, Microprocessor, Systems Analysis and Design , Java Programming, Computer Basics and PC Software , Accountancy, Internet Concepts and Web Design

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

Computer Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

11

Type of Computer course taken

Basics of Computer usage

.Net Training

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in .Net Training

11

Certification offered

No

Class 9 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

11

Board

CBSE, ICSE, State

Subjects taught

Science, Mathematics, English, Computer Application, Kannada

Taught in School or College

Yes

Class 10 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

11

Board

CBSE, ICSE, State

Subjects taught

English, Computer Application, Mathematics, Science, Kannada

Taught in School or College

Yes

Upcoming Live Classes

No Reviews yet!

Answers by Shashikala H. (3)

Answered on 03/09/2015

Operator overloading is an important concept in C++. It is a type of polymorphism in which an operator is overloaded to give user defined meaning to it. Overloaded operator is used to perform operation on user-defined data type. For example '+' operator can be overloaded to perform addition on various... ...more
Operator overloading is an important concept in C++. It is a type of polymorphism in which an operator is overloaded to give user defined meaning to it. Overloaded operator is used to perform operation on user-defined data type. For example '+' operator can be overloaded to perform addition on various data types, like for Integer, String(concatenation) etc.
Answers 3 Comments
Dislike Bookmark

Answered on 03/09/2015 Learn IT Courses/Programming Languages/C++ Language

In POP, program is divided into small parts called functions. In OOP, program is divided into parts called objects. POP follows Top Down approach. OOP follows Bottom Up approach. POP does not have any access specifier. OOP has access specifiers named Public, Private, Protected, etc. In POP, Data can... ...more
In POP, program is divided into small parts called functions. In OOP, program is divided into parts called objects. POP follows Top Down approach. OOP follows Bottom Up approach. POP does not have any access specifier. OOP has access specifiers named Public, Private, Protected, etc. In POP, Data can move freely from function to function in the system. In OOP, objects can move and communicate with each other through member functions. To add new data and function in POP is not so easy. OOP provides an easy way to add new data and function. In POP, Most function uses Global data for sharing that can be accessed freely from function to function in the system. In OOP, data can not move easily from function to function,it can be kept public or private so we can control the access of data. POP does not have any proper way for hiding data so it is less secure. OOP provides Data Hiding so provides more security.
Answers 20 Comments
Dislike Bookmark

Answered on 03/09/2015

One of the important concept of OOP is data hiding, i.e., a nonmember function cannot access an object's private or protected data. But, sometimes this restriction may force programmer to write long and complex codes. So, there is mechanism built in C++ programming to access private or protected data... ...more
One of the important concept of OOP is data hiding, i.e., a nonmember function cannot access an object's private or protected data. But, sometimes this restriction may force programmer to write long and complex codes. So, there is mechanism built in C++ programming to access private or protected data from non-member function which is friend function and friend class.
Answers 4 Comments
Dislike Bookmark

Shashikala H. describes herself as CS Master. She conducts classes in .Net Training, BCA Tuition and BTech Tuition. Shashikala is located in Banashankari 3rd Stage, Bangalore. Shashikala takes Regular Classes- at her Home and Online Classes- via online medium. She has 11 years of teaching experience . Shashikala has completed Master of Engineering - Master of Technology (M.E./M.Tech.) from VTU in 2013. She is well versed in English.

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