1. Question: Choose the right Syntax--

    A
    public Class person { public FirstName {get; set;} public LastName {get; set;} } person Alex= new person { FirstName= "Alex", LastName= "Mackey" };

    B
    public Class person { public string FirstName {get; set;} public string LastName {get; set;} } person Alex= new person { FirstName= "Alex", LastName= "Mackey" };

    C
    public Class person { public FirstName {get, set} public LastName {get, set} } person Alex= new person { FirstName= "Alex", LastName= "Mackey" };

    D
    none

    Note: Not available
    1. Report
  2. Question: Which syntax is correct?

    A
    <%= Html.TextBox ("LastName", Model.LastName, new {@ class= "textbox",Size=50} ) %>

    B
    < Html.TextBox ("LastName", Model.LastName, new {@ class= "textbox",Size=50} ) >

    C
    <%= Html.TextBox ("LastName", Model.LastName, new { class= "textbox",Size=50} ) %>

    D
    none

    Note: Not available
    1. Report
  3. Question: Which is/are escape character?

    A
    $

    B
    @

    C
    #

    D
    &

    Note: Not available
    1. Report
  4. Question: ASP.NET MVC2 functionality has included in

    A
    visual Studio 2008

    B
    visual Studio 2005

    C
    visual Studio 2010

    D
    none

    Note: Not available
    1. Report
  5. Question: To download ASP.NET MVC2 the URL is

    A
    http://www.asp.net/mvc/download/

    B
    http://www.asp.net/learn/mvc/tutorial-08-cs.aspx.

    C
    http://www.microsoft.com/v S 2010/than

    D
    http://www.asp.net/download/

    Note: Not available
    1. Report
  6. Question: Instructions for installing MVC reffered to

    A
    http://www.asp.net/learn/mvc/tutorial-08-cs.aspx

    B
    http://www.asp.net/mvc/download/

    C
    http://www.microsoft.com/v S 2010/than

    D
    http://www.asp.net/learn/tutorial-08-cs.aspx

    Note: Not available
    1. Report
  7. Question: To create the MVC application ---------

    A
    Click Windows in the C# node

    B
    Click Web in the C# node

    C
    Click Web in the Visual C++ node

    D
    Click Web in Visual Basic

    Note: Not available
    1. Report
  8. Question: Which is/are the directories of project structure----

    A
    Content

    B
    Controllers

    C
    Models

    D
    Scripts

    E
    Views

    F
    Shared(nested inside views)

    G
    All

    Note: Not available
    1. Report
  9. Question: Content directory contains—

    A
    Non code files

    B
    Classes

    C
    JavaScript libraries

    Note: Not available
    1. Report
  10. Question: The Controllers directory contains classes related to-

    A
    Interact with the underlying database

    B
    Managing the interaction between the view and model

    C
    Images

    D
    css

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd