UrbanPro
true
Ravi Chandra N. C Language trainer in Bangalore

Ravi Chandra N.

locationImg Ganganagar, Bangalore
12 yrs of Exp
rsIcon 200 per hour
Contact
+919845547334
Contact
+919845547334

Details verified of Ravi Chandra N.

Identity

Education

Know how UrbanPro verifies Tutor details

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

Tutor

Online Classes
I completed my B.E. in computer science in 2000. I have 12+ years of experience in teaching C, C++, Java, j2ee,MySQL, HTML, CSS, and JavaScript .
Also Python, Spring, Hibernate.
I have taught in various reputed training organizations like
NIIT , Aptech, Systems Domain, STG.

Languages Spoken

English

Kannada

Hindi

Education

Bangalore University 2000

Bachelor of Engineering (B.E.)

Address

Ganganagar, Bangalore, India - 560032

Verified Info

ID Verified

Education Verified

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

C Language Classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in C Language Classes

12

C++ Language Classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

12

Proficiency level taught

Basic C++, Advanced C++

Java Training Classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

11

Teaches

JSP (Java Server Pages), Java Full Stack Developer, Hibernate, Java Real Time Projects, J2EE, Spring, Servlet, Core Java, Web services

Certification training offered

No

Python Training classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Python Training classes

6

Course Duration provided

1-3 months

Seeker background catered to

Educational Institution, Individual, Corporate company

Certification provided

No

Python applications taught

Core Python, Web Development with Python , GUI (Graphical User Interfaces) with Python

Teaching Experience in detail in Python Training classes

I have been teaching core and advanced python since 5 years.

BTech Tuition

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

12

BTech Computer Science subjects

Compiler Design, Computer Architecture, Object Oriented Programming & Systems, Microprocessors, Mobile Application Development, Data Structures and Algorithms, Database Management Systems, Java Programming, Computer Organization & Design, Design and Analysis of Algorithms

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

Teaching Experience in detail in BTech Tuition

I have taught c , c++ , java ,j2ee ,python , php, Mysql for engineering(Btech) students .i have 12 years experience in training.

Engineering Diploma Tuition

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

13

Information Technology Engineering Diploma Subject

Relational Data Base Management Systems, Object Oriented Programming, Data Structure

Engineering Diploma Branch

Information Technology Engineering Diploma, Computer Engineering Diploma

Computer Engineering Diploma Subject

Relational Database Management Systems, Operating System, Data Structure Using 'C', Advanced Java Programming, Java Programming, Object Oriented Programming, 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

BCA Tuition

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

11

BCA Subject

Database Management Systems , Programming in C++ , IT, Java Programming, C Language Programming

Type of class

Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

Reviews

No Reviews yet!

Answers by Ravi Chandra N.

Answered on 15/12/2014 Learn IT Courses/Java

Ask a Question

Post a Lesson

