UrbanPro
true
Venkat Babu Microsoft SharePoint trainer in Hyderabad

Venkat Babu

SharePoint Trainer

Gandhi Bhavan Trust, Nampally, Hyderabad, India - 500001.

1 Student

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

Details verified of Venkat Babu

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 as a Senior SharePoint Consultant in an IT firm and have around 8 yrs real time experience in handling SharePoint applications. I chose this platform to expose my skills in teaching SharePoint to help the candidates to build the career in this.

Real time experience in SharePoint Training,Design, development, Administration and Implementation.
8+ Years of experienced.trained more than 1000 students till date on various client server tech.
Certified Microsoft professional.
Primary Key Skills: MOSS 2007, SP2010 and SP2013
Secondary Skills: MSBI ,MS Dynamics CRM andMVC

Languages Spoken

English

Telugu

Address

Gandhi Bhavan Trust, Nampally, Hyderabad, India - 500001

Verified Info

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

Microsoft SharePoint Training
1 Student

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Microsoft SharePoint Training

8

Reviews

No Reviews yet!

FAQs

1. Which classes do you teach?

I teach Microsoft SharePoint 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 8 years.

Answers by Venkat Babu (1)

Answered on 12/10/2015 Learn IT Courses/Microsoft Training/Microsoft BI (Business Intelligence) Tools/Microsoft SharePoint

Client Side APIs refer to the Client Object Model that was introduced in SharePoint 2010. There are basically 3 "flavors" of the Client Object Model: .NET, Silverlight and JavaScript (ECMAScript) The Main advantage of the CSOM is that you do not need to be on the Server to use them in your program.... ...more
Client Side APIs refer to the Client Object Model that was introduced in SharePoint 2010. There are basically 3 "flavors" of the Client Object Model: .NET, Silverlight and JavaScript (ECMAScript) The Main advantage of the CSOM is that you do not need to be on the Server to use them in your program. The .NET client object model can be used in any Desktop or Web Client. The Silverlight CSOM can be used in silverlight applications (doh!) and you can call the JS Client Object Model directly from your web pages. 45 down vote 2013 Model Types: CSOM: Client-side object model. C# (or Visual Basic) only, use NuGet, at the moment same package for both 2010 and 2013. JSOM: JavaScript object model. JavaScript only. SP.ClientContext.get_current() for normal use. new SP.ClientContext('url...') for specific SPSite. Note this works cross-SPSite in 2013. SSOM: Server-side object model. C# (or Visual Basic) only, use Microsoft.SharePoint (15) DLL. Must be deployed on same farm. REST: REST web technologies and standard Open Data Protocol (OData) syntax. Either JS (JavaScript) or C# (or Visual Basic) helper package in NuGet. Hosting: SharePoint hosted: JavaScript and templates only. By templates I mean list templates, content types, etc. Anything that can be uploaded to the SharePoint virtual file system can also be added, such as .aspx-pages. Autohosted: C# (or Visual Basic) only. Currently only supported on Office 365. On app purchase an Azure instance will be automatically provisioned. Uses OAuth to comunicate to SharePoint site. Provider hosted: C# (or Visual Basic). Similar to Autohosted, but is meant to be hosted more manually (i.e. On Azure). So you fire up a web application, on any server, and then use S2S to connect to SharePoint. Sandboxed: Remnant from 2010, can be uploaded to Solution gallery. Support for limited subset of the SSOM. No file access, so can not deploy anything to _layouts folder. If you use the limited SSOM-part (C#) your solution will be considered deprecated. Support for templates such as list templates and content types, deployed directly to host web. Farm solution: Full access, deploy through PowerShell. Technologies table: +--------------------------------------------------------+ ¦ ¦ CSOM ¦ JSOM ¦ SSOM ¦ REST JS ¦ REST C# ¦ ¦---------------+------+------+------+---------+---------¦ ¦ JavaScript ¦ ¦ x ¦ ¦ x ¦ ¦ ¦ C# ¦ ¦ ¦ x ¦ ¦ x ¦ ¦ From browser ¦ ¦ x ¦ ¦ x ¦ ¦ ¦ From server ¦ x ¦ ¦ x ¦ ¦ x ¦ ¦ OAuth2 ¦ x ¦ x ¦ x ¦ x ¦ x ¦ ¦ S2S ¦ x ¦ ¦ x ¦ ¦ ¦ +--------------------------------------------------------+ Hosting table: +---------------------------------------------------------------------+ ¦ ¦ CSOM ¦ JSOM ¦ SSOM ¦ REST JS ¦ REST C# ¦ ¦---------------------+------+------+-------------+---------+---------¦ ¦ SharePoint hosted ¦ ¦ x ¦ ¦ ¦ ¦ ¦ Autohosted ¦ x ¦ ¦ ¦ ¦ x ¦ ¦ Provider hosted ¦ x ¦ ¦ ¦ ¦ ¦ ¦ Sandboxed solution ¦ x ¦ x ¦ x(limited) ¦ x ¦ x ¦ ¦ Farm solution ¦ x ¦ x ¦ x ¦ x ¦ x ¦ +---------------------------------------------------------------------+ 2010 Model Types: CSOM: Client-side object model. C# (or Visual Basic) NuGet and JavaScript. SP.ClientContext.get_current() for normal use. new SP.ClientContext('url...') for specific SPWeb. SSOM: Server-side object model. C# (or Visual Basic) only, use Microsoft.SharePoint (14) DLL. Must be deployed on same farm. REST: REST in 2010 is only for ListData.svc. Note that SPServices (jQuery plugin) utilizes the .asmx services in _/vti/bin , such as /_vti_bin/Webs.asmx Technologies table: +-------------------------------------+ ¦ ¦ CSOM ¦ SSOM ¦ REST ¦ ¦---------------+------+------+-------¦ ¦ JavaScript ¦ x ¦ ¦ x ¦ ¦ C# ¦ x ¦ x ¦ x ¦ ¦ From browser ¦ ¦ x ¦ x ¦ ¦ From server ¦ x ¦ x ¦ ¦ +-------------------------------------+ Hosting table: +---------------------------------------------------------------------+ ¦ ¦ CSOM ¦ JSOM ¦ SSOM ¦ REST JS ¦ REST C# ¦ ¦---------------------+------+------+-------------+---------+---------¦ ¦ Sandboxed solution ¦ x ¦ x ¦ x(limited) ¦ x ¦ x ¦ ¦ Farm solution ¦ x ¦ x ¦ x ¦ x ¦ x ¦ +---------------------------------------------------------------------+
Answers 18 Comments
Dislike Bookmark

