UrbanPro
true
Jaydeep V. .Net trainer in Mumbai

Jaydeep V.

Kandivali East, Mumbai, India - 400101.

16 Students

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

Details verified of Jaydeep 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

Jaydeep V. conducts classes in .Net Training, Angular.JS and HTML. Jaydeep is located in Kandivali East, Mumbai. Jaydeep takes at students Home and Online Classes- via online medium. He has 4 years of teaching experience . HeĀ is well versed in Gujarati, Hindi and English.

Languages Spoken

Gujarati

Hindi

English

Address

Kandivali East, Mumbai, India - 400101

Verified Info

Education Verified

Phone Verified

Email Verified

Facebook 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

.Net Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

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

1

HTML Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in HTML Training

4

SQL Programming Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in SQL Programming Training

4

Reviews

No Reviews yet!

FAQs

1. Which classes do you teach?

I teach .Net Training, Angular.JS, HTML and SQL Programming 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 less than a year.

Answers by Jaydeep V. (11)

Answered on 20/04/2015 Learn .Net/ASP.NET

ASP.NET is an open source server-side Web application framework designed for Web development to produce dynamic Web pages. It was developed by Microsoft to allow programmers to build dynamic web sites, web applications and web services.
Answers 40 Comments
Dislike Bookmark

Answered on 20/04/2015 Learn .Net/ASP.NET

ASP.NET is an open source server-side Web application framework designed for Web development to produce dynamic Web pages. It was developed by Microsoft to allow programmers to build dynamic web sites, web applications and web services.
Answers 64 Comments
Dislike Bookmark

Answered on 20/04/2015 Learn .Net/ASP.NET

VB.Net and C# are programming languages. ASP.Net is a Web Development SDK/Framework. You write code in a programming language and you use a SDK to speed up development. .Net is a framework which you use when programming in vb.net, C# or any other language which can be compiled into msil.
Answers 34 Comments
Dislike Bookmark

Answered on 20/04/2015 Learn .Net/ASP.NET

VB.Net and C# are programming languages. ASP.Net is a Web Development SDK/Framework. You write code in a programming language and you use a SDK to speed up development. .Net is a framework which you use when programming in vb.net, C# or any other language which can be compiled into msil.
Answers 34 Comments
Dislike Bookmark

Answered on 20/04/2015 Learn .Net/ASP.NET

A Delegate is a reference to a function, in the same way that a TextBox variable is a reference to teh instance of a TextBox that appears on the screen. They are surprisingly handy: you can use them to write code that can work to a variety of destinations without changing the code. For example, you... ...more
A Delegate is a reference to a function, in the same way that a TextBox variable is a reference to teh instance of a TextBox that appears on the screen. They are surprisingly handy: you can use them to write code that can work to a variety of destinations without changing the code. For example, you could write a Print method that took a delegate: Hide Copy Code private void DoPrint() { string text = "hello world!"; Print(text, PrintConsole); Print(text, PrintTextbox); } private void PrintConsole(string s) { Console.WriteLine("Console: " + s); } private void PrintTextbox(string s) { myTextBox.Text = "TextBox: " + s; } private delegate void printDestination(string s); private void Print(string s, printDestination pd) { pd("From Print: " + s); } You can completely change what happens to the text without changing the code in the Print method. There are a lot of other uses, but that's the general idea.
Answers 37 Comments
Dislike Bookmark

Teaches

.Net Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

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

1

HTML Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in HTML Training

4

SQL Programming Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in SQL Programming Training

4

No Reviews yet!

Answers by Jaydeep V. (11)

Answered on 20/04/2015 Learn .Net/ASP.NET

ASP.NET is an open source server-side Web application framework designed for Web development to produce dynamic Web pages. It was developed by Microsoft to allow programmers to build dynamic web sites, web applications and web services.
Answers 40 Comments
Dislike Bookmark

Answered on 20/04/2015 Learn .Net/ASP.NET

ASP.NET is an open source server-side Web application framework designed for Web development to produce dynamic Web pages. It was developed by Microsoft to allow programmers to build dynamic web sites, web applications and web services.
Answers 64 Comments
Dislike Bookmark

Answered on 20/04/2015 Learn .Net/ASP.NET

VB.Net and C# are programming languages. ASP.Net is a Web Development SDK/Framework. You write code in a programming language and you use a SDK to speed up development. .Net is a framework which you use when programming in vb.net, C# or any other language which can be compiled into msil.
Answers 34 Comments
Dislike Bookmark

Answered on 20/04/2015 Learn .Net/ASP.NET

VB.Net and C# are programming languages. ASP.Net is a Web Development SDK/Framework. You write code in a programming language and you use a SDK to speed up development. .Net is a framework which you use when programming in vb.net, C# or any other language which can be compiled into msil.
Answers 34 Comments
Dislike Bookmark

Answered on 20/04/2015 Learn .Net/ASP.NET

A Delegate is a reference to a function, in the same way that a TextBox variable is a reference to teh instance of a TextBox that appears on the screen. They are surprisingly handy: you can use them to write code that can work to a variety of destinations without changing the code. For example, you... ...more
A Delegate is a reference to a function, in the same way that a TextBox variable is a reference to teh instance of a TextBox that appears on the screen. They are surprisingly handy: you can use them to write code that can work to a variety of destinations without changing the code. For example, you could write a Print method that took a delegate: Hide Copy Code private void DoPrint() { string text = "hello world!"; Print(text, PrintConsole); Print(text, PrintTextbox); } private void PrintConsole(string s) { Console.WriteLine("Console: " + s); } private void PrintTextbox(string s) { myTextBox.Text = "TextBox: " + s; } private delegate void printDestination(string s); private void Print(string s, printDestination pd) { pd("From Print: " + s); } You can completely change what happens to the text without changing the code in the Print method. There are a lot of other uses, but that's the general idea.
Answers 37 Comments
Dislike Bookmark

Contact

Load More

Jaydeep V. conducts classes in .Net Training, Angular.JS and HTML. Jaydeep is located in Kandivali East, Mumbai. Jaydeep takes at students Home and Online Classes- via online medium. He has 4 years of teaching experience . HeĀ is well versed in Gujarati, Hindi and English.

X

Share this Profile

Recommended Profiles

Sai Swagat Das

Sai Swagat Das photo Sector 24 DLF Phase 3, Gurgaon

Samir Gaikwad

Samir Gaikwad photo Kandivali West, Mumbai

Vijay Kumar Bashyam

Vijay Kumar Bashyam photo Miyapur, Hyderabad

Santosh

Santosh photo Btm Layout 2nd Stage, Bangalore

Roshan

Roshan photo Ramalingapuram, Avadi

Kiran Shelke

Kiran Shelke photo Nerul, Mumbai

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