Skip to main content

Posts

Best Mobiles of 2013

Samsung Galaxy S3 The best Android smartphone just got better Our Expert Opinion  The Samsung Galaxy S3 is still the best Android smartphone there is. It's slim, fast, has a beautiful AMOLED screen and runs the bang-up-to-date Android 4.1 Jelly Bean operating system. The phone has just got better, too, thanks to an upgrade to support 4G. On Everything Everywhere's network we saw speeds up to 25Mbit/s, which is twice as quick as many home broadband connections. Samsung has also loaded the phone with clever features. If you bring the phone to your ear while a contact is on screen it will call that person automatically, if you flip the phone over while it's ringing it will turn the ringer off, and the Smart Stay feature uses the front camera to keep the screen on while you're looking at it. Throw in an excellent camera and you've got all the ingredients for the perfect smartphone. Read our full  Samsung Galaxy S3 review SPECS OPERATING SYSTEM Android 4...

Top 100 Dot Net Interview Questions - Part 10

91. How many types of Cookies are available in ASP.NET? There are two types of Cookies available in ASP.NET: Session Cookie - Resides on the client machine for a single session until the user does not log out. Persistent Cookie - Resides on a user's machine for a period specified for its expiry, such as 10 days, one month, and never. The user can set this period manually. 92. What is the use of the Global.asax file? The Global.asax file executes application-level events and sets application-level variables. 93. What are the Culture and UICulture values? The C...

Top 100 Dot Net Interview Questions - Part 9

81. Which namespaces are necessary to create a localized application? The System.Globalization and System.Resources namespaces are essential to develop a localized application. 82. What is the difference between an HtmlInputCheckBox control and an HtmlInputRadioButton control? You can select more than one HtmlInputCheckBox control from a group of HtmlInputCheckBox controls; whereas, you can select only a single HtmllnputRadioButton control from a group of HtmlInputRadioButton controls. 83. What is the difference between HTML and Web server controls? HTML controls are client-side controls; therefore, all the validations for HTML controls are performed at the client side. On the ...

Top 100 Dot Net Interview Questions - Part 8

71. What type of code, client-side or server-side, is found in a code-behind file of a Web page? A code-behind file contains the server-side code, which means that the code contained in a code-behind file is executed at the server. 72. To which class a Web form belongs to in the .NET Framework class hierarchy? A Web form belongs to the System.Web.UI.Page class. 73. What does the " EnableViewState " property do? Why do we want it On or Off? The EnableViewState property enables the ViewState property on the page. It is set to On to allow the page to save the users input between postback requests of a Web page; that is, between the Request and corresponding Response objects. When this...

Top 100 Dot Net Interview Questions - Part 7

61. What do you understand by aggregate dependency? Aggregate dependency allows multiple dependencies to be aggregated for content that depends on more than one resource. In such type of dependency, you need to depend on the sum of all the defined dependencies to remove a data item from the cache. 62. How can you ensure that no one has tampered with ViewState in a Web page? To ensure that no one has tampered with ViewState in a Web page, set the EnableViewStateMac property to True . 63. What is the difference between adding items into cache through the Add() method and through the Insert() method? Both methods work in a similar way except that the Cache.Add() function returns an ...