Teaches

Microsoft SharePoint Training
1 Student

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Microsoft SharePoint Training

8

No Reviews yet!

Answers by Venkat Babu (1)

Answered on 12/10/2015 Learn IT Courses/Microsoft Training/Microsoft BI (Business Intelligence) Tools/Microsoft SharePoint

Client Side APIs refer to the Client Object Model that was introduced in SharePoint 2010. There are basically 3 "flavors" of the Client Object Model: .NET, Silverlight and JavaScript (ECMAScript) The Main advantage of the CSOM is that you do not need to be on the Server to use them in your program.... ...more
Client Side APIs refer to the Client Object Model that was introduced in SharePoint 2010. There are basically 3 "flavors" of the Client Object Model: .NET, Silverlight and JavaScript (ECMAScript) The Main advantage of the CSOM is that you do not need to be on the Server to use them in your program. The .NET client object model can be used in any Desktop or Web Client. The Silverlight CSOM can be used in silverlight applications (doh!) and you can call the JS Client Object Model directly from your web pages. 45 down vote 2013 Model Types: CSOM: Client-side object model. C# (or Visual Basic) only, use NuGet, at the moment same package for both 2010 and 2013. JSOM: JavaScript object model. JavaScript only. SP.ClientContext.get_current() for normal use. new SP.ClientContext('url...') for specific SPSite. Note this works cross-SPSite in 2013. SSOM: Server-side object model. C# (or Visual Basic) only, use Microsoft.SharePoint (15) DLL. Must be deployed on same farm. REST: REST web technologies and standard Open Data Protocol (OData) syntax. Either JS (JavaScript) or C# (or Visual Basic) helper package in NuGet. Hosting: SharePoint hosted: JavaScript and templates only. By templates I mean list templates, content types, etc. Anything that can be uploaded to the SharePoint virtual file system can also be added, such as .aspx-pages. Autohosted: C# (or Visual Basic) only. Currently only supported on Office 365. On app purchase an Azure instance will be automatically provisioned. Uses OAuth to comunicate to SharePoint site. Provider hosted: C# (or Visual Basic). Similar to Autohosted, but is meant to be hosted more manually (i.e. On Azure). So you fire up a web application, on any server, and then use S2S to connect to SharePoint. Sandboxed: Remnant from 2010, can be uploaded to Solution gallery. Support for limited subset of the SSOM. No file access, so can not deploy anything to _layouts folder. If you use the limited SSOM-part (C#) your solution will be considered deprecated. Support for templates such as list templates and content types, deployed directly to host web. Farm solution: Full access, deploy through PowerShell. Technologies table: +--------------------------------------------------------+ ¦ ¦ CSOM ¦ JSOM ¦ SSOM ¦ REST JS ¦ REST C# ¦ ¦---------------+------+------+------+---------+---------¦ ¦ JavaScript ¦ ¦ x ¦ ¦ x ¦ ¦ ¦ C# ¦ ¦ ¦ x ¦ ¦ x ¦ ¦ From browser ¦ ¦ x ¦ ¦ x ¦ ¦ ¦ From server ¦ x ¦ ¦ x ¦ ¦ x ¦ ¦ OAuth2 ¦ x ¦ x ¦ x ¦ x ¦ x ¦ ¦ S2S ¦ x ¦ ¦ x ¦ ¦ ¦ +--------------------------------------------------------+ Hosting table: +---------------------------------------------------------------------+ ¦ ¦ CSOM ¦ JSOM ¦ SSOM ¦ REST JS ¦ REST C# ¦ ¦---------------------+------+------+-------------+---------+---------¦ ¦ SharePoint hosted ¦ ¦ x ¦ ¦ ¦ ¦ ¦ Autohosted ¦ x ¦ ¦ ¦ ¦ x ¦ ¦ Provider hosted ¦ x ¦ ¦ ¦ ¦ ¦ ¦ Sandboxed solution ¦ x ¦ x ¦ x(limited) ¦ x ¦ x ¦ ¦ Farm solution ¦ x ¦ x ¦ x ¦ x ¦ x ¦ +---------------------------------------------------------------------+ 2010 Model Types: CSOM: Client-side object model. C# (or Visual Basic) NuGet and JavaScript. SP.ClientContext.get_current() for normal use. new SP.ClientContext('url...') for specific SPWeb. SSOM: Server-side object model. C# (or Visual Basic) only, use Microsoft.SharePoint (14) DLL. Must be deployed on same farm. REST: REST in 2010 is only for ListData.svc. Note that SPServices (jQuery plugin) utilizes the .asmx services in _/vti/bin , such as /_vti_bin/Webs.asmx Technologies table: +-------------------------------------+ ¦ ¦ CSOM ¦ SSOM ¦ REST ¦ ¦---------------+------+------+-------¦ ¦ JavaScript ¦ x ¦ ¦ x ¦ ¦ C# ¦ x ¦ x ¦ x ¦ ¦ From browser ¦ ¦ x ¦ x ¦ ¦ From server ¦ x ¦ x ¦ ¦ +-------------------------------------+ Hosting table: +---------------------------------------------------------------------+ ¦ ¦ CSOM ¦ JSOM ¦ SSOM ¦ REST JS ¦ REST C# ¦ ¦---------------------+------+------+-------------+---------+---------¦ ¦ Sandboxed solution ¦ x ¦ x ¦ x(limited) ¦ x ¦ x ¦ ¦ Farm solution ¦ x ¦ x ¦ x ¦ x ¦ x ¦ +---------------------------------------------------------------------+
Answers 18 Comments
Dislike Bookmark

Venkat Babu describes himself as SharePoint Trainer. He conducts classes in Microsoft SharePoint. Venkat is located in Gandhi Bhavan Trust, Nampally, Hyderabad. Venkat takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. He has 8 years of teaching experience . He is well versed in English and Telugu.

X

Share this Profile

Recommended Profiles

Prakash Madarla

Prakash Madarla photo Jillelguda, Hyderabad

Sandeep Pothedar

Sandeep Pothedar photo New Nallakunta, Hyderabad

Asif Ahmad Shaik

Asif Ahmad Shaik photo Lingampally, Hyderabad

Naveen Kumar

Naveen Kumar photo Nizampet, Hyderabad

Basheer mohammed

Basheer mohammed photo Gachibowli, Hyderabad

Jagadeeswar Pilla

Jagadeeswar Pilla photo S R Nagar, 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