UrbanPro
true
Renuka Q. BCA Tuition trainer in Bangalore

Renuka Q.

Software Development Professional

Sarjapur Road, Bangalore, India - 560102.

3 Students

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

Details verified of Renuka Q.

Identity

Education

Know how UrbanPro verifies Tutor details

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

Overview

Over 13 years of IT industry experience in Embedded, Networking and Telecom as a Senior Software Engineer and as a manager.

Conducting Tuition for C, C++, Networking, Linux, Python, Machine Learning, Data Analytics, Octave and MATLAB
Conducting Tuition for all subjects of BE Computer Science, BCA & MCA
Conducting Tuition for all Computer Science related subjects.

Languages Spoken

English

Education

Shivaji University 2000

Master of Computer Applications (M.C.A.)

Address

Sarjapur Road, Bangalore, India - 560102

Verified Info

Phone Verified

Email Verified

Facebook 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

BCA Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

13

BCA Subject

Computer Basics and PC Software , Computer Networks , Problem Solving and Programming , Assembly Language Programming, Operation Research, Systems Analysis and Design , Internet Concepts and Web Design , Algorithm Design , C Language Programming, Software Engineering , Microprocessor, Computer Oriented Numerical Techniques , Network Programming and Administration , Data and File Structures , Programming in C++ , Operating System Concepts and Networking Management , Mathematics, IT, Cryptography and Network Security, Object Oriented Technologies, Data Communication and Networks, Database Management Systems , Computer Architecture, Data structures

Type of class

Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

C Language Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

13

C++ Language Classes
4 Students

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

Advanced C++, Basic C++

Teaching Experience in detail in C++ Language Classes

Computer Networking classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Networking classes

13

Teaching Experience in detail in Computer Networking classes

I have over 13 years of experience in software development in Networking-Datacom domain, using C & C++. I also train software professionals in C, C++, Python & Networking.

Linux Training
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Linux Training

6

Teaches

Linux Basics, Linux Cluster

MCA Coaching classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in MCA Coaching classes

13

BTech Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

13

BTech Computer Science subjects

Data Communication, Computer Networks, Object Oriented Programming & Systems, Information Security, Computer Architecture, Software Project Management, Unix Network Programming, Computer Organization & Design, Software Testing and Analysis, Internet Technology and Applications, Software Quality Assurance, Design and Analysis of Algorithms, Linux Programming, Software Engineering and Architecture, Data Structures and Algorithms

BTech Branch

BTech Computer Science Engineering

Type of class

Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

Class 9 Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

15

Board

State, ICSE, CBSE

CBSE Subjects taught

Science, Mathematics, English, Hindi

ICSE Subjects taught

Mathematics, Hindi, Chemistry, Physics

Taught in School or College

Yes

State Syllabus Subjects taught

Hindi, Mathematics, Science, English

Class 10 Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

15

Board

State, ICSE, CBSE

CBSE Subjects taught

Science, Mathematics, English, Hindi

ICSE Subjects taught

Mathematics, Hindi, Chemistry, Physics

Taught in School or College

Yes

State Syllabus Subjects taught

Hindi, Mathematics, Science, English

Class 11 Tuition
4 Students

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

CBSE, State

CBSE Subjects taught

Computer Science, Mathematics, Economics

Taught in School or College

Yes

State Syllabus Subjects taught

Mathematics, Computer Science, Kannada, Physics

Class 12 Tuition
4 Students

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

CBSE, State

CBSE Subjects taught

Computer Science, Mathematics, Economics

Taught in School or College

Yes

State Syllabus Subjects taught

Mathematics, Computer Science, Kannada, Physics

Engineering Diploma Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Reviews (2)

5 out of 5 2 reviews

Renuka K. https://s3-ap-southeast-1.amazonaws.com/tv-prod/member/photo/82407-small.jpg Sarjapur Road
5.0052
Renuka K.
G

BTech Tuition

"She has a Networks working experience on Linux & C, which is relevant to us."

Renuka K.
G

BTech Tuition

"She has a Networks working experience on Linux & C, which is relevant to us."

Have you attended any class with Renuka? Write a Review

FAQs

1. Which BCA subjects do you tutor for?

Computer Basics and PC Software , Computer Networks , Problem Solving and Programming and others

2. Do you have any prior teaching experience?

No

3. Which classes do you teach?

I teach BCA Tuition, BTech Tuition, C Language, C++ Language, Class 10 Tuition, Class 11 Tuition, Class 12 Tuition, Class 9 Tuition, Computer Networking and Computer Software 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 13 years.

Answers by Renuka (1)

Answered on 27/07/2015 Learn Tuition/BTech Tuition

