UrbanPro
true
Indresh Kumar BTech Tuition trainer in Delhi

Indresh Kumar

Software Engineer at MakeMyTrip, Total - 6 Years experience

Sagar Pur, Delhi, India - 110046.

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

Details verified of Indresh Kumar

Identity

Education

Know how UrbanPro verifies Tutor details

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

Overview

I have a very vast experience of JAVA,C++,C, and also knowledge about algorithms which are very essential for technological as well as industrial point of view.

Languages Spoken

English

Hindi

Education

VTU 2012

Bachelor of Engineering (B.E.)

Address

Sagar Pur, Delhi, India - 110046

Verified Info

ID 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

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

3

BTech Computer Science subjects

Data Structures and Algorithms, Java Programming

BTech Branch

BTech Computer Science Engineering

Type of class

Regular Classes

Class strength catered to

One on one/ Private Tutions, Group Classes

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

3

NIOS Subjects taught

Computer Science

Board

International Baccalaureate, IGCSE, ISC/ICSE, CBSE, State, NIOS

IB Subjects taught

Computer Science

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

IGCSE Subjects taught

Computer Science

Taught in School or College

No

State Syllabus Subjects taught

Computer Science

Teaching Experience in detail in Class 12 Tuition

I teach Programming languages such as C/C++/Java in various technical institutes in Delhi. The batch was including both College and school students specifically for C and Java. Apart from this I also teach Data Structures and Algorithms which is a must learn for any Computer Science student.

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

3

Board

ISC/ICSE, CBSE

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

No

Reviews

No Reviews yet!

FAQs

1. Which BTech branches do you tutor for?

BTech Computer Science Engineering

2. Do you have any prior teaching experience?

Yes

3. Which classes do you teach?

I teach BTech Tuition, Class 11 Tuition and Class 12 Tuition Classes.

4. Do you provide a demo class?

Yes, I provide a paid demo class.

5. How many years of experience do you have?

I have been teaching for 3 years.

Answers by Indresh Kumar (2)

Answered on 29/03/2021 Learn Tuition

Here I'm using C language to swap two nos. (1) Swap two nos. with using third variable #include<stdio.h> // Declaration of swap function void swapWithExtraVar(int a,int b); // Body of swap funtion void swapWithExtraVar(int a,int b) { int tempVar; // third temporary variable tempVar... ...more

Here I'm using C language to swap two nos.

(1) Swap two nos. with using third variable 

 

#include<stdio.h>

// Declaration of swap function 

void swapWithExtraVar(int a,int b);

// Body of swap funtion

void swapWithExtraVar(int a,int b)
{
int tempVar; // third temporary variable

tempVar = a;
a=b;
b=tempVar;

printf("/n/nAfter swap/n");
printf("a = %d, b = %d",a,b);
}

int main()
{
int a,b;
printf("\n\n Enter tow numbers: ");
scanf("%d%d",&a,&b);

swapWithExtraVar(a,b);

}

------------------------------------------------------
(2) Swap two nos. without using third variable 


#include<stdio.h>

// Declaration of swap function 

void swapWithoutExtraVar(int a,int b);

// Body of swap funtion

void swapWithoutExtraVar(int a,int b)
{
a=a+b;
b=a-b;
a=a-b;

printf("/n/nAfter swap/n");
printf("a = %d, b = %d",a,b);
}

int main()
{
int a,b;
printf("\n\n Enter tow numbers: ");
scanf("%d%d",&a,&b);

swapWithoutExtraVar(a,b);

}

Answers 281 Comments
Dislike Bookmark

Answered on 09/05/2019 Learn Tuition

Learning any computer language is far comfortable than learning any new spoken language.Consider C and its handy features and ability to communicate with hardware directly. It's easy to learn. But you have to practice every day to make yourself better at programming day by day.Lots of Ebooks and tutorial... ...more

Learning any computer language is far comfortable than learning any new spoken language.
Consider C and its handy features and ability to communicate with hardware directly. It's easy to learn. But you have to practice every day to make yourself better at programming day by day.
Lots of Ebooks and tutorial are available online for C language. Some good books like "Programming in ANSI C" by "E Balaguruswamy" is a must read to kickstart your learning in C.
If you want to go deeper into the subject, try "The C Programming Language" by "Dennis Ritchie(the creator of C language)".
In the end, if you feel stuck at somewhere or want to learn more about various data structures available in C, then I'll recommend tuition.

