We ____________ to new house, because old house was small enough for our family
When the user clicks a button, _________ is triggered
_____ allow custom items of information about a program element to be stored with an assembly’s metadata
Which of the following accesss modifier specifies that one or more declared programming elements are accessible from within the assembly that contains their declaration, not only by the component that declares them
The _________________ enable us to pass data between a program and a class
The default property for a text box control is
Visual Studio .NET provides which feature
The Properties window plays an important role in the development of Visual Basic applications. It is mainly used
Which of the properties in a control’s list of properties is used to give the control a meaningful name
Find the H.C.F of 54/9, 3 9/17 and 36/51
Microsoft Windows uses a GUI environment. GUI (pronounced "gooey") stands for _______
A ___________ performs invisible tasks even if you write no code
What will be output of the following conversion ?static void Main(string[] args) { char a = 'A'; string b = "a"; Console.WriteLine(Convert.ToInt32(a)); Console.WriteLine(Convert.ToInt32(Convert.Tochar(b))); Console.ReadLine(); }