UrbanPro
true
Smita S. C++ Language trainer in Bangalore

Smita S.

Experienced Computer trainer having worked in IT sector for 20 years.

Maruthi Sevanagar, Bangalore, India - 560033.

Verified 10 yrs of Exp 3 Students

350 per hour

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

Details verified of Smita 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 an IT Professional with 20 years experience. I also have teaching experiencein colleges and institutrs. I take classes for Computer Basics Ms Office, C, C++, Java. I take computer tuitions for ICSE board for standards till 9.

Languages Spoken

Kannada Mother Tongue (Native)

English Proficient

Hindi Basic

Gujarati Basic

Education

Ksou 2010

Bachelor of Computer Science (B.Sc. (Computer Science))

Address

Maruthi Sevanagar, Bangalore, India - 560033

Verified Info

ID Verified

Education Verified

Phone Verified

Email Verified

Taught Students from these Schools

Bishop Cotton Boy's School

Richmond Road, Bangalore

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 8 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 8 Tuition

10

Board

ICSE, State, CBSE

State boards taught

Karnataka State Board

Preferred class strength

Group Classes, One on one/ Private Tutions

CBSE Subjects taught

Computers

ICSE Subjects taught

Computer Science

Taught in School or College

Yes

Class 7 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 7 Tuition

10

Board

ICSE, State, CBSE

State boards taught

Karnataka State Board

CBSE Subjects taught

Computers

ICSE Subjects taught

Computer Science

Experience in School or College

.

Taught in School or College

Yes

Teaching Experience in detail in Class 7 Tuition

Students trained by me have scored above 90% of marks.

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

10

Proficiency level taught

Advanced C++, Basic C++

Teaching Experience in detail in C++ Language Classes

Students trained under me have been thoroughly learning the theory and practical's and are successful in scoring good score.

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

10

Teaching Experience in detail in C Language Classes

Students trained under me have been thoroughly learning the theory and practical's and are successful in scoring good score.

BCA Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

9

Experience in School or College

Have been teaching computers in school, college, institutes for around 9 years. I am UT professional with 20+ years of work experience.

BCA Subject

Database Management Systems , Internet Concepts and Web Design , IT, Computer Basics and PC Software , Programming in C++ , Java Programming, Problem Solving and Programming , C Language 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

Teaching Experience in detail in BCA Tuition

I teach C, C++, Java, Internet Concepts, Database management, Computer Network.

Reviews (2)

5 out of 5 2 reviews

Smita S. https://s3-ap-southeast-1.amazonaws.com/tv-prod/member/photo/12138932-small.jpg Maruthi Sevanagar
5.0052
Smita S.
A

Class 8 Tuition

"I was going to Smitha tuition from past few months a really good teacher and my kid is improved a lot. Thank you Smita. "

Smita S.
S

C++ Language

"I highly recommend the c++ class to anyone who is interested in learning the language. The instructor is excellent and the material is well-paced and presented in a way that easy to understand "

Have you attended any class with Smita?

FAQs

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

ICSE, State and CBSE

2. Have you ever taught in any School or College?

Yes

3. Which classes do you teach?

I teach BCA Tuition, C Language, C++ Language, Class 7 Tuition and Class 8 Tuition 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 10 years.

Answers by Smita (123)

Answered on 20/11/2023 Learn IT Courses/Programming Languages/C Language

The strlen() function in C calculates the length of a given string. The strlen() function is defined in string.h header file. It doesn’t count the null character ‘\0’. // c program to demonstrate // example of strlen() function. #include <stdio.h> #include <string.h> int... ...more

The strlen() function in C calculates the length of a given string. The strlen() function is defined in string.h header file. It doesn’t count the null character ‘\0’.

// c program to demonstrate

// example of strlen() function.

#include <stdio.h>

#include <string.h>

int main()

{

    // defining string

    char str[] = "Hello";

    // getting length of str using strlen()

    int length = strlen(str);

    printf("Length of string is : %d", length);

    return 0;

}

Answers 2 Comments
Dislike Bookmark

