McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2026
→
Computer Science Engineering (CSE)
→
.NET Programming
→
What is the extension for a Visual Basic...
Q.
What is the extension for a Visual Basic web form code file?
A.
.asp
B.
.aspx
C.
.asp.vb
D.
.aspx.vb
Answer» D. .aspx.vb
3.6k
0
Do you find this helpful?
27
View all MCQs in
.NET Programming
Discussion
No comments yet
Login to comment
Related MCQs
What is the extension for a Visual Basic web form interface file?
Which is the file extension used for an ASP.NET file?
Visual Studio .NET provides which feature:
Which is not a main component of the Visual Studio IDE?
Where does a web application reside?
Which is an example of a web document?
Scope of variable is related to definition of variable as: 1. Region of code within which variable value is valid and hence can be accessed. 2. No, relation with region where variable is declared its value is valid in entire scope.
Select output of the given set of Code : static void Main(string[] args) { String name = "Dr.Gupta"; Console.WriteLine("Good Morning" + name); }
Which of the following will be the correct output for the C#.NET code snippet given below? String s1 = "ALL MEN ARE CREATED EQUAL"; String s2; s2 = s1.Substring(12, 3); Console.WriteLine(s2);
Which of the following is the correct output of the C#.NET code snippet given below? int[ , , ] a = new int[ 3, 2, 3 ]; Console.WriteLine(a.Length);