Maruthi Sevanagar, Bangalore, India - 560033.
Verified 3
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.
Kannada Mother Tongue (Native)
English Proficient
Hindi Basic
Gujarati Basic
Ksou 2010
Bachelor of Computer Science (B.Sc. (Computer Science))
Maruthi Sevanagar, Bangalore, India - 560033
ID Verified
Education Verified
Phone Verified
Email Verified
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.
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 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.
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.
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.
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
Programming in C++ , C Language Programming, IT, Internet Concepts and Web Design , Database Management Systems , Problem Solving and Programming , Computer Basics and PC Software , Java 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
Aradhana
"I was going to Smitha tuition from past few months a really good teacher and my kid is improved a lot. Thank you Smita. "
Santosh
"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 "
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.
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 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;
}
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 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];
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
}
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 program.
Answered on 17/11/2023 Learn IT Courses/Programming Languages/C Language
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 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.
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.
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.
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
Programming in C++ , C Language Programming, IT, Internet Concepts and Web Design , Database Management Systems , Problem Solving and Programming , Computer Basics and PC Software , Java 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
Aradhana
"I was going to Smitha tuition from past few months a really good teacher and my kid is improved a lot. Thank you Smita. "
Santosh
"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 "
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 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;
}
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 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];
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
}
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 program.
Answered on 17/11/2023 Learn IT Courses/Programming Languages/C Language
Share this Profile
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.
Certified
The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.