UrbanPro
true
Ashutosh V. Class 7 Tuition trainer in Varanasi

Ashutosh V.

Creative Minds Trainer

Bulanala, Varanasi, India - 221001.

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

Details verified of Ashutosh V.

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 currently working in LG Electronics and have 4+ years of experience in embedded C and industrial C, C++, Java, Javascript and Python technologies.
I primarily work on C C++ and javascript.
I handle classes on C, C++ & Data Structures and Algorithms for professionals who are looking for a job change and want to crack interviews on DS & Algorithms, as well as for B.Tech students.
I also handle classes for class 6th to highschool students.

Languages Spoken

English

Hindi

Education

UPTU 2013

Bachelor of Technology (B.Tech.)

CDAC Hyderabad 2014

PG Diploma in embedded systems

Address

Bulanala, Varanasi, India - 221001

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

Class 7 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 7 Tuition

3

Board

CBSE, ICSE, State

CBSE Subjects taught

Social Science, Science, Computers, Hindi, EVS, English

ICSE Subjects taught

Chemistry, History, Biology, Computer Science, Physics, Hindi, English, Mathematics, Geography, EVS

Taught in School or College

Yes

State Syllabus Subjects taught

EVS, Social science, Mathematics, Science, English, Hindi

Class 6 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 6 Tuition

3

Board

CBSE, ICSE, State

CBSE Subjects taught

Mathematics, Social Science, Science, Computers, Hindi, EVS, English

ICSE Subjects taught

Chemistry, History, Biology, Computer Science, Physics, Hindi, English, Mathematics, Geography, EVS

Taught in School or College

Yes

State Syllabus Subjects taught

EVS, Social science, Mathematics, Science, English, Hindi

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

3

Board

State, CBSE, ICSE

CBSE Subjects taught

English, Social science, Science, Mathematics, Hindi

ICSE Subjects taught

Computer Application, Chemistry, Biology, History and Civics, Physics, English Literature, Geography, English, EVS, Mathematics, Hindi

Taught in School or College

Yes

State Syllabus Subjects taught

Hindi, EVS, Science, English, Mathematics, Social Science

Class 8 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 8 Tuition

3

Board

CBSE, ICSE, State

CBSE Subjects taught

Mathematics, Social Science, Science, Computers, EVS, English

ICSE Subjects taught

Chemistry, History, Biology, Computer Science, Physics, Hindi, English, Mathematics, Geography, EVS

Taught in School or College

Yes

State Syllabus Subjects taught

EVS, Social science, Mathematics, Science, English, Hindi

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

3

Board

State, CBSE, ICSE

CBSE Subjects taught

English, Social science, Computer Practices, Science, Mathematics, Hindi, Information and Comunication Technology

ICSE Subjects taught

Computer Application, Chemistry, Biology, History and Civics, Physics, English Literature, Geography, English, EVS, Mathematics, Hindi

Taught in School or College

Yes

State Syllabus Subjects taught

Hindi, EVS, Science, English, Mathematics, Social Science

Java Script Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Script Training classes

4

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

3

Teaches

Core Java

Certification training offered

No

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

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

5

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 Electrical & Electronics subjects

Circuit Theory, Signal Processing, Computer Networks, Electromagnetic Theory, Algorithms And Data Structures, Microprocessors, Communication Systems, Electrical Circuit Analysis, Power Electronics, Control Systems, Data Structures & Algorithms, Alternative Energy Sources, Analog And Digital Communication, Applications of Digital Signal Processing (DSP)

BTech Branch

BTech Electrical & Electronics, BTech 1st Year Engineering

Type of class

Crash Course, Regular Classes

Class strength catered to

One on one/ Private Tutions

Taught in School or College

Yes

BTech 1st Year subjects

Computer science, Environmental Studies, Basic Electronics, Engineering Mathematics (M1), Biology For Engineers, Engineering Physics, Basic Electrical Technology

