QUESTIONS AND ANSWERS 100%
PASS
A - ✔✔Complete this sentence: At the heart of events are.
A .Delegates
B. Buttons
C. Methods
D. Threads
A - ✔✔What is WSDL?
A Is used to describe information about the web service.
B. Is executed by web server.
C. Is based on HTML.
D. Is executed by client
B - ✔✔Which control allows selecting more than one item?
A ComboBox
B. ListBox
COPYRIGHT © 2025 BY KATELYN WHITMAN, ALL RIGHTS RESERVED 1
,C. DateTimePicker
D. TextBox
A - ✔✔Which variables can use only by one user but in all pages?
A Session
B. Application
C. ViewState
D. Cookie
A - ✔✔An early binding is a binding between a function call and a function definition
that is defined at runtime.
A False
B. True
B - ✔✔By default can we delete a folder that contains subdirectories and files?
A Yes
B.No
A - ✔✔What is the difference between Form.Show and Form.ShowDialog?
A . Form.ShowDialog makes a form visible and display that form as modal dialog (this
means that the form must be closed before any other form can receive the focus).
Form.Show makes a form visible but display that form not as modal dialog (this means
that we can switch to other form but needn't close the form)
B. Form.Show makes a form visible and display that form as modal dialog (this means
that the form must be closed before any other form can receive the focus).
COPYRIGHT © 2025 BY KATELYN WHITMAN, ALL RIGHTS RESERVED 2
,Form.ShowDialog makes a form visible but display that form not as modal dialog (this
means that we can switch to other form but needn't close the form)
C. Form.ShowDialog makes a form get the focus Form.Show makes a form loose the
focus
D. Form.ShowDialog makes a form loose the focus Form.Show makes a form get the
focus
D - ✔✔What is output of the following code?
using System;
class Program {
static void MainO {
Display<System.lnt32>(2010);
}
static void Display<T>(T v1)
{
Console.WriteLine(v1 ToStringO);
}
}
A Compile error
B. Runtime error
C. vl
D. 2010
COPYRIGHT © 2025 BY KATELYN WHITMAN, ALL RIGHTS RESERVED 3
, A - ✔✔Which sentence about value types is correct?
A Value types must derive from System.ValueType.
B. Value types can override System.ObjectFinalizeO method.
C. Variables of a value type are passed by reference by default
D. Value types are allocated on the managed heap.
D - ✔✔Suppose we have multi-file assembly as follows: lib.dll. parti netmodule.
part2.netmodule. part3.netmodule. Which file is the manifest information located in?
A In part2.netmodule
B. Each file contains a piece of manifest information
C. In parti .netmodule
D. In lib.dll
A - ✔✔studentConnection.OpenO:
studentCommand = studentConnection.CreateCommand():
studentCommand.CommandType = CommandType.Text
studentCommand.CommandText = "SELECT * FROM Student"; studentAdapter = new
SqlDataAdapter (studentCommand); studentSet = new DataSetO:
this.txtFirstName.DataBindings Add ("Text". studentSet "FirstName");
A The dataset has not been populated.
B. The data binding is done incorrectly.
C. The dataset object is instantiated incorrectly.
D. The command object is instantiated incorrectly.
COPYRIGHT © 2025 BY KATELYN WHITMAN, ALL RIGHTS RESERVED 4