UrbanPro
true
Markandey Pathak Java Script trainer in Bangalore

Markandey Pathak

Software Development Trainer

Kartik Nagar, Bangalore, India - 560037.

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

Details verified of Markandey Pathak

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 expertise in cutting edge technologies and have excellent experience in training as well as development. My clientele including various prestigious companies and students from across the globe.

I am Microsoft Certified Technology Specialist and Microsoft Certified Professional Developer.

Languages Spoken

Hindi

English

Education

DDU Gorakhpur University

Bachelor of Science (B.Sc.)

Address

Kartik Nagar, Bangalore, India - 560037

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

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

7

jQuery Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in jQuery Training

7

CSS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in CSS Training

7

HTML Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in HTML Training

7

Node.JS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Node.JS Training

7

Angular.JS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Angular.JS Training

7

MS SQL Development Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in MS SQL Development Training

7

.Net Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in .Net Training

7

.Net component

.Net MVC

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

7

Teaches

J2ME, Hibernate, Struts, Spring, Servlet, JSP (Java Server Pages), Core Java, Web services

Reviews

No Reviews yet! Be the first one to Review

FAQs

1. Which classes do you teach?

I teach .Net Training, Angular.JS, CSS, HTML, Java Script Training, Java Training, MS SQL Development, Node.JS and jQuery Classes.

2. Do you provide a demo class?

Yes, I provide a free demo class.

3. How many years of experience do you have?

I have been teaching for 7 years.

Answers by Markandey Pathak (14)

Answered on 21/07/2016 Learn IT Courses/Java

finally is block which executes every time regardless exception has occurred or not. Finally is important in case you want to do some task which must be done like clean-up, db connection closure, memory de-allocation etc.
Answers 23 Comments
Dislike Bookmark

Answered on 18/07/2016 Learn IT Courses/Java

No you can't. Abstract methods are meant to be overridden but Final methods are not meant to be overridden. Thus these two, being exactly opposite, can't be used together.
Answers 35 Comments
Dislike Bookmark

Answered on 18/07/2016 Learn IT Courses/Java

Encapsulation is process of wrapping components into a package and thus hide the information which aren't required by users. Abstraction is process of exposing functionalities as features without exposing the details. For e.g. Employee class can contain properties like Id, Name, Title etc.... ...more
Encapsulation is process of wrapping components into a package and thus hide the information which aren't required by users. Abstraction is process of exposing functionalities as features without exposing the details. For e.g. Employee class can contain properties like Id, Name, Title etc. wrapped under single unit which is Employee class. It also contains a function named CreateEmployee. Now, the actual implementation of CreateEmployee is hidden due to encapsulation but via the function we can access the feature without knowing the details about how an employee is being created. This is abstraction.
Answers 25 Comments
Dislike Bookmark

Answered on 16/07/2016 Learn IT Courses/Java

What do you mean by rethrow? Are you trying to ask if one can raise the exception again once it's handled in catch? If yes, then yeah we can. We need to use throw keyword. Something like this try{ //code } catch (exception ex) { //log the exception or do whatever you want. throw... ...more
What do you mean by rethrow? Are you trying to ask if one can raise the exception again once it's handled in catch? If yes, then yeah we can. We need to use throw keyword. Something like this try{ //code } catch (exception ex) { //log the exception or do whatever you want. throw ex;//rethrow exception }
Answers 15 Comments
Dislike Bookmark

Answered on 16/07/2016 Learn IT Courses/Java

Throw is used whenever we want to raise an exception. Throws is used at function or class level to indicate that this may raise exception during the course of execution and thus jvm handles it.
Answers 14 Comments
Dislike Bookmark

Teaches

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

7

jQuery Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in jQuery Training

7

CSS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in CSS Training

7

HTML Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in HTML Training

7

Node.JS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Node.JS Training

7

Angular.JS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Angular.JS Training

7

MS SQL Development Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in MS SQL Development Training

7

.Net Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in .Net Training

7

.Net component

.Net MVC

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

7

Teaches

J2ME, Hibernate, Struts, Spring, Servlet, JSP (Java Server Pages), Core Java, Web services

No Reviews yet! Be the first one to Review

Answers by Markandey Pathak (14)

Answered on 21/07/2016 Learn IT Courses/Java

finally is block which executes every time regardless exception has occurred or not. Finally is important in case you want to do some task which must be done like clean-up, db connection closure, memory de-allocation etc.
Answers 23 Comments
Dislike Bookmark

Answered on 18/07/2016 Learn IT Courses/Java

No you can't. Abstract methods are meant to be overridden but Final methods are not meant to be overridden. Thus these two, being exactly opposite, can't be used together.
Answers 35 Comments
Dislike Bookmark

Answered on 18/07/2016 Learn IT Courses/Java

Encapsulation is process of wrapping components into a package and thus hide the information which aren't required by users. Abstraction is process of exposing functionalities as features without exposing the details. For e.g. Employee class can contain properties like Id, Name, Title etc.... ...more
Encapsulation is process of wrapping components into a package and thus hide the information which aren't required by users. Abstraction is process of exposing functionalities as features without exposing the details. For e.g. Employee class can contain properties like Id, Name, Title etc. wrapped under single unit which is Employee class. It also contains a function named CreateEmployee. Now, the actual implementation of CreateEmployee is hidden due to encapsulation but via the function we can access the feature without knowing the details about how an employee is being created. This is abstraction.
Answers 25 Comments
Dislike Bookmark

Answered on 16/07/2016 Learn IT Courses/Java

What do you mean by rethrow? Are you trying to ask if one can raise the exception again once it's handled in catch? If yes, then yeah we can. We need to use throw keyword. Something like this try{ //code } catch (exception ex) { //log the exception or do whatever you want. throw... ...more
What do you mean by rethrow? Are you trying to ask if one can raise the exception again once it's handled in catch? If yes, then yeah we can. We need to use throw keyword. Something like this try{ //code } catch (exception ex) { //log the exception or do whatever you want. throw ex;//rethrow exception }
Answers 15 Comments
Dislike Bookmark

Answered on 16/07/2016 Learn IT Courses/Java

Throw is used whenever we want to raise an exception. Throws is used at function or class level to indicate that this may raise exception during the course of execution and thus jvm handles it.
Answers 14 Comments
Dislike Bookmark

Contact

Load More

Markandey Pathak describes himself as Software Development Trainer. He conducts classes in .Net Training, Angular.JS and CSS. Markandey is located in Kartik Nagar, Bangalore. Markandey takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. He has 7 years of teaching experience . Markandey has completed Bachelor of Science (B.Sc.) from DDU Gorakhpur University. HeĀ is well versed in Hindi and English.

X
X

Post your Learning Need

Let us shortlist and give the best tutors and institutes.

or

Send Enquiry to Markandey Pathak

Let Markandey Pathak know you are interested in their class

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.

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