Answers 476 Comments
Dislike Bookmark

Teaches

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

3

BTech Computer Science subjects

Data Structures and Algorithms, Java Programming

BTech Branch

BTech Computer Science Engineering

Type of class

Regular Classes

Class strength catered to

One on one/ Private Tutions, Group Classes

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

3

NIOS Subjects taught

Computer Science

Board

International Baccalaureate, IGCSE, ISC/ICSE, CBSE, State, NIOS

IB Subjects taught

Computer Science

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

IGCSE Subjects taught

Computer Science

Taught in School or College

No

State Syllabus Subjects taught

Computer Science

Teaching Experience in detail in Class 12 Tuition

I teach Programming languages such as C/C++/Java in various technical institutes in Delhi. The batch was including both College and school students specifically for C and Java. Apart from this I also teach Data Structures and Algorithms which is a must learn for any Computer Science student.

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

3

Board

ISC/ICSE, CBSE

ISC/ICSE Subjects taught

Computer Science

CBSE Subjects taught

Computer Science

Taught in School or College

No

No Reviews yet!

Answers by Indresh Kumar (2)

Answered on 29/03/2021 Learn Tuition

Here I'm using C language to swap two nos. (1) Swap two nos. with using third variable #include<stdio.h> // Declaration of swap function void swapWithExtraVar(int a,int b); // Body of swap funtion void swapWithExtraVar(int a,int b) { int tempVar; // third temporary variable tempVar... ...more

Here I'm using C language to swap two nos.

(1) Swap two nos. with using third variable 

 

#include<stdio.h>

// Declaration of swap function 

void swapWithExtraVar(int a,int b);

// Body of swap funtion

void swapWithExtraVar(int a,int b)
{
int tempVar; // third temporary variable

tempVar = a;
a=b;
b=tempVar;

printf("/n/nAfter swap/n");
printf("a = %d, b = %d",a,b);
}

int main()
{
int a,b;
printf("\n\n Enter tow numbers: ");
scanf("%d%d",&a,&b);

swapWithExtraVar(a,b);

}

------------------------------------------------------
(2) Swap two nos. without using third variable 


#include<stdio.h>

// Declaration of swap function 

void swapWithoutExtraVar(int a,int b);

// Body of swap funtion

void swapWithoutExtraVar(int a,int b)
{
a=a+b;
b=a-b;
a=a-b;

printf("/n/nAfter swap/n");
printf("a = %d, b = %d",a,b);
}

int main()
{
int a,b;
printf("\n\n Enter tow numbers: ");
scanf("%d%d",&a,&b);

swapWithoutExtraVar(a,b);

}

Answers 281 Comments
Dislike Bookmark

Answered on 09/05/2019 Learn Tuition

Learning any computer language is far comfortable than learning any new spoken language.Consider C and its handy features and ability to communicate with hardware directly. It's easy to learn. But you have to practice every day to make yourself better at programming day by day.Lots of Ebooks and tutorial... ...more

Learning any computer language is far comfortable than learning any new spoken language.
Consider C and its handy features and ability to communicate with hardware directly. It's easy to learn. But you have to practice every day to make yourself better at programming day by day.
Lots of Ebooks and tutorial are available online for C language. Some good books like "Programming in ANSI C" by "E Balaguruswamy" is a must read to kickstart your learning in C.
If you want to go deeper into the subject, try "The C Programming Language" by "Dennis Ritchie(the creator of C language)".
In the end, if you feel stuck at somewhere or want to learn more about various data structures available in C, then I'll recommend tuition.

Answers 476 Comments
Dislike Bookmark

Indresh Kumar describes himself as Software Engineer at MakeMyTrip, Total - 6 Years experience. He conducts classes in BTech Tuition, Class 11 Tuition and Class 12 Tuition. Indresh is located in Sagar Pur, Delhi. Indresh takes Online Classes- via online medium. He has 3 years of teaching experience . Indresh has completed Bachelor of Engineering (B.E.) from VTU in 2012. HeĀ is well versed in English and Hindi.

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