UrbanPro
true
Megha Shyam .Net trainer in Hyderabad

Megha Shyam

.Net Trainer

Ramanthapur, Hyderabad, India - 500039.

1 Student

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

Details verified of Megha Shyam

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 been a trainer for C,C++,SQL, C#.Net, ASP.Net, HTML/CSS/JS/AngularJS, MS Office/Excel. Previously I was a Developer.

Languages Spoken

Telugu

Hindi

English

Education

Kakatiya University 1995

Master of Commerce (M.Com.)

Microsoft 2014

MCP (Microsoft Certified Professional)

Address

Ramanthapur, Hyderabad, India - 500039

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

.Net Training
1 Student

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

.Net component

.Net Web Services

Reviews (1)

5 out of 5 1 review

Megha Shyam https://s3-ap-southeast-1.amazonaws.com/tv-prod/member/photo/1332557-small.jpg Ramanthapur
5.0051
Megha Shyam
C

ASP.NET

"Training methodology is very effective, concept-based and real time based, example programs are also very practical that targets real time scenario including web hosting experience. "

Have you attended any class with Megha ? Write a Review

FAQs

1. Which classes do you teach?

I teach .Net Training Class.

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 Megha (3)

Answered on 13/05/2016 Learn .Net/ASP.NET

asp-active server pages for web. asp web page (.asp file) consists of HTML elements & server side script/program usually written in vbscript or {vb.net/vc#.net in case asp.net web page (.aspx file)} and requires iis web server software & .net framework software. iis web server compiles asp/aspx web... ...more
asp-active server pages for web. asp web page (.asp file) consists of HTML elements & server side script/program usually written in vbscript or {vb.net/vc#.net in case asp.net web page (.aspx file)} and requires iis web server software & .net framework software. iis web server compiles asp/aspx web page & renders the final content/output to the web browser as HTML form. asp is server side programming to access & manipulate html elements, other system resources, database, email functionality etc., where as html is just all about web page designing. there is much more but just this is an basic info about asp. good day..
Answers 14 Comments
Dislike Bookmark

Answered on 14/09/2015 Learn .Net/.Net LINQ

LINQ is integrated feature in all .NET languages like C# and it provides querying capabilities. LINQ provides querying capabilities to write and execute queries using C# Linq operators or keywords against different data sources Linq to Sql or Object (table object, collection object, generic type collection... ...more
LINQ is integrated feature in all .NET languages like C# and it provides querying capabilities. LINQ provides querying capabilities to write and execute queries using C# Linq operators or keywords against different data sources Linq to Sql or Object (table object, collection object, generic type collection object, array variable) that produce or return result set that is usually assigned or stored to "var" type object or variable. LINQ queries are mostly used while database connected through Entity Framework or EDM (Entity Data Model) in all .Net Applications/Services for fetching and manipulating the data. LINQ to SQL is also said as architecture like 2-Tier, 3-Tier, Entity Framework or EDM, MVC. it provides Object Relational Model or Designer that allows to visualize data classes in the code. important namespaces: using System.Linq; System.Data.Linq.DataContext; System.Data.Linq.Table; important files DataClasses1_Name.dbml file contains connectionstring details and database object details. DataClasses1AptechDb.designer.cs file contains 1 important auto-generated partial class (data classes or datacontext_name that inherits from DataContext class) contains methods, linq table type properties. Other partial class definitions for each database table and properties.
Answers 19 Comments
Dislike Bookmark

Answered on 11/09/2015 Learn .Net/C# .NET

1. Instance class (instance members or static members or both) 2 static class 3 abstract class 4 sealed class 5 partial class 6 internal ** extern is used on static type members static (methods) with Dllimport attribute while using interoperability services and unmanaged code.
Answers 23 Comments
Dislike Bookmark

Teaches

.Net Training
1 Student

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

.Net component

.Net Web Services

5 out of 5 1 review

Megha Shyam
C

ASP.NET

"Training methodology is very effective, concept-based and real time based, example programs are also very practical that targets real time scenario including web hosting experience. "

Have you attended any class with Megha ? Write a Review

Answers by Megha Shyam (3)

Answered on 13/05/2016 Learn .Net/ASP.NET

asp-active server pages for web. asp web page (.asp file) consists of HTML elements & server side script/program usually written in vbscript or {vb.net/vc#.net in case asp.net web page (.aspx file)} and requires iis web server software & .net framework software. iis web server compiles asp/aspx web... ...more
asp-active server pages for web. asp web page (.asp file) consists of HTML elements & server side script/program usually written in vbscript or {vb.net/vc#.net in case asp.net web page (.aspx file)} and requires iis web server software & .net framework software. iis web server compiles asp/aspx web page & renders the final content/output to the web browser as HTML form. asp is server side programming to access & manipulate html elements, other system resources, database, email functionality etc., where as html is just all about web page designing. there is much more but just this is an basic info about asp. good day..
Answers 14 Comments
Dislike Bookmark

Answered on 14/09/2015 Learn .Net/.Net LINQ

LINQ is integrated feature in all .NET languages like C# and it provides querying capabilities. LINQ provides querying capabilities to write and execute queries using C# Linq operators or keywords against different data sources Linq to Sql or Object (table object, collection object, generic type collection... ...more
LINQ is integrated feature in all .NET languages like C# and it provides querying capabilities. LINQ provides querying capabilities to write and execute queries using C# Linq operators or keywords against different data sources Linq to Sql or Object (table object, collection object, generic type collection object, array variable) that produce or return result set that is usually assigned or stored to "var" type object or variable. LINQ queries are mostly used while database connected through Entity Framework or EDM (Entity Data Model) in all .Net Applications/Services for fetching and manipulating the data. LINQ to SQL is also said as architecture like 2-Tier, 3-Tier, Entity Framework or EDM, MVC. it provides Object Relational Model or Designer that allows to visualize data classes in the code. important namespaces: using System.Linq; System.Data.Linq.DataContext; System.Data.Linq.Table; important files DataClasses1_Name.dbml file contains connectionstring details and database object details. DataClasses1AptechDb.designer.cs file contains 1 important auto-generated partial class (data classes or datacontext_name that inherits from DataContext class) contains methods, linq table type properties. Other partial class definitions for each database table and properties.
Answers 19 Comments
Dislike Bookmark

Answered on 11/09/2015 Learn .Net/C# .NET

1. Instance class (instance members or static members or both) 2 static class 3 abstract class 4 sealed class 5 partial class 6 internal ** extern is used on static type members static (methods) with Dllimport attribute while using interoperability services and unmanaged code.
Answers 23 Comments
Dislike Bookmark

Megha Shyam describes himself as .Net Trainer. He conducts classes in .Net Training. Megha is located in Ramanthapur, Hyderabad. Megha takes at students Home and Regular Classes- at his Home. Megha has completed Master of Commerce (M.Com.) from Kakatiya University in 1995. HeĀ is well versed in Telugu, Hindi and English. Megha has got 1 reviews till now with 100% positive feedback.

X

Share this Profile

Recommended Profiles

Sai D.

Sai D. photo Dilsukhnagar Colony, Hyderabad

G Srinivasa Rao

G Srinivasa Rao photo Madhapur, Hyderabad

Harikiran

Harikiran photo Jeedimetla, Hyderabad

Prem Kumar

Prem Kumar photo Ramachandra Puram, Hyderabad

Sreekanth

Sreekanth photo Ameerpet, Hyderabad

Rajashekhar G

Rajashekhar G photo Beeramguda, 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