Reviews

No Reviews yet! Be the first one to Review

FAQs

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

CBSE, ICSE and State

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 6 Tuition, Class 7 Tuition, Class 8 Tuition, Class 9 Tuition, Java Script Training and Java Training 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 3 years.

Answers by Ashutosh V. (4)

Answered on 10/09/2016 Learn IT Courses/Programming Languages/C++ Language +1 IT Courses/Programming Languages/C++ Language/Basic C++

Dos.h is one among the header files . It contains functions for handling interrupts, producing sound, date and time functions etc. It is a Borland specific and works in turbo c compiler.
Answers 17 Comments
Dislike Bookmark

Answered on 10/09/2016 Learn IT Courses/Programming Languages/C Language

Row Wise: The address of a location in Row Major System is calculated using the following formula: Address of A = B + W * Column Wise: The address of a location in Column Major System is calculated using the following formula: Address of A Column Major Wise = B + W * Where, B... ...more
Row Wise: The address of a location in Row Major System is calculated using the following formula: Address of A [ I ][ J ] = B + W * [ N * ( I – Lr ) + ( J – Lc ) ] Column Wise: The address of a location in Column Major System is calculated using the following formula: Address of A [ I ][ J ] Column Major Wise = B + W * [( I – Lr ) + M * ( J – Lc )] Where, B = Base address I = Row subscript of element whose address is to be found J = Column subscript of element whose address is to be found W = Storage Size of one element stored in the array (in byte) Lr = Lower limit of row/start row index of matrix, if not given assume 0 (zero) Lc = Lower limit of column/start column index of matrix, if not given assume 0 (zero) M = Number of row of the given matrix N = Number of column of the given matrix
Answers 21 Comments
Dislike Bookmark

Answered on 07/05/2016 Learn IT Courses/Programming Languages/C++ Language

Actually, private access specifier provides complete abstraction, So any member variable or methods which are private could not possible to access outside of the class.
Answers 8 Comments
Dislike Bookmark

Answered on 07/05/2016 Learn IT Courses/Computer Software +1 IT Courses/Programming Languages/C Language

C is machine dependent language in spite of this it is highly portable here it means we use same C code with different Platform dependent compiler.
Answers 28 Comments
Dislike Bookmark

Teaches

Class 7 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 7 Tuition

3

Board

CBSE, ICSE, State

CBSE Subjects taught

Social Science, Science, Computers, Hindi, EVS, English

ICSE Subjects taught

Chemistry, History, Biology, Computer Science, Physics, Hindi, English, Mathematics, Geography, EVS

Taught in School or College

Yes

State Syllabus Subjects taught

EVS, Social science, Mathematics, Science, English, Hindi

Class 6 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 6 Tuition

3

Board

CBSE, ICSE, State

CBSE Subjects taught

Mathematics, Social Science, Science, Computers, Hindi, EVS, English

ICSE Subjects taught

Chemistry, History, Biology, Computer Science, Physics, Hindi, English, Mathematics, Geography, EVS

Taught in School or College

Yes

State Syllabus Subjects taught

EVS, Social science, Mathematics, Science, English, Hindi

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

3

Board

State, CBSE, ICSE

CBSE Subjects taught

English, Social science, Science, Mathematics, Hindi

ICSE Subjects taught

Computer Application, Chemistry, Biology, History and Civics, Physics, English Literature, Geography, English, EVS, Mathematics, Hindi

Taught in School or College

Yes

State Syllabus Subjects taught

Hindi, EVS, Science, English, Mathematics, Social Science

Class 8 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 8 Tuition

3

Board

CBSE, ICSE, State

CBSE Subjects taught

Mathematics, Social Science, Science, Computers, EVS, English

ICSE Subjects taught

Chemistry, History, Biology, Computer Science, Physics, Hindi, English, Mathematics, Geography, EVS

Taught in School or College

Yes

State Syllabus Subjects taught

