300+ [REAL TIME] Net Mobile Interview Questions

  1. 1. What Is .net Mobile Images Control. Explain With An Example?

    Various mobile devices have different displaying capabilities. The Image control enables developers to specify different types of images fir different devices.

    Example:
    Devices which display GIF, some devices which display BMP or WBMP images.

    <%@ Page Inherits= "System.Web.UI.MobileControls.MobilePage"%>

    <%@ Register TagPrefix="Mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>









  2. 2. Do You Know Textbox And Textview Controls Of .net Mobile?

    The textbox control in .NET mobile application is used to display a single line of text, whereas, a textview control is used to display multiple lines of text. The text property of the textview control also accepts HTML tags to specify formatting of the text inside the control.


  3. Web Designing Interview Questions

  4. 3. What Is .net Mobile Input Validation. Explain With An Example?

    Validation controls are used to validate an input control. They provide a message if the validation fails on the control. By default validation is applied on the command event of an input control. One can disable this by setting the input control’s causes validation property to false.

    Example:

    <%@ Page Inherits= "System.Web.UI.MobileControls.MobilePage"%>

    <%@ Register TagPrefix="Mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

    You must be at least 12

    What is your Age?

    Submit

    This will display a message if the user input is less than 12

  5. 4. What Is .net Mobile Utility Controls. Explain With An Example?

    .NET mobile has a variety of utility complex controls:

    AdRotator:
    A control which displays different images one by one.

    Calendar:
    Standard calendar control for mobile devices.

    PhoneCall:
    Selects the number displayed and calls that number.

    Example:
    Displays text Mike’s Number, and dial the number (91) 1111-111 when the user selects the text.

    <%@ Page Inherits= "System.Web.UI.MobileControls.MobilePage"%>

    <%@ Register TagPrefix="Mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>


  6. Web Designing Tutorial

  7. 5. What Is Password Attribute Of The Textbox Control Of .net Mobile?

    When the password attribute of the textbox is set to true, it acts as a password input box displaying only stars(*).


  8. C#. NET Interview Questions

  9. 6. What Is .net Mobile Lists. Explain With An Example?

    There are 2 types of lists:

    The selectionlist control supports drop down lists, check boxes and also radio buttons.

    The list control supports selection from a list or menu. It has a display and a value property.

    Example:
    Display price of a car selected by user.

  10. 7. What Is The Numeric Attribute Of The Textbox Control In .net Mobile?

    When the numeric attribute of the textbox is set to true it accepts numeric numbers only. However, this behavior can only be observed in mobile devices and not standard web browsers.


  11. C#. NET Tutorial
    ASP.NET Interview Questions

  12. 8. Explain .net Mobile Input Controls?

    .NET provides a variety of input controls to enable interaction form the user:

    Numeric input:
    The textbox has a numeric attribute which if set to true accepts only numeric values.

    Password input:
    The textbox has a password attribute which when set to false displays stars(*) in the textbox as the user types in value.

  13. 9. What Are .net Mobile Controls Features?

    .NET mobile controls features:

    1. Build web pages for many types of mobile devices instead of targeting specific ones.
    2. Allow creation of user controls with events
    3. Offer same features as ASP.NET Pages and server controls along with support to work with multiple devices.
    4. Allow customizing the output for a specific device by adding a new adapter for the control.
    5. Can create new controls which can use inheritance or composition.
    6. Allow adding support for an entirely new device by using adapter extensibility with no changes to individual applications.

  14. IPHONE APPS Interview Questions

  15. 10. Can You Explain Element .net Mobile With Example?

    The element enables a user to navigate between 2 forms in a page.

    Example:

    <%@ Page Inherits= "System.Web.UI.MobileControls.MobilePage"%>

    <%@ Register TagPrefix="Mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

    Hello World1

    Form2

    Hello World2

    Form1


  16. ASP.NET Tutorial

  17. 11. Explain .net Mobile Selectionlist Control?

    The selectionlist control supports drop down lists, check boxes and also radio buttons.

    Example:
    Allow user to select a car

    <%@ Page Inherits= "System.Web.UI.MobileControls.MobilePage"%>

    <%@ Register TagPrefix="Mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>


  18. AJAX Interview Questions

  19. 12. Explain .net Mobile Events?

    .NET mobile controls expose events which are device independent. They have an object model with programmable properties, methods and events.

    Eg:

    <%@ Page Inherits="System.Web.UI.MobileControls.MobilePage"%>

    <%@ Register TagPrefix="Mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

    Age?


  20. Web Designing Interview Questions

  21. 13. Explain .net Mobile Automatic Paging?

    NET mobile supports automatic paging for a variety of mobile devices. Paging is handled differently for different controls. Eg: For paging in a panel, the content controls of the panel still remain grouped inside the panel.


  22. IPHONE APPS Tutorial

  23. 14. What Is .net Mobile Forms?

    .NET Mobile Forms are specialized Web forms which can work on various mobile devices. Each Mobile Page must have at least one mobile form. A single mobile form can encapsulate multiple mobile controls in it. Compared to ASP.NET, a single mobile page can consist of multiple mobile forms.

    Hello World

    Hello World2

  24. 15. What Is .net Mobile Automatic Paging?

    .NET mobile supports automatic paging for a variety of mobile devices. Paging is handled differently for different controls. Eg: For paging in a panel, the content controls of the panel still remain grouped inside the panel.


  25. Android Interview Questions

  26. 16. What Is The Difference Between .net Mobile Pages And Ordinary .net Web Page?

    .NET Mobile pages are similar to ordinary .NET Webpages.

    <%@ Page Inherits="System.Web.UI.MobileControls.MyPage" %>

    <%@ Register TagPrefix="mob" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

    Hello World

    Notice the only difference being the tag mob which uses the System.Web.UI.MobileControls library instead of the asp tag.


  27. AJAX Tutorial

  28. 17. Tell Me .net Mobile Emulators?

    Applications built using MMIT can be tested and viewed using a variety of emulators.

    Using Browser:
    Mobile web pages detect the browser, hence can be tested using the standard browsers like IE6.

    Openwave:
    This is the most commonly used browser for Internet-enabled mobile phones.

    Nokia Mobile Internet Toolkit:
    This is a toolkit from Nokia which enables testing for a variety of Nokia phones/devices.

    Windows Mobile Development Platform:
    This is a Microsoft platform used to test applications for Windows Mobile O/s.


  29. GSM Interview Questions

  30. 18. Explain A .net Mobile Example With Details?

    Example:

    <%@ Page Inherits="System.Web.UI.MobileControls.MyPage" %>

    <%@ Register TagPrefix="mob" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

    Hello World

    This is similar to a traditional ASP.NET webpage. The only difference being the tag mob which uses the System.Web.UI.MobileControls library.

    Output for a WAP Enabled Mobile device:

    Hello World

    Output for a Pocket PC:

    Hello World


  31. C#. NET Interview Questions

  32. 19. Explain How Does .net Mobile Work?

    Sequence of steps for MMIT application execution:

    a) A mobile client requests for a webpage

    b) The request travels through the internet

    c) The request reaches IIS on the server

    d) .NET Framework handles the request and processes it

    e) ASP.NET compiles the page

    f) MMIT takes care of any mobile device specific requirements

    g) Page is sent to the client.


  33. Android Tutorial

  34. 20. Explain The Components Required To Develop Mobile Applications With .net Mobile?

    Prerequisites for MMIT:

    Windows 2000/2003/2008R2 server with IIS
    ASP.NET Framework
    MMIT
    IE 6 or above
    A WAP based simulator for testing.


  35. Mobile Testing Interview Questions

  36. 21. Explain Is Development Of A Mobile Web Application With Asp.net Is Very Easy?

    Developing a mobile application is as simple as building any website using ASP.NET. The only difference being the tags of the form i.e.

    Normal ASP.NET Webpage

    Hello World

    For Mobile

    <%@ Register TagPrefix="mob" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>

    Hello World

    MMIT takes care of all the mobile device requirements. Thus, the developer is free from such concerns.

  37. 22. Explain How To Develop Mobile Applications Using Microsoft Mobile Internet Toolkit (mmit) Or .net Mobile?

    Steps to develop mobile applications using MMIT:

    a) Start with a new ASP.NET page
    b) Include a reference to System.Mobile.UI
    c) Add various mobile controls on the page as the need be.


  38. GSM Tutorial