Select Category 
dot net question answers, questins , answers
What is Globalizationa and Localization ?

dot net question answers, questins , answers
  Globalization is the process of creating an application that meets the needs of users from multiple cultures. It includes using the correct
currency
, date and time format, calendar, writing direction, sorting rules, and other issues. Accommodating these cultural differences in an application is called localization.Using classes of System.Globalization namespace, you can set application's current culture.This can be achieved by using any of the following 3 approaches.
      1.      Detect and redirect
      2.      Run-time adjustment
      3.      Using Satellite assemblies
dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot n
dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questins , answers dot net question answers, questin
 

DotNet Interview Questions Answers

DotNet Interview Question - 166 : -

What is Globalizationa and Localization ?

DotNet Interview Answer - 166 : -

  Globalization is the process of creating an application that meets the needs of users from multiple cultures. It includes using the correct
currency
, date and time format, calendar, writing direction, sorting rules, and other issues. Accommodating these cultural differences in an application is called localization.Using classes of System.Globalization namespace, you can set application's current culture.This can be achieved by using any of the following 3 approaches.
      1.      Detect and redirect
      2.      Run-time adjustment
      3.      Using Satellite assemblies
 

DotNet Interview Question - 167 : -

What are the authentication methods in .NET?

DotNet Interview Answer - 167 : -

There are 4 types of authentications.
1.WINDOWS AUTHENTICATION
2.FORMS AUTHENTICATION
3.PASSPORT AUTHENTICATION
4.NONE/CUSTOM AUTHENTICATION

The authentication option for the ASP.NET application is specified by using the tag in the Web.config file, as shown below:
other authentication options
1. WINDOWS AUTHENTICATION Schemes
I. Integrated Windows authentication
II. Basic and basic with SSL authentication
III. Digest authentication
IV. Client Certificate authentication

2. FORMS AUTHENTICATION
You, as a Web application developer, are supposed to develop the Web page and authenticate the user by checking the provided user ID and password against some user database

3.PASSPORT AUTHENTICATION
A centralized service provided by Microsoft, offers a single logon point for clients. Unauthenticated users are redirected to the Passport site

4 NONE/CUSTOM AUTHENTICATION:
If we don’t want ASP.NET to perform any authentication, we can set the authentication mode to “none”. The reason behind this decision could be: We don’t want to authenticate our users, and our Web site is open for all to use. We want to provide our own custom authentication

 

DotNet Interview Question - 168 : -

  Why do you need to serialize.?

DotNet Interview Answer - 168 : -

  We need to serialize the object,if you want to pass object from one  computer/application domain to another.Process of converting complex objects into stream of bytes that can be persisted or  transported.Namespace for serialization is System.Runtime.Serialization.The  ISerializable interface allows you to make any class Serializable..NET framework features 2 serializing method.
1.Binary Serialization 2.XML Serialization
 

DotNet Interview Question - 169 : -

Write a simple Windows Forms MessageBox statement.

DotNet Interview Answer - 169 : -

System.Windows.Forms.MessageBox.Show