UrbanPro
true
Harish Junwal Class 11 Tuition trainer in Indore

Harish Junwal

Tutor

Chhoti Gwaltoli, Indore, India - 452007.

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

Details verified of Harish Junwal

Identity

Education

Know how UrbanPro verifies Tutor details

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

Overview

Having 5 years of Teaching experience in Engineering college. Worked as an Assistant Professor. M.Tech and B.Tech in computer science.

Languages Spoken

English

Hindi

Education

M.A.N.I.T. Bhopal 2008

Bachelor of Technology (B.Tech.)

DAVV Indore 2012

Master of Engineering - Master of Technology (M.E./M.Tech.)

Address

Chhoti Gwaltoli, Indore, India - 452007

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

Class 11 Tuition

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

CBSE Subjects taught

Computer Science, Mathematics, Physics

Taught in School or College

Yes

Class 12 Tuition

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

CBSE Subjects taught

Computer Science, Mathematics, Physics

Taught in School or College

Yes

Class 9 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

5

Board

CBSE

CBSE Subjects taught

Mathematics, Computer Practices

Taught in School or College

Yes

Class 10 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

5

Board

CBSE

CBSE Subjects taught

Mathematics, Computer Practices

Taught in School or College

Yes

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

5

Proficiency level taught

Basic C++

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

8

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

5

BTech Computer Science subjects

Computer Graphics and Multimedia, Database Management Systems, Design and Analysis of Algorithms, Data Structures and Algorithms, Java Programming

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

Yes

Reviews

No Reviews yet! Be the first one to Review

FAQs

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

CBSE

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

Yes

3. Which classes do you teach?

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

Answers by Harish Junwal (1)

Answered on 17/08/2017 Learn IT Courses/Programming Languages/C Language

#include"stdio.h" void main() { char str; int i, j, temp, len=0; clrscr(); printf("Enter String "); gets(str); len = strlen(str); for(i=0, j=len-1; i < len/2; i++, j--) { temp = str; str = str; str = temp; } printf("\nReverse string is :\n%s", str); getch(); } ...more
#include"stdio.h" void main() { char str[50]; int i, j, temp, len=0; clrscr(); printf("Enter String "); gets(str); len = strlen(str); for(i=0, j=len-1; i < len/2; i++, j--) { temp = str[i]; str[i] = str[j]; str[j] = temp; } printf("\nReverse string is :\n%s", str); getch(); }
Answers 13 Comments
Dislike Bookmark

Teaches

Class 11 Tuition

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

CBSE Subjects taught

Computer Science, Mathematics, Physics

Taught in School or College

Yes

Class 12 Tuition

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

CBSE Subjects taught

Computer Science, Mathematics, Physics

Taught in School or College

Yes

Class 9 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

5

Board

CBSE

CBSE Subjects taught

Mathematics, Computer Practices

Taught in School or College

Yes

Class 10 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

5

Board

CBSE

CBSE Subjects taught

Mathematics, Computer Practices

Taught in School or College

Yes

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

5

Proficiency level taught

Basic C++

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

8

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

5

BTech Computer Science subjects

Computer Graphics and Multimedia, Database Management Systems, Design and Analysis of Algorithms, Data Structures and Algorithms, Java Programming

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

Yes

No Reviews yet! Be the first one to Review

Answers by Harish Junwal (1)

Answered on 17/08/2017 Learn IT Courses/Programming Languages/C Language

#include"stdio.h" void main() { char str; int i, j, temp, len=0; clrscr(); printf("Enter String "); gets(str); len = strlen(str); for(i=0, j=len-1; i < len/2; i++, j--) { temp = str; str = str; str = temp; } printf("\nReverse string is :\n%s", str); getch(); } ...more
#include"stdio.h" void main() { char str[50]; int i, j, temp, len=0; clrscr(); printf("Enter String "); gets(str); len = strlen(str); for(i=0, j=len-1; i < len/2; i++, j--) { temp = str[i]; str[i] = str[j]; str[j] = temp; } printf("\nReverse string is :\n%s", str); getch(); }
Answers 13 Comments
Dislike Bookmark

Harish Junwal describes himself as Tutor. He conducts classes in BTech Tuition, C Language and C++ Language. Harish is located in Chhoti Gwaltoli, Indore. Harish takes at students Home. He has 8 years of teaching experience . Harish has completed Bachelor of Technology (B.Tech.) from M.A.N.I.T. Bhopal in 2008 and Master of Engineering - Master of Technology (M.E./M.Tech.) from DAVV Indore in 2012. He is well versed in English and Hindi.

X
X

Post your Learning Need

Let us shortlist and give the best tutors and institutes.

or

Send Enquiry to Harish Junwal

Let Harish Junwal 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