[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Technical Interview Questions and Answers :: .NET

    11 / 112

    What is the lifespan for items stored in ViewState?
    Answer:

    Items stored in a ViewState exist for the life of the current page, including the post backs on the same page.

    Please Login First :

    12 / 112

    Can we disable ViewState, If, yes how?
    Answer:

    ViewState can be disabled by using "EnableViewState" property set to false.

    Please Login First :

    13 / 112

    What is a bubbled event?
    Answer:

    When a complex control like datalist or datagrid, which contains a child control, using an itemcommand can listen to the events raised by the child control in the main control. The process of listening to the child control in the main or parent control is called as event bubbling.

    Please Login First :

    14 / 112

    What is an assembly?
    Answer:

    Assemblies are the building blocks of the .NET framework. They are the logical grouping of the functionality in a physical file.

    Please Login First :

    15 / 112

    What are different types of Assemblies?
    Answer:

    Single file and multi file assembly. Assemblies can be static or dynamic. Private assemblies and shared assemblies

    Please Login First :

    16 / 112

    Which method do you invoke on the DataAdapter control to load your generated dataset with data?
    Answer:

    DataAdapter’s fill () method is used to fill load the data in dataset.

    Please Login First :

    17 / 112

    Can you edit data in the Repeater control?
    Answer:

    No Discussion on this question yet!

    Please Login First :

    18 / 112

    Which template is to be provided in the Repeater control in order to display a data? Which template will display every other row in another color?
    Answer:

    ItemTemplate, AlternatingItemTemplate

    Please Login First :

    19 / 112

    What are the most important property and most important method of a Repeater control?
    Answer:

    The DataSource property and DataBind () method.

    Please Login First :

    20 / 112

    How many classes can a single .NET DLL contain?
    Answer:

    It can contain many classes.

    Please Login First :