UrbanPro
true
Ankur Charan BTech Tuition trainer in Yamuna Nagar/>

Ankur Charan

Yamunanagar, Yamuna Nagar, India - 135001.

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

Details verified of Ankur Charan

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 am a Software Engineer with professional working experience of a year. I like to teach and that's why I want to do this on the side.
I have a Bachelor's Degree in Computer Engineering from NIT Kurukshetra.

Languages Spoken

Hindi Mother Tongue (Native)

English Proficient

Education

National Institute of Technology (NIT), Kurukshetra 2020

Bachelor of Technology (B.Tech.)

Address

Yamunanagar, Yamuna Nagar, India - 135001

Verified Info

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

2

BTech Electrical & Electronics subjects

Data Structures & Algorithms, Algorithms And Data Structures

BTech Computer Science subjects

Web Engineering, Data Structures and Algorithms, Object Oriented Programming & Systems

BTech Branch

BTech Computer Science Engineering

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

BSc Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BSc Tuition

1

BSc Computer Science Subjects

Data Structures, Operating Systems

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

BSc Branch

BSc Computer Science

BA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BA Tuition

1

Field tutored for

Computer Science

BA Computer Science Subjects

Programming in JAVA, Data Structures, Operating Systems, Programming Fundamentals using C++

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

Engineering Diploma Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

1

Engineering Diploma Branch

Computer Engineering Diploma

Computer Engineering Diploma Subject

Data Structure Using 'C'

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

1

BCA Subject

Algorithm Design , C Language Programming, IT, Data and File Structures , Programming in C++ , Data structures, Web Programming

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

Courses

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?

No

3. Which classes do you teach?

I teach BA Tuition, BCA Tuition, BSc Tuition, BTech Tuition and Engineering Diploma 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 2 years.

Answers by Ankur Charan (1)

Answered on 24/04/2021 Learn Tuition

Below is the C++ code for this: #include <bits/stdc++.h> using namespace std; int main() { int x = 10, y = 5; x = x ^ y; // x = x^y y = x ^ y; // y = x^y = (x^y)&^y = x x = x ^ y; // x = x^y = (x^y)^(x) = y cout << "After Swapping: x =" <<... ...more

Below is the C++ code for this:

 

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int x = 10, y = 5;
    x = x ^ y;   // x = x^y
    y = x ^ y;   // y = x^y = (x^y)&^y = x
    x = x ^ y;   // x = x^y = (x^y)^(x) = y
 
    cout << "After Swapping: x =" << x << ", y=" << y;
    return 0;
}
Answers 281 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

2

BTech Electrical & Electronics subjects

Data Structures & Algorithms, Algorithms And Data Structures

BTech Computer Science subjects

Web Engineering, Data Structures and Algorithms, Object Oriented Programming & Systems

BTech Branch

BTech Computer Science Engineering

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

BSc Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BSc Tuition

1

BSc Computer Science Subjects

Data Structures, Operating Systems

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

BSc Branch

BSc Computer Science

BA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BA Tuition

1

Field tutored for

Computer Science

BA Computer Science Subjects

Programming in JAVA, Data Structures, Operating Systems, Programming Fundamentals using C++

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

Engineering Diploma Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

1

Engineering Diploma Branch

Computer Engineering Diploma

Computer Engineering Diploma Subject

Data Structure Using 'C'

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

1

BCA Subject

Algorithm Design , C Language Programming, IT, Data and File Structures , Programming in C++ , Data structures, Web Programming

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

No

Courses

No Reviews yet!

Answers by Ankur Charan (1)

Answered on 24/04/2021 Learn Tuition

Below is the C++ code for this: #include <bits/stdc++.h> using namespace std; int main() { int x = 10, y = 5; x = x ^ y; // x = x^y y = x ^ y; // y = x^y = (x^y)&^y = x x = x ^ y; // x = x^y = (x^y)^(x) = y cout << "After Swapping: x =" <<... ...more

Below is the C++ code for this:

 

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int x = 10, y = 5;
    x = x ^ y;   // x = x^y
    y = x ^ y;   // y = x^y = (x^y)&^y = x
    x = x ^ y;   // x = x^y = (x^y)^(x) = y
 
    cout << "After Swapping: x =" << x << ", y=" << y;
    return 0;
}
Answers 281 Comments
Dislike Bookmark

Ankur Charan conducts classes in BA Tuition, BCA Tuition and BSc Tuition. Ankur is located in Yamunanagar, Yamuna Nagar. Ankur takes Regular Classes- at his Home and Online Classes- via online medium. He has 2 years of teaching experience . Ankur has completed Bachelor of Technology (B.Tech.) from National Institute of Technology (NIT), Kurukshetra in 2020. HeĀ is well versed in Hindi and English.

X

Share this Profile

Recommended Profiles

Jijnasee d.

Jijnasee d. photo G.G.P.Colony, Bhubaneswar

Vidyasagar Reddy

Vidyasagar Reddy photo Bommanahalli, Bangalore

Surya Pratap

Surya Pratap photo Andheri Deori, Beawar

Tomu Kurian

Tomu Kurian photo Chamakala, Vaikom

Muhammed Suhail R

Muhammed Suhail R photo P.M.G Pattom, Thiruvananthapuram

Kranthi Kumar Varagani

Kranthi Kumar Varagani photo Kphb Colony, Hyderabad

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