SELECT address1||','||address2||','||address2 "Adress" FROM employee;
1
2
3
0
Which of the following languages can be used to write server side scripting in ASP.NET?
c#
VB
C++
A & B
When an .aspx page is requested from the web server, the out put will be rendered to browser in following format.
HTML
XML
WML
JSP
To add a custom control to a Web form we have to register with.
TagPrefix
Name space of the dll that is referenced
Assemblyname
All of the above
What's the difference between Response.Write() andResponse.Output.Write()?
Response.Output.Write() allows you to flush output
Response.Output.Write() allows you to buffer output
Response.Output.Write() allows you to write formatted output
Response.Output.Write() allows you to stream output
The number of forms that can be added to a aspx page is.
more than 3
How do you manage states in asp.net application
Session object
Application object
View state
What is the program design method we learned in order to write Object Oriented Programs?
Declare - Define - Use
Public functions and private variables
Top - Down programming
Bottom - Up programming
Which is a logical abstract base class for a class called "footballPlayer"?
Salary
Sport
Athlete
Team
A recursive function would result in infinite recursion, if the following were left out:
Base case
Recursive call
Subtraction
Local variable declarations