EVS, Social science, Mathematics, Science, English, Hindi

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

3

Board

State, CBSE, ICSE

CBSE Subjects taught

English, Social science, Computer Practices, Science, Mathematics, Hindi, Information and Comunication Technology

ICSE Subjects taught

Computer Application, Chemistry, Biology, History and Civics, Physics, English Literature, Geography, English, EVS, Mathematics, Hindi

Taught in School or College

Yes

State Syllabus Subjects taught

Hindi, EVS, Science, English, Mathematics, Social Science

Java Script Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Script Training classes

4

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

3

Teaches

Core Java

Certification training offered

No

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

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

5

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 Electrical & Electronics subjects

Circuit Theory, Signal Processing, Computer Networks, Electromagnetic Theory, Algorithms And Data Structures, Microprocessors, Communication Systems, Electrical Circuit Analysis, Power Electronics, Control Systems, Data Structures & Algorithms, Alternative Energy Sources, Analog And Digital Communication, Applications of Digital Signal Processing (DSP)

BTech Branch

BTech Electrical & Electronics, BTech 1st Year Engineering

Type of class

Crash Course, Regular Classes

Class strength catered to

One on one/ Private Tutions

Taught in School or College

Yes

BTech 1st Year subjects

Computer science, Environmental Studies, Basic Electronics, Engineering Mathematics (M1), Biology For Engineers, Engineering Physics, Basic Electrical Technology

No Reviews yet! Be the first one to Review

Answers by Ashutosh V. (4)

Answered on 10/09/2016 Learn IT Courses/Programming Languages/C++ Language +1 IT Courses/Programming Languages/C++ Language/Basic C++

Dos.h is one among the header files . It contains functions for handling interrupts, producing sound, date and time functions etc. It is a Borland specific and works in turbo c compiler.
Answers 17 Comments
Dislike Bookmark

Answered on 10/09/2016 Learn IT Courses/Programming Languages/C Language

Row Wise: The address of a location in Row Major System is calculated using the following formula: Address of A = B + W * Column Wise: The address of a location in Column Major System is calculated using the following formula: Address of A Column Major Wise = B + W * Where, B... ...more
Row Wise: The address of a location in Row Major System is calculated using the following formula: Address of A [ I ][ J ] = B + W * [ N * ( I – Lr ) + ( J – Lc ) ] Column Wise: The address of a location in Column Major System is calculated using the following formula: Address of A [ I ][ J ] Column Major Wise = B + W * [( I – Lr ) + M * ( J – Lc )] Where, B = Base address I = Row subscript of element whose address is to be found J = Column subscript of element whose address is to be found W = Storage Size of one element stored in the array (in byte) Lr = Lower limit of row/start row index of matrix, if not given assume 0 (zero) Lc = Lower limit of column/start column index of matrix, if not given assume 0 (zero) M = Number of row of the given matrix N = Number of column of the given matrix
Answers 21 Comments
Dislike Bookmark

Answered on 07/05/2016 Learn IT Courses/Programming Languages/C++ Language

Actually, private access specifier provides complete abstraction, So any member variable or methods which are private could not possible to access outside of the class.
Answers 8 Comments
Dislike Bookmark

Answered on 07/05/2016 Learn IT Courses/Computer Software +1 IT Courses/Programming Languages/C Language

C is machine dependent language in spite of this it is highly portable here it means we use same C code with different Platform dependent compiler.
Answers 28 Comments
Dislike Bookmark

Ashutosh V. describes himself as Creative Minds Trainer. He conducts classes in BTech Tuition, C Language and C++ Language. Ashutosh is located in Bulanala, Varanasi. Ashutosh takes at students Home and Regular Classes- at his Home. He has 5 years of teaching experience . Ashutosh has completed Bachelor of Technology (B.Tech.) from UPTU in 2013 and PG Diploma in embedded systems from CDAC Hyderabad in 2014. 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