Sagar Pur, Delhi, India - 110046.
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.
English
Hindi
VTU 2012
Bachelor of Engineering (B.E.)
Sagar Pur, Delhi, India - 110046
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.
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
Java Programming, Data Structures and Algorithms
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 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
NIOS, CBSE, IGCSE, State, ISC/ICSE, International Baccalaureate
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 Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 11 Tuition
3
Board
CBSE, ISC/ICSE
ISC/ICSE Subjects taught
Computer Science
CBSE Subjects taught
Computer Science
Taught in School or College
No
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.
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 = 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);
}
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 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.
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
Java Programming, Data Structures and Algorithms
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 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
NIOS, CBSE, IGCSE, State, ISC/ICSE, International Baccalaureate
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 Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 11 Tuition
3
Board
CBSE, ISC/ICSE
ISC/ICSE Subjects taught
Computer Science
CBSE Subjects taught
Computer Science
Taught in School or College
No
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 = 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);
}
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 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.
Share this Profile
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.
Certified
The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.