UrbanPro
true
/>

Thulaseeram K.

Faculty With 18 Years of Rich Teaching Experience and 18 Years of Real Time Corporate Experience

APHB Colony, Hyderabad, India - 500072

7 Students

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

Details verified of Thulaseeram K.

Identity

Education

Know how UrbanPro verifies Tutor details

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

Teaches

C Language Classes
1 Student

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

20

Teaching Experience in detail in C Language Classes

I am having teaching experience as well as real time work experience on C and C++ about 20 years. I would like to take this opportunity. Please view my profile at below link and revert back if it suits your requirement for a free demo session.

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

20

Proficiency level taught

Advanced C++, Basic C++

Teaching Experience in detail in C++ Language Classes

I am having teaching experience as well as real time work experience on C and C++ about 20 years. I would like to take this opportunity. Please view my profile at below link and revert back if it suits your requirement for a free demo session.

PL/SQL Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in PL/SQL Classes

15

Teaching Experience in detail in PL/SQL Classes

I am having teaching experience as well as real time work experience about 20 years. I would like to take this opportunity. Please view my profile at below link and revert back if it suits your requirement for a free demo session.

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

18

BTech Electrical & Electronics subjects

Data Structures & Algorithms

BTech Computer Science subjects

Design and Analysis of Algorithms, Computer Organization & Design, Object Oriented Programming & Systems, Database Management Systems, Computer Architecture, Microprocessors, Data Structures and Algorithms, Design Of Digital Systems, Java Programming

BTech Branch

BTech Computer Science Engineering

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

Python Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Python Training classes

20

Course Duration provided

1-3 months

Seeker background catered to

Corporate company, Individual, Educational Institution

Certification provided

Yes

Python applications taught

Regular Expressions with Python , Text Processing with Python

Teaching Experience in detail in Python Training classes

I am having teaching experience as well as real time work experience about 20 years. I would like to take this opportunity. Please view my profile at below link and revert back if it suits your requirement for a free demo session. ---------------------- Phone: +91-9848418700(verified)

5 out of 5 6 reviews

Thulaseeram Kumar https://www.urbanpro.com/assets/new-ui/provider-male-100X100.png APHB Colony
5.0056
Thulaseeram Kumar
A

C++ Language

"It was a nice experience with sir as he knows how to explain each and every concept in depth. Also he answers every question very calmly and correctly. I had classes with him for Data Structure and algorithms along C# language he has a good knowledge on all these topics. In Data structures and algorithms he has a good grasp on topics in depth. Also having classes with him was very comfortable and adjustable. "

Thulaseeram Kumar
N

C Language

"He is an amazing teacher. Just took the C course with him. Extremely concise and thorough. Deeply concerned about student learning. Probably the best teacher for C. Will recommend 100%. "

Thulaseeram Kumar
N

C Language

"He is an awesome teacher. His method of teaching fits in with my learning style perfectly. He is a very committed, dedicated teacher, who is truly concerned about student success. I'd definitely reccommend him further without a doubt. I am currently taking a class taught by him in C. Its truly a blessing. "

Thulaseeram Kumar
S

C Language

"I had a hard time finding a suitable tutor for C language given the fact that my work hours range anytime from 8AM to 10PM. I came to Mr Kumar through UrbanPro and found him to be very helpful. Right from receiving my request to taking the online classes, he made it a point to adjust to my timings. His way of teaching is very easy to understand. The examples and scenarios he provide are very clear and concise. "

Thulaseeram Kumar
H

C Language

"This teacher is just outstanding. I've attempted to study C with other teachers but in my opinion, none of them can amount to how great Mr. Thulaseeram Kumar teaches. He's always punctual with classes, notifies me well before if there any changes to classes, and teaches remarkably well during classes. Any poorly worded confusing question I have would surely be answered clearly by this teacher. At the end of every class, I would have obtained new knowledge. Mr. Kumar went over the promised curriculum quite well. I'd recommend this teacher to anyone. "

Thulaseeram Kumar
S

C Language

"I am attending online C course given by Mr.Thulaseeram Kumar. I like the approach and way of teaching. It exactly met my requirements. I am highly satisfied with the practical training sessions too. If anyone plans to take C coaching, I recommend to take it under Mr. Thulaseeram Kumar. You won't regret your decision. Good luck! "

Have you attended any class with Thulaseeram? Write a Review

Answers by Thulaseeram K. (7)

Answered on 19/07/2016 Learn IT Courses/Programming Languages/C Language

Modulus operator (%) returns the remainder of a division operator. For example: 5 % 3 gives 2. Also 5 % -3 gives 2. -5 % 3 gives -2. -5 % -3 gives -2. So always the result of the % operator takes the sign from the numerator. Also % operator is applicable on integer and character... ...more
Modulus operator (%) returns the remainder of a division operator. For example: 5 % 3 gives 2. Also 5 % -3 gives 2. -5 % 3 gives -2. -5 % -3 gives -2. So always the result of the % operator takes the sign from the numerator. Also % operator is applicable on integer and character data types only. In order to find the remainder of two float values you need to use a library function: fmod() (from math.h).
Answers 22 Comments
Dislike Bookmark

Answered on 19/07/2016 Learn IT Courses/Programming Languages/C Language

Comma operator can be used to reduce the number of statements in a program. Look at the example below: int a, b, sum; a=10; b=20; sum = a+b; All the above three statements can be clubbed together into one statement using comma as follows: sum = (a=10, b=20, a+b); Caution: In the... ...more
Comma operator can be used to reduce the number of statements in a program. Look at the example below: int a, b, sum; a=10; b=20; sum = a+b; All the above three statements can be clubbed together into one statement using comma as follows: sum = (a=10, b=20, a+b); Caution: In the above statement, if the ( ) are not used: sum becomes 10. Hence, after the below statement, a would be 10, b would be 20 and sum would be 10. sum = a=10, b=20, a+b;
Answers 20 Comments
Dislike Bookmark

Answered on 15/02/2016 Learn IT Courses/Programming Languages/C Language

The type qualifiers/modifiers in C language are used to alter the meaning of basic data types. These can be divided into 3 categories: 1. Size modifiers a. short (default) b. long 2. Sign modifiers a. signed (default) b. unsigned 3. Value modifiers a. volatile (default) b. constant Size... ...more
The type qualifiers/modifiers in C language are used to alter the meaning of basic data types. These can be divided into 3 categories: 1. Size modifiers a. short (default) b. long 2. Sign modifiers a. signed (default) b. unsigned 3. Value modifiers a. volatile (default) b. constant Size modifiers are applicable on the data types: integer and double, while Sign modifiers are applicable on the data types: integer and character. Value modifiers are applicable on any data type.
Answers 17 Comments
Dislike Bookmark

Contact

Load More

Thulaseeram K. describes himself as Faculty With 18 Years of Rich Teaching Experience and 18 Years of Real Time Corporate Experience. He conducts classes in BTech Tuition, C Language and C++ Language. Thulaseeram is located in APHB Colony, Hyderabad. Thulaseeram takes Online Classes- via online medium. He has 20 years of teaching experience . Thulaseeram has completed Master of Computer Applications (M.C.A.) from Department of Electronics, New Delhi in 2002. HeĀ is well versed in Telugu, English and Hindi. Thulaseeram has got 6 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