Using the this Keyword Within an instance method or a constructor, this is a reference to the current object — the object whose method or constructor is being called. You can refer to any member of the current object from within an instance method or a constructor by using this. Using this with... ...more
Using the this Keyword Within an instance method or a constructor, this is a reference to the current object — the object whose method or constructor is being called. You can refer to any member of the current object from within an instance method or a constructor by using this. Using this with a Field --------------------------------- The most common reason for using the this keyword is because a field is shadowed by a method or constructor parameter. For example, the Point class was written like this public class a { public int x = 0; public int y = 0; //constructor public a(int a, int b) { x = a; y = b; } } but it could have been written like this: public class a { public int x = 0; public int y = 0; //constructor public a(int x, int y) { this.x = x; this.y = y; } } Each argument to the constructor shadows one of the object's fields — inside the constructor x is a local copy of the constructor's first argument. To refer to the class a's field x, the constructor must use this.x. Using this with a Constructor From within a constructor, you can also use the this keyword to call another constructor in the same class. Doing so is called an explicit constructor invocation. for example: public class b { private int x, y; private int width, height; public b() { this(0, 0, 1, 1); } public b(int width, int height) { this(0, 0, width, height); } public b(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; } ... }
Answers 81 Comments
Dislike Bookmark

Answered on 11/12/2014 Learn IT Courses/Programming Languages/C++ Language

Ask a Question

Post a Lesson

constructor is a member function of a class which has same name as class name, it has no return type not even void, it returns an object of same class. it is used for intializing the variables within class.
Answers 250 Comments
Dislike Bookmark
x

Ask a Question

Please enter your Question

Please select a Tag

Teaches

C Language Classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in C Language Classes

12

C++ Language Classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

12

Proficiency level taught

Basic C++, Advanced C++

Java Training Classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

11

Teaches

JSP (Java Server Pages), Java Full Stack Developer, Hibernate, Java Real Time Projects, J2EE, Spring, Servlet, Core Java, Web services

Certification training offered

No

Python Training classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Python Training classes

6

Course Duration provided

1-3 months

Seeker background catered to

Educational Institution, Individual, Corporate company

Certification provided

No

Python applications taught

Core Python, Web Development with Python , GUI (Graphical User Interfaces) with Python

Teaching Experience in detail in Python Training classes

I have been teaching core and advanced python since 5 years.

BTech Tuition

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

12

BTech Computer Science subjects

Compiler Design, Computer Architecture, Object Oriented Programming & Systems, Microprocessors, Mobile Application Development, Data Structures and Algorithms, Database Management Systems, Java Programming, Computer Organization & Design, Design and Analysis of Algorithms

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

Teaching Experience in detail in BTech Tuition

I have taught c , c++ , java ,j2ee ,python , php, Mysql for engineering(Btech) students .i have 12 years experience in training.

Engineering Diploma Tuition

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

13

Information Technology Engineering Diploma Subject

Relational Data Base Management Systems, Object Oriented Programming, Data Structure

Engineering Diploma Branch

Information Technology Engineering Diploma, Computer Engineering Diploma

Computer Engineering Diploma Subject

Relational Database Management Systems, Operating System, Data Structure Using 'C', Advanced Java Programming, Java Programming, Object Oriented Programming, 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

BCA Tuition

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

11

BCA Subject

Database Management Systems , Programming in C++ , IT, Java Programming, C Language Programming

Type of class

Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

No Reviews yet!

Answers by Ravi Chandra N.

Answered on 15/12/2014 Learn IT Courses/Java

Ask a Question

Post a Lesson

Using the this Keyword Within an instance method or a constructor, this is a reference to the current object — the object whose method or constructor is being called. You can refer to any member of the current object from within an instance method or a constructor by using this. Using this with... ...more
Using the this Keyword Within an instance method or a constructor, this is a reference to the current object — the object whose method or constructor is being called. You can refer to any member of the current object from within an instance method or a constructor by using this. Using this with a Field --------------------------------- The most common reason for using the this keyword is because a field is shadowed by a method or constructor parameter. For example, the Point class was written like this public class a { public int x = 0; public int y = 0; //constructor public a(int a, int b) { x = a; y = b; } } but it could have been written like this: public class a { public int x = 0; public int y = 0; //constructor public a(int x, int y) { this.x = x; this.y = y; } } Each argument to the constructor shadows one of the object's fields — inside the constructor x is a local copy of the constructor's first argument. To refer to the class a's field x, the constructor must use this.x. Using this with a Constructor From within a constructor, you can also use the this keyword to call another constructor in the same class. Doing so is called an explicit constructor invocation. for example: public class b { private int x, y; private int width, height; public b() { this(0, 0, 1, 1); } public b(int width, int height) { this(0, 0, width, height); } public b(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; } ... }
Answers 81 Comments
Dislike Bookmark

Answered on 11/12/2014 Learn IT Courses/Programming Languages/C++ Language

Ask a Question

Post a Lesson

constructor is a member function of a class which has same name as class name, it has no return type not even void, it returns an object of same class. it is used for intializing the variables within class.
Answers 250 Comments
Dislike Bookmark
x

Ask a Question

Please enter your Question

Please select a Tag

  • Want to learn from Ravi Chandra N.?

  • Contact Now
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