-
-
Which choice is NOT an ADO collection?
A. Properties B. Records C. Fields D. Errors E. Parameters
-
Following is the code Server.MapPath (".") consider the path is C:InetpubWWWRootMATDefault.asp. What will be the output
A. C:InetPUb B. C:InetPUbWWWroot C. C:InetPUbwwwrootMAT D. Error
-
<%Else>
<!-- #INCLUDE FILE="FunctionTwo.inc"-->
<%End If>
What would the above code load?"><%@ Language=VBScript %> <%If false then> <!-- #INCLUDE FILE="FunctionOne.inc"--> <%Else> <!-- #INCLUDE FILE="FunctionTwo.inc"--> <%End If> What would the above code load?
A. Only the FunctionTwo.inc file into the ASP page. B. Both files, since Server Side Includes are processed before ASP interpreting. C. Only the FunctionOne.inc file into the ASP page. D. Neither file, since Server Side Includes are processed before ASP interpreting. E. Neither file, since the #INCLUDE statements are commented out.
-
Explain the POST & GET Method or Explain the difference between them.
POST METHOD: The POST method generates a FORM collection, which is sent as a HTTP request body. All the values typed in the form will be stored in the FORM collection. GET METHOD: The GET method sends information by appending it to the URL (with a question mark) and stored as A Querystring collection. The Querystring collection is passed to the server as name/value pair. The length of the URL should...
-
User Input Data Validation
Should user input data validation occur server-side or client-side? Why?
-
What is the Default ScriptTimeOut for Server Object?
A. 20 Sec B. 30 Sec C. 60 Sec D. 90 Sec
-
Which of the following are Server Object methods ( Choose Two)
A. HTMLEncode,MapPath B. URLEncode,ScriptTimeout C. URLEncode,CreateObject D. ScriptTimeout,Abandon
-
IsClientConnected is a property of
A. Server B. Response C. Request D. Session
-
How Many Types of Cookies
A. 3 B. 2 C. 1 D. 4
-
How long is a SessionID guaranteed to be unique?
A. It is unique for the web server, whether it is restarted or not. B. Only until the web server is restarted. C. It is like a GUID in that it is for any web server at any time. D. Only until the session expires, then it can be reissued to another client. E. It is unique per client. A client cannot have two sessions with the same SessionID
-
What is the use of following Statement Response.Expires=120
A.The page will be removed form cache after 120 Hours B.The page will be removed form cache after 120 Sec C.The page will be removed form cache before 120 Min D.The page will be removed form cache after 2 Hours
-
-
How many Max Cookies can we create in Server?
A. 10 B. 20 C. 30 D. 40
-
Name the ASP Objects?
• Request Object • Response Object • Server Object • Session Object • Application Object
-
When does the application OnEnd event handler fire?
A. After every request for an application document, since web servers are stateless servers. B. As soon as there are no open connections to any application document. C. When the web server is stopped in an orderly fashion. D. Twenty minutes after the last request for a document in the application. E. When there are no application requests for the amount of time defined by the SessionTimeout variable....
-
What is the command to display characters to the HTML page?
Response.Write
-
What is Session Object?
It stores information about a User’s session. Gives a notification when a user session begins or ends.
-
What does the above code accomplish?">
<% Response.Redirect("http://www.sql.com") %> What does the above code accomplish?
A. It sends the browser the line of sample code, and the browser executes it. B. It sends the response to "http://www.matsystems.com" instead of to the Requesting browser. C. It sends a redirection header back to the browser, and the browser then requests the new target document. D. The redirection occurs on the server-side, and the first response the browser gets is the head and body of the new target...
-
How are sessions maintained?
A. The browser sends a cookie to the server with each request. B. The browser sends a Querystring variable to the server with each request. C. The browser sends a hidden Form variable to the server with each request. D. The browser sends a long variable to the server in the BODY of each request. E. None of the above.
ASP Interview Questions
Ans