Answered on 18/11/2023 Learn IT Courses/Programming Languages/C Language

You can declare an array of any data type (i.e. int, float, double, char) in C. The following ways can be used to declare and initialize an array in C. Array Declaration by Specifying the Size Arrays can be declared by specifying the size or the number of array elements. The size of the array specifies... ...more

You can declare an array of any data type (i.e. int, float, double, char) in C. The following ways can be used to declare and initialize an array in C. 

 

Array Declaration by Specifying the Size

Arrays can be declared by specifying the size or the number of array elements. The size of the array specifies the maximum number of elements that the array can hold. In the latest version of C, you can either declare an array by simply specifying the size at the time of the declaration or you can provide a user-specified size. The following syntax can be used to declare an array simply by specifying its size.

 

 // declare an array by specifying size in [].

int my_array1[20];

char my_array2[5];

// declare an array by specifying user defined size.

int size = 20;

int my_array3[size];

Answers 2 Comments
Dislike Bookmark

Answered on 18/11/2023 Learn IT Courses/Programming Languages/C Language

The while Loop is an entry-controlled loop in C programming language. This loop can be used to iterate a part of code while the given condition remains true. Syntax The while loop syntax is as follows: while (test expression) { // body consisting of multiple statements } ...more

The while Loop is an entry-controlled loop in C programming language. This loop can be used to iterate a part of code while the given condition remains true.

 

Syntax

The while loop syntax is as follows:

 

while (test expression)

{

   // body consisting of multiple statements

}

Answers 3 Comments
Dislike Bookmark

Answered on 17/11/2023 Learn IT Courses/Programming Languages/C Language

struct is used to define a structure. typedef is used to give an alias name to a data type and the data type can be a predefined data type (like int,float, char) or a user defined data type. After the second declaration we will have to refer to that structure as "struct StructName" throughout the pro... ...more

struct is used to define a structure. typedef is used to give an alias name to a data type and the data type can be a predefined data type (like int,float, char) or a user defined data type. After the second declaration we will have to refer to that structure as "struct StructName" throughout the program.

Answers 2 Comments
Dislike Bookmark

Answered on 17/11/2023 Learn IT Courses/Programming Languages/C Language

You can easily do input and output using the fgetc and fputc functions. These read and write data one character at a time. The usage is defined in stdio. h and is quite straightforward: fgetc reads (gets) a single character from a file, and fputc puts a single character into a file.
Answers 2 Comments
Dislike Bookmark

Teaches

Class 8 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 8 Tuition

10

Board

ICSE, State, CBSE

State boards taught

Karnataka State Board

Preferred class strength

Group Classes, One on one/ Private Tutions

CBSE Subjects taught

Computers

ICSE Subjects taught

Computer Science

Taught in School or College

Yes

Class 7 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 7 Tuition

10

Board

ICSE, State, CBSE

State boards taught

Karnataka State Board

CBSE Subjects taught

Computers

ICSE Subjects taught

Computer Science

Experience in School or College

.

Taught in School or College

Yes

Teaching Experience in detail in Class 7 Tuition

Students trained by me have scored above 90% of marks.

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

10

Proficiency level taught

Advanced C++, Basic C++

Teaching Experience in detail in C++ Language Classes

Students trained under me have been thoroughly learning the theory and practical's and are successful in scoring good score.

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

10

Teaching Experience in detail in C Language Classes

Students trained under me have been thoroughly learning the theory and practical's and are successful in scoring good score.

BCA Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

9

Experience in School or College

Have been teaching computers in school, college, institutes for around 9 years. I am UT professional with 20+ years of work experience.

BCA Subject

Database Management Systems , Internet Concepts and Web Design , IT, Computer Basics and PC Software , Programming in C++ , Java Programming, Problem Solving and Programming , C Language 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

Teaching Experience in detail in BCA Tuition

I teach C, C++, Java, Internet Concepts, Database management, Computer Network.

5 out of 5 2 reviews

Smita S.
A

Class 8 Tuition

"I was going to Smitha tuition from past few months a really good teacher and my kid is improved a lot. Thank you Smita. "

Smita S.
S

C++ Language

"I highly recommend the c++ class to anyone who is interested in learning the language. The instructor is excellent and the material is well-paced and presented in a way that easy to understand "

Have you attended any class with Smita?

Answers by Smita S. (123)

Answered on 20/11/2023 Learn IT Courses/Programming Languages/C Language

The strlen() function in C calculates the length of a given string. The strlen() function is defined in string.h header file. It doesn’t count the null character ‘\0’. // c program to demonstrate // example of strlen() function. #include <stdio.h> #include <string.h> int... ...more

The strlen() function in C calculates the length of a given string. The strlen() function is defined in string.h header file. It doesn’t count the null character ‘\0’.

// c program to demonstrate

// example of strlen() function.

#include <stdio.h>

#include <string.h>

int main()

{

    // defining string

    char str[] = "Hello";

    // getting length of str using strlen()

    int length = strlen(str);

    printf("Length of string is : %d", length);

    return 0;

}

Answers 2 Comments
Dislike Bookmark

Answered on 18/11/2023 Learn IT Courses/Programming Languages/C Language

You can declare an array of any data type (i.e. int, float, double, char) in C. The following ways can be used to declare and initialize an array in C. Array Declaration by Specifying the Size Arrays can be declared by specifying the size or the number of array elements. The size of the array specifies... ...more

You can declare an array of any data type (i.e. int, float, double, char) in C. The following ways can be used to declare and initialize an array in C. 

 

Array Declaration by Specifying the Size

Arrays can be declared by specifying the size or the number of array elements. The size of the array specifies the maximum number of elements that the array can hold. In the latest version of C, you can either declare an array by simply specifying the size at the time of the declaration or you can provide a user-specified size. The following syntax can be used to declare an array simply by specifying its size.

 

 // declare an array by specifying size in [].

int my_array1[20];

char my_array2[5];

// declare an array by specifying user defined size.

int size = 20;

int my_array3[size];

Answers 2 Comments
Dislike Bookmark

Answered on 18/11/2023 Learn IT Courses/Programming Languages/C Language

The while Loop is an entry-controlled loop in C programming language. This loop can be used to iterate a part of code while the given condition remains true. Syntax The while loop syntax is as follows: while (test expression) { // body consisting of multiple statements } ...more

The while Loop is an entry-controlled loop in C programming language. This loop can be used to iterate a part of code while the given condition remains true.

 

Syntax

The while loop syntax is as follows:

 

while (test expression)

{

   // body consisting of multiple statements

}

Answers 3 Comments
Dislike Bookmark

Answered on 17/11/2023 Learn IT Courses/Programming Languages/C Language

struct is used to define a structure. typedef is used to give an alias name to a data type and the data type can be a predefined data type (like int,float, char) or a user defined data type. After the second declaration we will have to refer to that structure as "struct StructName" throughout the pro... ...more

struct is used to define a structure. typedef is used to give an alias name to a data type and the data type can be a predefined data type (like int,float, char) or a user defined data type. After the second declaration we will have to refer to that structure as "struct StructName" throughout the program.

Answers 2 Comments
Dislike Bookmark

Answered on 17/11/2023 Learn IT Courses/Programming Languages/C Language

You can easily do input and output using the fgetc and fputc functions. These read and write data one character at a time. The usage is defined in stdio. h and is quite straightforward: fgetc reads (gets) a single character from a file, and fputc puts a single character into a file.
Answers 2 Comments
Dislike Bookmark

Book a Demo

Load More

Smita S. describes herself as Experienced Computer trainer having worked in IT sector for 20 years.. She conducts classes in BCA Tuition, C Language and C++ Language. Smita is located in Maruthi Sevanagar, Bangalore. Smita takes Regular Classes- at her Home and Online Classes- via online medium. She has 10 years of teaching experience . Smita has completed Bachelor of Computer Science (B.Sc. (Computer Science)) from Ksou in 2010. She is well versed in Hindi, Kannada, English and Gujarati. Smita has got 2 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