UrbanPro
true
Deepak C++ Language trainer in Gurgaon

Deepak

Trainer

Sector 47, Gurgaon, India - 122018.

Verified

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

Details verified of Deepak

Identity

Education

Know how UrbanPro verifies Tutor details

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

Overview

Deepak describes himself as Trainer. He conducts classes in BCA Tuition, BTech Tuition and C Language. Deepak is located in Sector 47, Gurgaon. Deepak takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. He has 18 years of teaching experience . Deepak has completed Master of Engineering - Master of Technology (M.E./M.Tech.) from Maharshi Dayananda University in 2010. HeĀ is well versed in Hindi and English.

Languages Spoken

Hindi

English

Education

Maharshi Dayananda University 2010

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

Address

Sector 47, Gurgaon, India - 122018

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 (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

17

Proficiency level taught

Basic C++, Advanced 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

17

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

17

BCA Subject

C Language Programming, Programming in C++ , Unix Shell programming, Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

18

BTech Computer Science subjects

Linux Programming, Object Oriented Programming & Systems, Java Programming

BTech Branch

BTech Computer Science Engineering

Experience in School or College

Have 18 Years of teaching in engineering college.

Type of class

Regular Classes, Crash Course

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

18

Board

ISC/ICSE, State, CBSE

CBSE Subjects taught

Computer Science

Experience in School or College

18 Years of teaching in Engineering College.

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Reviews

No Reviews yet!

FAQs

1. For what proficiency level do you teach ?

Basic C++ and Advanced C++

2. Which classes do you teach?

I teach BCA Tuition, BTech Tuition, C Language, C++ Language and Class 12 Tuition Classes.

3. Do you provide a demo class?

Yes, I provide a free demo class.

4. How many years of experience do you have?

I have been teaching for 17 years.

Answers by Deepak (8)

Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language +3 Tuition/BCA Tuition/C Language Programming IT Courses/Programming Languages/C++ Language/Advanced C++ IT Courses/Programming Languages/C++ Language/Basic C++

This is actually type casting. Type casting in c is done in the following form: (data_type)expression; where, data_type is any valid c data type, and expression may be constant, variable or expression. For example, x=(int)a+b*d; ...more

This is actually type casting.

Type casting in c is done in the following form:

(data_type)expression;

where, data_type is any valid c data type, and expression may be constant, variable or expression.

For example,

 
x=(int)a+b*d;
Answers 1 Comments
Dislike Bookmark

Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language +3 Tuition/BCA Tuition/C Language Programming IT Courses/Programming Languages/C++ Language/Advanced C++ IT Courses/Programming Languages/C++ Language/Basic C++

Use pointer. #include<stdio.h> #include<string.h> data_type function_name (char *s) {//write your code.} int main() {char *str1; char str2; scanf("%s",str1); scanf("%s",str2); data_type var1 = function_name(str1); data_type var2 = function_name(str2)return 0; ...more

Use pointer.

#include<stdio.h>

#include<string.h>

data_type function_name (char *s)

{//write your code.}

int main()

{char *str1;

char str2[size];

scanf("%s",str1);

scanf("%s",str2);

data_type var1 = function_name(str1);

data_type var2 = function_name(str2)return 0;

 

Answers 2 Comments
Dislike Bookmark

Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language +3 Tuition/BCA Tuition/C Language Programming IT Courses/Programming Languages/C++ Language/Advanced C++ IT Courses/Programming Languages/C++ Language/Basic C++

// C program to rotate a matrix by 180 degrees #include <stdio.h> #define N 3 // Function to Rotate the matrix by 180 degree void rotateMatrix(int mat) { // Simply print from last cell to first cell. for (int i = N - 1; i >= 0; i--) { for (int j = N - 1; j >= 0; j--) printf("%d ", mat); printf("\n");... ...more

// C program to rotate a matrix by 180 degrees
#include <stdio.h>
#define N 3

// Function to Rotate the matrix by 180 degree
void rotateMatrix(int mat[][N])
{
// Simply print from last cell to first cell.
for (int i = N - 1; i >= 0; i--) {
for (int j = N - 1; j >= 0; j--)
printf("%d ", mat[i][j]);

printf("\n");
}
}

// Driven code
int main()
{
int mat[N][N] = {
{ 1, 2, 3 },
{ 4, 5, 6 },
{ 7, 8, 9 }
};

rotateMatrix(mat);
return 0;
}

Answers 2 Comments
Dislike Bookmark

Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language +3 Tuition/BCA Tuition/C Language Programming IT Courses/Programming Languages/C++ Language/Advanced C++ IT Courses/Programming Languages/C++ Language/Basic C++

I dont think there is any concept which you can not understand though people feel that pointer is difficult. But everything has a concept. If you learn the concept things become easier. Do a dry run of the concepts.
Answers 1 Comments
Dislike Bookmark

Teaches

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

17

Proficiency level taught

Basic C++, Advanced 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

17

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

17

BCA Subject

C Language Programming, Programming in C++ , Unix Shell programming, Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

18

BTech Computer Science subjects

Linux Programming, Object Oriented Programming & Systems, Java Programming

BTech Branch

BTech Computer Science Engineering

Experience in School or College

Have 18 Years of teaching in engineering college.

Type of class

Regular Classes, Crash Course

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

18

Board

ISC/ICSE, State, CBSE

CBSE Subjects taught

Computer Science

Experience in School or College

18 Years of teaching in Engineering College.

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

No Reviews yet!

Answers by Deepak (8)

Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language +3 Tuition/BCA Tuition/C Language Programming IT Courses/Programming Languages/C++ Language/Advanced C++ IT Courses/Programming Languages/C++ Language/Basic C++

This is actually type casting. Type casting in c is done in the following form: (data_type)expression; where, data_type is any valid c data type, and expression may be constant, variable or expression. For example, x=(int)a+b*d; ...more

This is actually type casting.

Type casting in c is done in the following form:

(data_type)expression;

where, data_type is any valid c data type, and expression may be constant, variable or expression.

For example,

 
x=(int)a+b*d;
Answers 1 Comments
Dislike Bookmark

Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language +3 Tuition/BCA Tuition/C Language Programming IT Courses/Programming Languages/C++ Language/Advanced C++ IT Courses/Programming Languages/C++ Language/Basic C++

Use pointer. #include<stdio.h> #include<string.h> data_type function_name (char *s) {//write your code.} int main() {char *str1; char str2; scanf("%s",str1); scanf("%s",str2); data_type var1 = function_name(str1); data_type var2 = function_name(str2)return 0; ...more

Use pointer.

#include<stdio.h>

#include<string.h>

data_type function_name (char *s)

{//write your code.}

int main()

{char *str1;

char str2[size];

scanf("%s",str1);

scanf("%s",str2);

data_type var1 = function_name(str1);

data_type var2 = function_name(str2)return 0;

 

Answers 2 Comments
Dislike Bookmark

Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language +3 Tuition/BCA Tuition/C Language Programming IT Courses/Programming Languages/C++ Language/Advanced C++ IT Courses/Programming Languages/C++ Language/Basic C++

// C program to rotate a matrix by 180 degrees #include <stdio.h> #define N 3 // Function to Rotate the matrix by 180 degree void rotateMatrix(int mat) { // Simply print from last cell to first cell. for (int i = N - 1; i >= 0; i--) { for (int j = N - 1; j >= 0; j--) printf("%d ", mat); printf("\n");... ...more

// C program to rotate a matrix by 180 degrees
#include <stdio.h>
#define N 3

// Function to Rotate the matrix by 180 degree
void rotateMatrix(int mat[][N])
{
// Simply print from last cell to first cell.
for (int i = N - 1; i >= 0; i--) {
for (int j = N - 1; j >= 0; j--)
printf("%d ", mat[i][j]);

printf("\n");
}
}

// Driven code
int main()
{
int mat[N][N] = {
{ 1, 2, 3 },
{ 4, 5, 6 },
{ 7, 8, 9 }
};

rotateMatrix(mat);
return 0;
}

Answers 2 Comments
Dislike Bookmark

Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language +3 Tuition/BCA Tuition/C Language Programming IT Courses/Programming Languages/C++ Language/Advanced C++ IT Courses/Programming Languages/C++ Language/Basic C++

I dont think there is any concept which you can not understand though people feel that pointer is difficult. But everything has a concept. If you learn the concept things become easier. Do a dry run of the concepts.
Answers 1 Comments
Dislike Bookmark

Contact

Load More

Deepak describes himself as Trainer. He conducts classes in BCA Tuition, BTech Tuition and C Language. Deepak is located in Sector 47, Gurgaon. Deepak takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. He has 18 years of teaching experience . Deepak has completed Master of Engineering - Master of Technology (M.E./M.Tech.) from Maharshi Dayananda University in 2010. HeĀ is well versed in Hindi and English.

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