____ is a subset of the CTS.
CLI 100.0%
CLS 0.0%
CLR 0.0%
None of these 0.0%
_____________ helped overcome the DLL conflict (faced by the versions prior to .NET).
Strong-named assemblies 0%
Version-aware code storage 0%
Components executing in isolation 0%
All of the above 0%
______________ is self-describing code.
Unmanaged Code 0%
Managed Code 0%
High Level Code 0%
Secured COde 0%
.NET framework has data providers for:
ODBC and SQl Server 0%
Sql Server, OleDb, and ODBC 0%
Sql Server,OLeDb, and Oracle 0%
Oracle, OleDb, Sql Server, and ODBC 0%
.NET Framework programs are compiled into a CPU independent instruction set named:
Microsoft Interpreted Language 0%
Microsoft Intermediate Language 0%
Microsoft Virtual Language 0%
Microsoft Common Language 0%
A __________ assembly can be used to deploy language-specific resources for an application.
Shared 0%
Private 0%
Satellite 0%
Public 0%
A class contains an overridable method "getBalance(utype as Integer)". Its derived class also has the same method, but with a different implementation. How can the parent and child classes refer to...
MyBase.getBalance(utype) 0%
MyClass.getBalance(utype) 0%
Me.getBalance(utype) 0%
This.getBalance(utype) 0%
A DataSet:
Can derive data from a database 0%
Can derive data from an XML file 0%
Can derive data from both an XML file and a database 0%
Can be used to view data only 0%
A hashtable is serialized by using:
XmlSerializer or SoapFormatter 0%
XmlSerializer 0%
SoapFormatter 0%
XmlSerializer and SoapFormatter 0%
A programmer wrote a small function to return the sum of two bytes: Public Function add(ByVal b1 As Byte, ByVal b2 As Byte) As Byte Return b1 + b2 End Function What will happe...
The result returned will be 280 0%
An exception will be thrown 0%
A syntax error will stop the execution 0%
Bytes cannot be passed by value 0%
A programmer wrote the following subroutine to calculate the area and circumference of a circle for a given radius: Public sub SetValues(ByVal r1 As Double, ByVal r2 As Double) If (r1 > 1 And r2 ...
If r1 > 1 then cir1=(2 * Math.PI * r1) will be executed 0%
If r2 > 1 then cir1=(2 * Math.PI * r2) will be executed 0%
If (r1 or r2) > 1 then cir1=(2 * Math.PI * r1) and cir2 = (2 * Math.PI * r2) will be executed 0%
If (r1 and r2) > 1 then all the three statements will be executed 0%
An application reads stock listings from a text file and displays them in a combo box. Since the text file contains at least 8000 records at a given time, the default property of the combo box is s...
Remove sorting from the combo box 0%
Increase the RAM of the system 0%
Reduce the number of file uploads 0%
Enable sorting on the combo box only after each load 0%
Asynchronous execution is supported in ADO.NET 2.0 for ExecuteReader, ExecuteScalar, and ExecuteNonQuery.
Code Manager is a part of:
CTS 0%
CLI 0%
CLS 0%
CLR 0%
Consider the following definition of a subroutine: Public Sub SetAmount(Rate As Double, ItemCount As Integer, ItemName As String) Which of following is the correct way to call the sub?
SetAmount(525.50, "CD Player", 2) 0%
SetAmount(2, 525.50, "CD Player") 0%
SetAmount(ItemCount:2, Rate:525.50, ItemName:"CD Player") 0%
SetAmount(Rate:=525.50, ItemName:="CD Player", ItemCount:=2) 0%
Consider the following definition of an overloaded function: Public Overloads Function Join(ByVal st As String, ByVal no As Integer) As Double Which of the following does not represent a vali...
Public Overloads Function Join(ByVal str As String, ByVal num As Integer) As String 0%
Public Overloads Function Join(ByVal num As Integer, ByVal str As String) As String 0%
Public Overloads Function Join(ByVal str As String, ByVal num String) As String 0%
Public Overloads Function Join(ByVal str As Integer, ByVal num Integer) As Double 0%
Consider the following small concatenation function: Public Function concat(ByVal st1 As String, ByVal st2 As String) As String concat = st1 + st2 st1 = "" st2 = "" End Fun...
s1="James" s2="Bond" s3="JamesBond" 0%
s1="James" s2="Bond" s3="James" 0%
s1="" s2="" s3="JamesBond" 0%
s1="James" s2="Bond" s3="" 0%
Delay signing allows a shared assembly to be signed with:
A private key at the initial stage 0%
Private and public keys at the initial stage 0%
A private key at a later stage 0%
A public key at a later stage 0%
Dot Net Framework consists of:
Common language runtime 0%
Set of class libraries 0%
Common language runtime and set of class libraries 0%
Common language runtime, set of class Libraries, and ADO.NET 0%
For MSIL code to be executed in a PE file, it is necessary to have:
Assembly manifest 0%
Modules 0%
Files 0%
Types 0%
How can you make a form scrollable?
Set its Scrollable property to true 0%
Set its AutoScrolling property to true 0%
Set its Scroll property to true 0%
Set its AutoScroll property to true 0%
How does CLR allow multiple applications to be run in a single process?
By running them in a special application domain 0%
By making sub processes for each process 0%
By loading them in separate application domains 0%
None of the above 0%
How is an assembly unloaded?
By using the static method Unload() 0%
By using the non static method Unload() 0%
By unloading its application domain 0%
By unloading CLR 0%
How many bits does the int datatype use in .NET?
16 bits 0%
32 bits 0%
64 bits 0%
None of the above 0%
How many classes can a single .NET DLL contain?
10 0%
20 0%
Unlimited 0%
5 0%
In .NET framework, reflection is used to:
Create metadata of the modules/assemblies 0%
Get metadata of the modules/assemblies 0%
Reengineer the corrupted assemblies 0%
Destroy the corrupted assemblies 0%
In .NET generics, the type parameter:
Needs to be constrained in container classes 0%
Needs to be constrained in all the classes 0%
Cannot be constrained in container classes 0%
Cannot be constrained in any class 0%
In a list box control, the property named "SelectionMode" controls the selection of the items. Which of the following is not correct for the "SelectionMode" property?
MultiSimple allows multiple item selection 0%
MultiExtended allows extended multiple selection 0%
Default allows single item selection 0%
None prohibits any selection 0%
In a subroutine, a programmer defined the 'for' loop as follows: Dim count, endAt As Integer endAt=5 For count = 0 To endAt If (getValue() = True) Then endAt = 10 Next How many times will ...
In which file can you define the "Process Model" attribute?
Web.config 0%
Machine.config 0%
In both files 0%
In neither file 0%
One of your forms displays the list of all the Customers in a list box and all their details in the text boxes. On selecting a Customer from the list box, the text boxes should show details of that...
Me.BindingContext(DataSet,TableName).Position 0%
Me.BindingContext(TableName, DataSet).Position 0%
Me.BindingContext(DataSet,TableName) 0%
Me.BindingContext(TableName, DataSet) 0%
The ___________ namespace is not defined in the base class library.
System 0%
System.CodeDom 0%
System.IO 0%
System.Thread 0%
System.Text 0%
The .NET framework comes with a few CLR hosts. Which of the following is a CLR host?
ASP.NET 0%
IE 0%
Shell Executables 0%
All of the above 0%
The code written to target common language runtime services is called:
Generated Code 0%
Managed Code 0%
Unmanaged Code 0%
CLR Code 0%
Service Code 0%
The following function is defined in a class called "StringFormatter": Public Shared Function HasLettersOnly(ByVal str As String) As Boolean If (str.Length > 0) Then Dim i As Int64 ...
Dim sf as new StringFormatter("UserString") sf.HasLettersOnly() 0%
StringFormatter.HasLettersOnly(UserString) 0%
Dim sf as StringFormatter(UserString) sf.HasLettersOnly(UserString) 0%
Dim sf as new StringFormatter(UserString) sf.HasLettersOnly() 0%
The global assembly cache:
Can store two dll files with the same name 0%
Can store two dll files with the same name, but different versions 0%
Can store two dll files with the same name and same version 0%
Can not store dll files with the same name 0%
What does Managed Data refer to?
The data stored by CLR 0%
The data allocated by CLR GC 0%
The data de-allocated by CLR GC 0%
The data allocated and de-allocated by CLR GC 0%
What is a delegate?
A strongly typed function pointer 0%
A light weight thread or process that can call a single method 0%
A reference to an object in a different process 0%
An inter-process message channel 0%
What is the nominal storage allocation for the Byte data type?
2 byte 0%
1 byte 0%
8 byte 0%
16 byte 0%
What is the syntax to create a SQL connection in VB.Net?
Dim str As string Str = "server = ads; uid = ads ; pwd = ghf; database = bvb" Dim con as new sqlConnection(str) 0%
Dim str as string Str = "server = ads; pwd = ghf; database = bvb" Dim con as new sqlConnection(str) 0%
Dim str As string Str = "uid = ads ; pwd = ghf; database = bvb" Dim con as new sqlConnection(str) 0%
Dim str As string Str = "server = ads; uid = ads ; pwd = ghf" Dim con as new sqlConnection(str) 0%
What is the value range of the Boolean data type?
True or False 0%
True 0%
False 0%
0,1 0%
What kind of object is a string considered to be?
Reference 0%
Delegate 0%
Value 0%
Attribute 0%
What will be the result of the following code: Dim employeeDS As DataSet employeeDS.Tables.Add(new DataTable("FirstQTR"))
It will create a table named FirstQTR 0%
It does nothing because an object reference has not been set to an instance of the DataSet object 0%
It will produce an error because an object reference has not been set to an instance of the DataSet object 0%
None of the above 0%
Where is the shared assembly generally stored?
The application's directory 0%
Global assembly cache 0%
C drive 0%
None of the above 0%
Which method of the FormsAuthentication class is used to read user ids and passwords from the web.config file automatically
IsAuthenticate() 0%
Authenticate() 0%
Authentication() 0%
HashPasswordForStoringInConfigFile() 0%
Which namespace contains the DataSet class?
System 0%
System.data 0%
System.dataset 0%
System.data.dataset 0%
Which of following methods is not provided by the "Directory" class?
GetDirectories 0%
GetFiles 0%
GetPath 0%
GetLogicalDrives 0%
Which of the following are valid methods of the SqlTransaction class?
Commit 0%
Terminate 0%
Save 0%
Close 0%
Rollback 0%
Which of the following benefits is not related to CLR?
Ability to use components developed in different language 0%
Garbage collection 0%
IDL (interface definition language) use is promoted by restricting self describing objects 0%
Ability to compile once and run on any computer having CLR 0%
Which of the following classes is not associated with System.IO?
StreamReader 0%
BinaryWriter 0%
BinaryStream 0%
FileStream 0%
Which of the following collections exposes the capacity method?
HashTable 0%
SortedList 0%
ArrayList 0%
Stack 0%
Which of the following datatypes are new in Visual Basic .Net?
float, short 0%
decimal, char 0%
String 0%
Integer 0%
Which of the following declarations is not valid?
Dim x, y, z As Integer 0%
Dim x As int32, y As Int32, z As int32 0%
Dim x%, y%, z% 0%
Dim a As Int32, b As Short 0%
Which of the following helps assemblies become self describing?
JIT 0%
Manifest 0%
CTS 0%
Application Domain 0%
Which of the following is a must for a private assembly?
Cryptographically strong name 0%
Unique name 0%
Cryptographically light name 0%
Global assembly cache 0%
Which of the following is not a feature of .NET 2.0?
Partial classes 0%
Generics 0%
Multiple Inheritance 0%
Partial Methods 0%
Which of the following is not associated with the command object in ADO.NET 2.0?
cmd.ExecuteScalar() 0%
cmd.ExecutePageReader() 0%
cmd.ExecuteReader() 0%
cmd.ExecuteXmlReader() 0%
cmd.Execute() 0%
Which of the following is not correct about DataReader?
It provides a forward-only and read-only row set of data from a data source 0%
Its CursorType property is adOpenForwardOnly 0%
Its LockType property is adLockReadOnly 0%
None of the above 0%
Which of the following is not correct for an Exception?
It should be handled using Try Catch blocks 0%
A maximum of five catch blocks can be declared 0%
The Finally block is optional 0%
You can throw new exceptions using: Throw : new Exception("description") 0%
Which of the following is not correct for using binary search with an array?
It is the fastest method of searching 0%
It works well with unsorted arrays 0%
It can search array lists of up to 100,000 elements or more 0%
It compares the search string with the middle array element 0%
Which of the following is not correct with regard to DataReader and DataSet?
DataReader reads one row from the database 0%
DataSet retrieves the complete set of data from the database 0%
DataReader can only get its data from a data source through a managed provider 0%
DataReader closes its connection automatically 0%
Which of the following is not correct with regard to shared assembly?
Its version can be controlled by the author only 0%
It can be shared by many applications 0%
It must get registered with the machine registry 0%
It is installed in the global assembly cache 0%
Which of the following is not used for searching for an item within an array?
LastIndexOf 0%
IndexOf 0%
BinarySearch 0%
FirstIndexOf 0%
Which of the following is true for "shadowing" a function belonging to the parent class?
The derived class must have the same method type, scope, name and parameters 0%
The derived class must have the same method type, scope and name 0%
The derived class must have the same method type and name 0%
The derived class must have the same name 0%
Which of the following is true for overriding?
The behavior of the derived class function is changed 0%
The behavior and name of the derived class function are changed 0%
The name of the derived class function is changed 0%
The name and arguments of the derived class function are changed 0%
Which of the following is true for the 'instance' methods?
They must be invoked by calling the new constructor 0%
Their instance is saved by the system for performance reasons 0%
They can be invoked by using the class name followed by the method name 0%
They are defined using the keyword 'instance' 0%
Which of the following is used as a Serializer for the web services?
XmlSerializer 0%
SoapSerializer 0%
BinaryFormatter 0%
SoapFormatter 0%
Which of the following is used to return only the time of the current day?
Now 0%
TimeOfDay 0%
Today 0%
DayTime 0%
Which of the following keywords does not work with methods?
Overridable 0%
NotOverridable 0%
MustOverride 0%
NonInheritable 0%
Which of the following manages the code during execution?
Coding Manager 0%
JIT 0%
Code Manager 0%
Coder Manager 0%
Which of the following methods is not correct for clipping an image?
Graphics.SetClip(Region) 0%
Graphics.SetClip(Graphics) 0%
Graphics.SetClip(Rectangle) 0%
Graphics.SetClip(Square) 0%
Which of the following methods is not provided with a "RichTextBox" class?
Cut 0%
Copy 0%
Select 0%
Load 0%
Paste 0%
Which of the following methods is useful for searching within a list box?
FindItem 0%
FindString 0%
FindItemExact 0%
Find 0%
Which of the following options represents the possible values for the 'DataRowVersion' class?
Current, Revised, Original, Modified 0%
Revised, Default, Original, Modified 0%
Current, Default, Edited, Proposed 0%
Current, Default, Original, Proposed 0%
Which of the following should be inserted in the constructor to refer to the super/parent class?
Super() 0%
MyParent.New() 0%
Super.New() 0%
MyBase.New() 0%
Which of the following should you use to serialize instances of a class?
XMLSerializer 0%
It depends on the situation 0%
SoapFormatter 0%
BinaryFormatter 0%
Which of the following statements about ADO.NET is not correct?
ADO uses recordsets whereas ADO.NET uses datasets 0%
The ADO navigation approach is non-sequential whereas in ADO.NET it is sequential 0%
Disconnected access in ADO has to be coded explicitly whereas ADO.NET handles it with the adapter 0%
ADO offers hierarchal recordsets for relating multiple tables whereas ADO.NET provides data relations 0%
Which of the following statements is correct with regard to .NET framework managed web pages?
They interact directly with the runtime 0%
They do not execute in the native code language 0%
They are interpreted and scripted 0%
All of the above 0%
Which of the following statements is correct with regard to a CommandBuilder object?
It creates update/delete commands based on the primary key column 0%
It creates update/delete commands based on all the identity columns 0%
It creates update/delete commands based on original values of all the selected columns 0%
It creates update/delete commands according to its internal algorithm 0%
Which of the following statements is correct with regard to Windows process memory allocation?
Each process (instance of an application) gets its own RAM and saves the OS from crashing if the process crashes 0%
RAM is shared between the processes. This saves the OS from crashing when a process crashes 0%
Each process gets its own RAM and causes the OS to crash when the process crashes 0%
RAM is shared between the processes and causes the OS to crash when a process crashes 0%
Which of the following statements is not correct with regard to .NET assemblies?
Static assemblies can include classes, JPEG files, resource files etc. 0%
Static assemblies are stored on disk in PE files 0%
The .NET Framework can create dynamic assemblies 0%
Dynamic assemblies are automatically saved to disk before execution 0%
Which of the following tools assists in Assembly Signing?
CASPol.exe 0%
PerfMon.exe 0%
SN.exe 0%
Soapsuds.exe 0%
Which of the following types of inheritance is not supported by .Net?
Implementation inheritance 0%
Multiple inheritance 0%
Visual inheritance 0%
Interface inheritance 0%
Which of the following Visual Studio projects is not available in the "New Project" dialog box?
Console application 0%
Class library 0%
Wireless application 0%
.Net web service 0%
Which of these are runtime hosts in .NET Framework?
CLR 0%
IE 0%
IIS 0%
ASP.NET 0%
Which of these assemblies is used for doing localization?
Private 0%
Public 0%
Satellite 0%
Both Public and Private 0%
Which of these files is used for debugging an application?
demo.dll 0%
demo.pdb 0%
demo.res 0%
Any of these can be used 0%
Which one of the following is a value type?
pointer 0%
object 0%
delegate 0%
enum 0%
Which one of the following statements is true about garbage collection?
It is invoked every 40 seconds until the process is destroyed 0%
It is invoked every time a constructor is called 0%
It only occurs when the Collect method is explicitly invoked in the System.GC class 0%
It is invoked when generation 0 does not have room for the newly created object 0%
Which one of the following statements is true about MSIL code?
It is compiled to native code by JIT compilers 0%
It is source code-specific 0%
It is only found in static assemblies 0%
It is architecture-specific 0%
Which Portable Executable (PE) file does not contain the assembly manifest?
Executable 0%
DLL 0%
Module 0%
ALL 0%
Which transport protocol is used to call a Web Service?
SOAP 0%
HTTP 0%
SMTP 0%
Any of these can be used 0%
While working with collections, sometimes it is necessary to persist objects. Which method will be suitable to store a HashTable named "hash" to a file Stream named "fileStr" using a BinaryFormatte...
BF.Serialize(fileStr, hash) 0%
BF.SerializeGroup(fileStr, hash) 0%
BF.Serialize(hash, fileStr) 0%
BF.SerializeGroup(hash, fileStr) 0%
With VB.Net, controls can be created at run time. The statement that can be used to add events to such runtime controls is:
CreateHandler 0%
CreateEventHandler 0%
AddHandler 0%
AddEventHandler 0%
You are building a VB.NET application for an ISP company. The receptionist has to fill a customer registration form for dealing with walk-in customers. The form retrieves all the available products...
CType(cbProducts.Items(cbProducts.SelectedIndex), ComboBox).ID 0%
CType(cbProducts.Items(cbProducts.SelectedIndex), ListItem).Value 0%
cbProducts.Items(cbProducts.SelectedIndex).Value 0%
CType(cbProducts.Items(cbProducts.SelectedIndex), ListItem).ID 0%
You are designing a testing application where every participant has to submit his/her answers. The test takers are ranked according to the correctness of the answers. All those who score the same m...
Stack 0%
Queue 0%
Array 0%
Hashtable 0%
You assigned the version number - 5.3.1.0 to your assembly. The four digits stand for:
Revision, Built, Major Version, and Minor version 0%
Revision, Built, Minor Version, and Major version 0%
Built, Major version, Minor Version, and Revision 0%
Major version, Minor Version, Built, and Revision 0%
You declared an object variable named 'obj'. How will you check if it is initialized or not?
if (obj == null) then 0%
if(obj) then 0%
if(obj is nothing) then 0%
if (IsNull(Obj)) then 0%
You defined a data adapter as follows: Dim adap As New SqlDataAdapter("select * from products;select * from customers", New SqlConnection(ConnectionString)) Dim DataSt As New DataSet adap.Fill(Dat...
dGrid.Fill(DataSt.Tables(1)) 0%
dGrid.Fill(DataSt.Tables(2)) 0%
dGrid.DataSource = DataSt.Tables(1) 0%
dGrid.DataSource = DataSt.Tables(2) 0%
You designed a user login screen for a new management system written in VB.Net. What should be the signatures of the Login button's click event, if the button name is "bLogin"?
Private function bLogin_Click(ByVal sender As System.Attribute, ByVal e As System.EventArgs) Handles Button.Click 0%
Private Sub bLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bLogin.Click 0%
Private Sub bLogin_Click(ByVal sender As System.Attribute, ByVal e As System.EventHandler) Throws Exception 0%
Private Sub bLogin_Click(ByVal sender As System.Object, ByVal e As System.EventHandler) As Button.Click 0%
You have a table named 'FirstQTR' and want to create another table named 'SecondQTR' which is exactly the same as 'FirstQTR', including DataTable schema and constraints. Which of the following meth...
Copy 0%
Clone 0%
Duplicate 0%
Equals 0%
You have an array list named "alCustomer" containing 200 items. The array list is sorted, and you want to copy customers 21 to 50 from this list to a new array list named "alSpecial". Which of the ...
alSpecial.Insert(0, alCustomer.SetRange(20, 30)) 0%
alSpecial.InsertRange(0, alCustomer.GetRange(20, 30)) 0%
alSpecial.Add(0, alCustomer.SetRange(21, 50)) 0%
alSpecial.Add(0, alCustomer.GetRange(21, 50)) 0%
You have created a guest book which uses an XML document. Initially, the XML file is uploaded into a data table and as the records increase, the value of the 'GuestID' column should be incremented....
AutoIncrementSeed 0%
AutoIncrementStep 0%
AutoIncrement 0%
AutoIncrementNumber 0%
AutoIncrementIndex 0%
You have created a SQlCommand object using "con" as an open connection object: Dim cmd as New SqlCommand("Select CategoryID, CategoryName FROM Categories", con) Which method will you use to run t...
cmd.ExecuteScalar() 0%
cmd.ExecuteNonQuery() 0%
cmd.ExecuteReader() 0%
cmd.Execute() 0%
You have defined a class to calculate the bonus paid to the employees of a company: Public Class Bonus Public Function GetBonus(ByVal sal As Double) As Double Dim bonus as Double ...
Public class BonusMod 0%
Public class BonusMod Inherits Bonus 0%
Public class BonusMod Extends Bonus 0%
Public class BonusMod Overrides Bonus 0%
You have made a form named "frmEdit" with the following menu and submenu items: File Edit ------------------- New Copy Open Cut Exit Pas...
frmEd.Menu.MenuItems(1).MenuItems(2).Text 0%
frmEd.Menu.MenuItems(2).MenuItems(3).Text 0%
frmEd.Menu(1).MenuItems(2).Text 0%
frmEd.Menu(2).MenuItems(3).Text 0%
You have placed an OpenFileDialog control to let users select image files. How will you set the filter to display image files only? The name of the control is "ofdImage".
ofdImage.Filter = "Image Files|*.BMP;*.GIF;*.JPG" 0%
ofdImage.Filter = "Images*;*.BMP|*.GIF|*.JPG" 0%
ofdImage.Filter = "*.BMP;*.GIF;*.JPG| Images" 0%
ofdImage.Filter = "Image Files|BMP.*;GIF.*;JPG.*" 0%
You have to update some values in the database. Which method will you execute on a command object named "cmdUpdate"?
cmd.ExecuteScalar() 0%
cmd.ExecuteNonQuery() 0%
cmd.ExecuteReader() 0%
cmd.Execute() 0%
ExecuteXmlReader() 0%
You have written a function to generate a unique bill number for every new bill: 1 Public Function getNewBillNo() As Integer 2 Dim cm As New SqlCommand("select max(billno) from bill", con) ...
Return (IIf(IsNull(cm.ExecuteNonQuery), 1, cm.ExecuteNonQuery +1)) 0%
Return (IIf(IsDBNull(cm.ExecuteScalar), 1, cm.ExecuteScalar +1 )) 0%
Return (IIf(IsNull(cm.ExecuteScalar), 1, cm.ExecuteScalar)) 0%
Return (IIf(IsDBNull(cm.ExecuteNonQuery), cm.ExecuteNonQuery ,1)) 0%
You have written a simple function to multiply two integers: Line 1 Public Function multiply(ByVal a As Int32, Line 2 ByVal b As Int32) As Int32 Line 3 ret...
The program will compile and run successfully 0%
The compilation error produced will be fixed by changing As Int32' to 'As Integer' in line 2 0%
The compilation error produced will be fixed by replacing line 3 with Return CType(a * b, Int32) 0%
The compilation error produced will be fixed by appending "_" (underscore) to the end of line 1 0%
You passed an array as an argument to the following function: Public Function Modify(ByVal ar[] as Integer) as Boolean What will happen to the original value of the array (ar), if the function mo...
The original value of the passed array will be modified permanently 0%
The original value of the passed array will not be modified 0%
You want to compile your Visual Basic .NET source code. Which command-line tool will you use?
csc.exe 0%
vbc.exe 0%
vbnet.exe 0%
vb.exe 0%
You want to open a form named 'frm' from a MDI form. This is the first line of code that you have written: Dim frm as new ApplicationForm Which of the following will make the form visible?
frm.invoke() 0%
frm.show() 0%
frm.display() 0%
frm.ShowModel() 0%