unsigned int v; // count the number of bits set in v unsigned int c; // c accumulates the total bits set in v for (c = 0; v; v >>= 1) { c += v & 1; } The naive approach requires one iteration per bit, until no more bits are set. So on a 32-bit word with only the high set, it will go through... ...more
unsigned int v; // count the number of bits set in v unsigned int c; // c accumulates the total bits set in v for (c = 0; v; v >>= 1) { c += v & 1; } The naive approach requires one iteration per bit, until no more bits are set. So on a 32-bit word with only the high set, it will go through 32 iterations. Let me know if you need more detailed explaination.
Answers 7 Comments
Dislike Bookmark

Teaches

BCA Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

13

BCA Subject

Computer Basics and PC Software , Computer Networks , Problem Solving and Programming , Assembly Language Programming, Operation Research, Systems Analysis and Design , Internet Concepts and Web Design , Algorithm Design , C Language Programming, Software Engineering , Microprocessor, Computer Oriented Numerical Techniques , Network Programming and Administration , Data and File Structures , Programming in C++ , Operating System Concepts and Networking Management , Mathematics, IT, Cryptography and Network Security, Object Oriented Technologies, Data Communication and Networks, Database Management Systems , Computer Architecture, Data structures

Type of class

Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

C Language Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

13

C++ Language Classes
4 Students

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

Advanced C++, Basic C++

Teaching Experience in detail in C++ Language Classes

Computer Networking classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Networking classes

13

Teaching Experience in detail in Computer Networking classes

I have over 13 years of experience in software development in Networking-Datacom domain, using C & C++. I also train software professionals in C, C++, Python & Networking.

Linux Training
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Linux Training

6

Teaches

Linux Basics, Linux Cluster

MCA Coaching classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in MCA Coaching classes

13

BTech Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

13

BTech Computer Science subjects

Data Communication, Computer Networks, Object Oriented Programming & Systems, Information Security, Computer Architecture, Software Project Management, Unix Network Programming, Computer Organization & Design, Software Testing and Analysis, Internet Technology and Applications, Software Quality Assurance, Design and Analysis of Algorithms, Linux Programming, Software Engineering and Architecture, Data Structures and Algorithms

BTech Branch

BTech Computer Science Engineering

Type of class

Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

Class 9 Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

15

Board

State, ICSE, CBSE

CBSE Subjects taught

Science, Mathematics, English, Hindi

ICSE Subjects taught

Mathematics, Hindi, Chemistry, Physics

Taught in School or College

Yes

State Syllabus Subjects taught

Hindi, Mathematics, Science, English

Class 10 Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

15

Board

State, ICSE, CBSE

CBSE Subjects taught

Science, Mathematics, English, Hindi

ICSE Subjects taught

Mathematics, Hindi, Chemistry, Physics

Taught in School or College

Yes

State Syllabus Subjects taught

Hindi, Mathematics, Science, English

Class 11 Tuition
4 Students

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

CBSE, State

CBSE Subjects taught

Computer Science, Mathematics, Economics

Taught in School or College

Yes

State Syllabus Subjects taught

Mathematics, Computer Science, Kannada, Physics

Class 12 Tuition
4 Students

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

CBSE, State

CBSE Subjects taught

Computer Science, Mathematics, Economics

Taught in School or College

Yes

State Syllabus Subjects taught

Mathematics, Computer Science, Kannada, Physics

Engineering Diploma Tuition
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

5 out of 5 2 reviews

Renuka K.
G

BTech Tuition

"She has a Networks working experience on Linux & C, which is relevant to us."

Renuka K.
G

BTech Tuition

"She has a Networks working experience on Linux & C, which is relevant to us."

Have you attended any class with Renuka? Write a Review

Answers by Renuka Q. (1)

Answered on 27/07/2015 Learn Tuition/BTech Tuition

unsigned int v; // count the number of bits set in v unsigned int c; // c accumulates the total bits set in v for (c = 0; v; v >>= 1) { c += v & 1; } The naive approach requires one iteration per bit, until no more bits are set. So on a 32-bit word with only the high set, it will go through... ...more
unsigned int v; // count the number of bits set in v unsigned int c; // c accumulates the total bits set in v for (c = 0; v; v >>= 1) { c += v & 1; } The naive approach requires one iteration per bit, until no more bits are set. So on a 32-bit word with only the high set, it will go through 32 iterations. Let me know if you need more detailed explaination.
Answers 7 Comments
Dislike Bookmark

Renuka Q. describes herself as Software Development Professional. She conducts classes in BCA Tuition, BTech Tuition and C Language. Renuka is located in Sarjapur Road, Bangalore. Renuka takes Regular Classes- at her Home. She has 15 years of teaching experience . Renuka has completed Master of Computer Applications (M.C.A.) from Shivaji University in 2000. She is well versed in English. Renuka has got 2 reviews till now with 100% positive feedback.

X
X

Post your Learning Need

Let us shortlist and give the best tutors and institutes.

or

Send Enquiry to Renuka

Let Renuka know you are interested in their class

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.

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