by Yogesh | Sep 5, 2016 | Java tutorials
Classes and Objects Class Definition A class is prescription for a particular kind of object. Objects can be created using the class.Object can access all the member variables and methods(Depends on the acess modifiers) A class have two things- 1.Fields :-...
by Yogesh | Aug 13, 2016 | Java tutorials
What is Array Array is collection of similar primitive data types, object reference or collection of other array. All java array are treated as objects. We can construct java array using new keyword. All java array elements are initialized by their data type ‘s...
by Yogesh | Aug 9, 2016 | Java tutorials
if you declare any variable as static, it is known static variable. The static variable can be used to refer the common property of all objects (that is not unique for each object) e.g. company name of employees,college name of students etc. The static variable gets...
by Yogesh | Aug 8, 2016 | HTML 5
HTML5 web storage is a local storage in client environment and it is a better than cookies. Unlike the cookie storage limitation of 4KB, we can store up to 10 megabytes in HTML5 local storage. 1. Web storage is the most secured and faster way of storing information in...
by Yogesh | Jul 12, 2016 | WebApi Tutorial
Introduction of REST Services We can define Representational State Transfer (REST) as an architectural style that sits on top of a series of principles. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients,...