Preguntas y respuestas de entrevista mas solicitadas y pruebas en linea
Plataforma educativa para preparacion de entrevistas, pruebas en linea, tutoriales y practica en vivo

Desarrolla tus habilidades con rutas de aprendizaje enfocadas, examenes de practica y contenido listo para entrevistas.

WithoutBook reune preguntas de entrevista por tema, pruebas practicas en linea, tutoriales y guias comparativas en un espacio de aprendizaje responsivo.

Preparar entrevista

Examenes simulados

Poner como pagina de inicio

Guardar esta pagina en marcadores

Suscribirse con correo electronico
WithoutBook LIVE Mock Interviews
The Best LIVE Mock Interview - You should go through before interview

Freshers / Beginner level questions & answers

Ques 1. What is ASP?

ASP stands for Active Server Pages. It is a server side technology which is used to display dynamic content on web pages. For example you could write code that would give your visitors different information, different images or even a totally different page depending on what browser version they are using.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 2. How can you disable the browser to view the code?

Writing codes within the Tag

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 3. What is a "Virtual Directory"?

Virtual directories are aliases for directory paths on the server. It allows moving files on the disk between different folders, drives or even servers without changing the structure of web pages. It avoids typing an extremely long URL each time to access an ASP page.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 4. Give the comment Tags for the following?

VBScript : REM & ‘(apostrophe)
JavaScript : // (single line comment)
/* */ (Multi-line comments)

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 5. Which is the default Scripting Language of ASP (server-side)?

VBScript

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 6. Which is the default Data types in VBScript?

Variant is the default data type in VBScript, which can store a value of any type.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 7. What is a variable?

Variable is a memory location through which the actual values are stored/retrieved. Its value can be changed.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 8. What is the maximum size of an array?

Up to 60 dimensions.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 9. What is Query string collection?

This collection stores any values that are provided in the URL. This can be generated by three methods:
By clicking on an anchor tag
By sending a form to the server by the GET method
Through user-typed HTTP address

It allows you to extract data sent to the server using a GET request.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 10. What are the attributes of the tags? What are their functions?

The two attributes are ACTION and METHOD
The ACTION gives the name of the ASP file that should be opened next by which this file can access the information given in the form The METHOD determines which of the two ways (POST or GET) the browser can send the information to the server

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 11. What are the methods in Session Object?

The Session Object has only one method, which is Abandon. It destroys all the objects stored in a Session Object and releases the server resources they occupied.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 12. What is ServerVariables collection?

The ServerVariables collection holds the entire HTTP headers and also additional items of information about the server.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 13. What is the difference between Querystring collection and Form collection?

The main difference is that the Querystring collection gets appended to a URL.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 14. What is a Form collection?

The Form collection holds the values of the form elements submitted with the POST method. This is the only way to generate a Form collection.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 15. What are the ASP Scripting Objects?

The Dictionary object, the FileSystemObject object, TextStream object.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 16. What happens to a HTML page?

The browser makes a HTTP request; the server gives a HTTP response to the browser and the browser converts into a HTML page.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 17. What happens to ASP pages?

The browser makes a HTTP request; the server does the processing and gives a HTML response to the browser.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 18. How can you change the primary scripting language for a page?

Specify

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 19. What is application Object?

Shares information among users of an application. Gives a notification when an application starts or ends.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 20. What is the difference between client-side script and server-side script?

Scripts executed only by the browser without contacting the server is called client-side script. It is browser dependent. The scripting code is visible to the user and hence not secure. Scripts executed by the web server and processed by the server is called server-side script.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 21. What is the command to display characters to the HTML page?

Response.Write

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 22. 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 be less than 255 characters.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 23. How many global.asa files can an Application have?

Only one global.asa file and it’s placed in the virtual directory’s root.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 24. How many global.asa files can an Application have?

Only one global.asa file and it’s placed in the virtual directory’s root.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 25. What are Scripting Objects?

Objects that can enhance the application are known as the Scripting Objects.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 26. What is the Order of precedence for LOGICAL Operators ?

NOT, AND, OR, XOR, EQV, IMP

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 27. What is an Err Object?

Name it’s properties and methods.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 28. What are LOCAL and GLOBAL variables?

Local variables lifetime ends when the Procedure ends. Global variables lifetime begins at the start of the script and ends at the end of the script and it can be used by any procedure within the script. Declaring a variable by using the keyword PRIVATE makes the variable global within the script, but if declared using PUBLIC, then all scripts can refer the variable.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 29. Which is the default Scripting Language on the client side?

JavaScript

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 30. What is HTML (Hypertext Markup Language)?

It’s a method by which web pages can be built and generally used for formatting and linking text.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 31. What is a Web Server?

It’s a Computer that provides Web services on the Internet or on a local Intranet. It is designed to locate, address and send out simple HTML pages to all other users who access these pages.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 32. What is Session Object?

It stores information about a User’s session. Gives a notification when a user session begins or ends.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 33. What is Server-Side includes?

It provides extra information by which it makes the site easier to manage. It can include text files using the #include statement, retrieve the size and last modification date of a file, defines how variables and error messages are displayed and inserts the values of HTTP variables in the page sent back to the browser.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 34. What is a FileSystemObject object?

It provides access to the physical file system of the web server. It gets and manipulates information about all drives in a server, folders and sub-folders on a drive and files inside a folder.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 35. What is a Scripting Language?

It permits to create more interactive Web Pages. Validation, formatting of web pages can be done. VBScript, JavaScript are some examples.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 36. What is a Dictionary object?

It lets you store and retrieve information in a flexible data structure. Each value or information stored in a Dictionary is associated with a key through which the information can be retrieved.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 37. What is Global.asa file?

It is text file that contains details about an ASP application, such as when it should begin and end.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 38. What is an .ASP file?

It is a Text File that contains the combination of the following:
Text
HTML tags
Script Commands

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 39. What is Response Object?

It controls the information sent to the user. The various methods are:
Response.Write - Sends information directly to a browser
Response.Redirect - Directs a user to a URL other than the requested URL
Response.ContentType - Controls the type of content sent
Response.Cookies - Sets cookie values
Response.Buffer - To Buffer information

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 40. Naming constraints for a variable ?

It can be up to 255 characters Must start with an alphabet Must not contain an embedded period or full-stop

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 41. What is a TextStream object?

It allows you to access(read/write) the contents of text files stored on the web server.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 42. What is IIS?

IIS is a Web Server that provides Web services, not only for web pages but also for ftp sites and video and audio services. It integrates with the database facilities of SQL Server.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 43. What is Request Object?

Gets information from the user. It has five collections by which values can be accessed. They are: Query string, Form, Cookies, Server Variables & Client Certificate.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 44. What are the special sub-types in VBScript?

EMPTY: has no value
NULL: Value does not exist (conjunction with database)
OBJECT:

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 45. What is Cookies collection?

Cookies are text files that store information about the user by which the web server identifies and marks each different visitor to a web site and determines where a user has been before. A cookie can store information only when the user sends it. Individual cookies are limited to 4KB of data. The maximum number of cookies allowed is 300.
Cookies are stored on client’s machine.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 46. What is the difference between Cookies collection and Form/Query string collection?

Cookie collection does not have the Count property. Cookies can have multiple values for the same cookie name but each value can be referred using a key whereas in a Form/Query string cookie each value has to be referred using an index value.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 47. What is Server Object?

Controls the ASP execution environment. It can set the amount of time script can run before an error occurs. Converts a virtual path to a physical path on the server. Takes a user supplied string and encode it into proper format for a URL string.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 48. What is Collection?

Collection is a set of name/value pairs where the information supplied by the client is stored.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 49. How will you delete a Cookie?

By setting its Expires property to any date prior to today Response.Cookies("cookie name"). Expires = Date 1.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 50. What is the function of Buffer in Response Object?

Buffer controls the HTML output stream manually.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 51. How are scripts executed?

ASP provides scripting engines that execute the corresponding scripting languages on the server side. Scripts should be encoded within the Delimiters.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 52. What is ASP (Active Server Pages)?

ASP is a server side-scripting environment for building dynamic and interactive web pages. Since the scripts run on the server side, the web server does all the processing.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 53. What are ARRAYS?

Arrays are variables that store items of similar information.DIM ARRAY1(4) (declares an array with the name array1 with 5 elements)

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 54. What is Application-scope?

Application-scope means that variables (and objects) can be accessed from any ASP pages that is part of the application.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 55. What is Extranet?

An area of a web site available only to a set of registered visitors.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 56. What are the types of HTML?

Static HTML Browser uses HTTP to request HTML file from the Web Server
Dynamic HTML Browser uses HTTP to request an executable application rather than a Static HTML file

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 57. What are the properties of Session Object?

SessionID returns the session identification number for each user.
Timeout sets the timeout period assigned to the Session object for any application, in minutes.
CodePage determines the code page that will be used to display content.
LCID a locale identifier, which determines time zone and language, rules for the system

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 58. What are the event handlers of Session Object?

Session _OnStart This event will be fired when a new user begins a session with the web site.
Session_OnEnd This event is called whenever a session terminates.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 59. Name the ASP Objects?

Request Object
Response Object
Server Object
Session Object
Application Object

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 60. What are the advantages of using ASP?

Minimizes network traffic by limiting the need for the browser and server to talk to each other
Makes for quicker loading time since HTML pages are only downloaded
Allows to run programs in languages that are not supported by the browser
Can provide the client with data that does not reside on the client’s machine
Provides improved security measures since the script cannot be viewed by the browser

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 61. What are the methods in Application Object?

Lock prevents clients from modifying the variables stored in the Application object.
Unlock removes the lock from variables stored in the Application object.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 62. What are the browsers that can access ASP pages?

Internet Explorer (supports VBScript, JavaScript)
Netscape Communicator/ Navigator (supports only JavaScript, VBScript can be also added too)

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 63. How does the server identify and execute the server-side scripts within HTML code?

Including the RUNAT=SERVER attribute

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 64. What are the methods by which output stream is controlled?

Flush sends previous buffered output to the client immediately, but continues processing the script.
Clear erases any already-buffered HTML.
End causes the server to stop processing the script.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 65. What are the properties used to control the expiration of the page?

Expires specifies the number of minutes before a page cached on a browser expires.
ExpiresAbsolute sets the date and time at which a page cached on a browser expires.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 66. What are the collections of Session Object?

Contents collection contains all the variables established for a session without using the tag.
Static collection contains all the objects created

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 67. What is the difference between ASP and HTML? Or Why ASP is better than HTML?

- ASP executes code on the server side whereas the browser interprets HTML.
- ASP can use any scripting languages
- Gets feedback from the user and return information to the user
- Create pages that will be customized to display only things that will be of interest to a particular user
- Can edit contents of a web page by updating a text file or a database rather than the HTML code itself

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 68. What are the event handlers of Application Object?

Application_OnStart- This event will be fired when the first visitor hits the page.
Application_OnEnd- This event runs when the server is stopped.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 69. Name some of the ASP components?

Ad Rotator component- a way to manage advertisements on the web site.
Content Linker component - a technique to direct users through a set of pages on a web site by creating a list of URLs and description of the next and previous pages.
Browser Capabilities component - allows to customize the page to the ability of the browser viewing it.
Database Access component - allows to access data from the database.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 70. What are the tasks performed by < FORM > tags?

tags provides space for the user to input values
the form has a button to submit information back to the server
It transfers control to another ASP page
It carries the information in the fields to another ASP page

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 71. What are the tags necessary to be present within the <FORM> tag?

-----tag: Provides input spaces (text boxes, combo boxes, radio button, etc.) on a form called fields. It has three attributes TYPE, NAME and VALUE. TYPE provides the characteristics of the field and the NAME specifies a name to the field by which it can be referred.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 72. What are the collections of Application Object?

* Contents collection - contains all variables added via scripts in global.asa.
* Static collection - contains the names of all objects.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 73. Explain the difference between POST and GET Method.

GET requests are string data that is visible to the end user via the URL and a limit of 2kb, POST requests have no limit on total data and the user can’t see the data in a query string.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 74. Why do we use Option Explicit?

This statement force the declaration of variables in VB before using them.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 75. How do you write an SQL insert statement?

insert into tablename (fieldA, fieldB, fieldC)Values(’dataA’, ‘dataB’, ‘dataC’);

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 76. How can you have different number of cells for each row of a table in HTML?

using colspan and rowspan

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 77. What variable can you use to share info across the whole application for one user?

Use the sessions object

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 78. What is string concatenation function in VBScript?

the ampersand symbol and ampersand space underscore across multiple lines

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 79. How do you get the value of a combo box in Javascript?

document.forms[’formName’].elements[’comboName’].options[i].value

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 80. What is a class in CSS?

A class allows you to define different style characteristics to the same HTML element.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 81. When inserting strings into a SQL table in ASP what is the risk and how can you prevent it?

SQL Injection, to prevent you probably need to use Stored Procedures instead of inline/incode SQL.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 82. Which is the default Data types in VBScript?

Variant.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

Diferencias relacionadas

JSP vs ASP

Related interview subjects

LINQ preguntas y respuestas de entrevista - Total 20 questions
C# preguntas y respuestas de entrevista - Total 41 questions
ASP .NET preguntas y respuestas de entrevista - Total 31 questions
Microsoft .NET preguntas y respuestas de entrevista - Total 60 questions
ASP preguntas y respuestas de entrevista - Total 82 questions

All interview subjects

LINQ preguntas y respuestas de entrevista - Total 20 questions
C# preguntas y respuestas de entrevista - Total 41 questions
ASP .NET preguntas y respuestas de entrevista - Total 31 questions
Microsoft .NET preguntas y respuestas de entrevista - Total 60 questions
ASP preguntas y respuestas de entrevista - Total 82 questions
Google Cloud AI preguntas y respuestas de entrevista - Total 30 questions
IBM Watson preguntas y respuestas de entrevista - Total 30 questions
Perplexity AI preguntas y respuestas de entrevista - Total 40 questions
ChatGPT preguntas y respuestas de entrevista - Total 20 questions
NLP preguntas y respuestas de entrevista - Total 30 questions
AI Agents (Agentic AI) preguntas y respuestas de entrevista - Total 50 questions
OpenCV preguntas y respuestas de entrevista - Total 36 questions
Amazon SageMaker preguntas y respuestas de entrevista - Total 30 questions
TensorFlow preguntas y respuestas de entrevista - Total 30 questions
Hugging Face preguntas y respuestas de entrevista - Total 30 questions
Gemini AI preguntas y respuestas de entrevista - Total 50 questions
Oracle AI Agents preguntas y respuestas de entrevista - Total 50 questions
Artificial Intelligence (AI) preguntas y respuestas de entrevista - Total 47 questions
Machine Learning preguntas y respuestas de entrevista - Total 30 questions
Python Coding preguntas y respuestas de entrevista - Total 20 questions
Scala preguntas y respuestas de entrevista - Total 48 questions
Swift preguntas y respuestas de entrevista - Total 49 questions
Golang preguntas y respuestas de entrevista - Total 30 questions
Embedded C preguntas y respuestas de entrevista - Total 30 questions
C++ preguntas y respuestas de entrevista - Total 142 questions
VBA preguntas y respuestas de entrevista - Total 30 questions
COBOL preguntas y respuestas de entrevista - Total 50 questions
R Language preguntas y respuestas de entrevista - Total 30 questions
CCNA preguntas y respuestas de entrevista - Total 40 questions
Oracle APEX preguntas y respuestas de entrevista - Total 23 questions
Oracle Cloud Infrastructure (OCI) preguntas y respuestas de entrevista - Total 100 questions
AWS preguntas y respuestas de entrevista - Total 87 questions
Microsoft Azure preguntas y respuestas de entrevista - Total 35 questions
Azure Data Factory preguntas y respuestas de entrevista - Total 30 questions
OpenStack preguntas y respuestas de entrevista - Total 30 questions
ServiceNow preguntas y respuestas de entrevista - Total 30 questions
Snowflake preguntas y respuestas de entrevista - Total 30 questions
LGPD preguntas y respuestas de entrevista - Total 20 questions
PDPA preguntas y respuestas de entrevista - Total 20 questions
OSHA preguntas y respuestas de entrevista - Total 20 questions
HIPPA preguntas y respuestas de entrevista - Total 20 questions
PHIPA preguntas y respuestas de entrevista - Total 20 questions
FERPA preguntas y respuestas de entrevista - Total 20 questions
DPDP preguntas y respuestas de entrevista - Total 30 questions
PIPEDA preguntas y respuestas de entrevista - Total 20 questions
GDPR preguntas y respuestas de entrevista - Total 30 questions
CCPA preguntas y respuestas de entrevista - Total 20 questions
HITRUST preguntas y respuestas de entrevista - Total 20 questions
PoowerPoint preguntas y respuestas de entrevista - Total 50 questions
Data Structures preguntas y respuestas de entrevista - Total 49 questions
Computer Networking preguntas y respuestas de entrevista - Total 65 questions
Microsoft Excel preguntas y respuestas de entrevista - Total 37 questions
Computer Basics preguntas y respuestas de entrevista - Total 62 questions
Computer Science preguntas y respuestas de entrevista - Total 50 questions
Operating System preguntas y respuestas de entrevista - Total 22 questions
MS Word preguntas y respuestas de entrevista - Total 50 questions
Tips and Tricks preguntas y respuestas de entrevista - Total 30 questions
Pandas preguntas y respuestas de entrevista - Total 30 questions
Deep Learning preguntas y respuestas de entrevista - Total 29 questions
Flask preguntas y respuestas de entrevista - Total 40 questions
PySpark preguntas y respuestas de entrevista - Total 30 questions
PyTorch preguntas y respuestas de entrevista - Total 25 questions
Data Science preguntas y respuestas de entrevista - Total 23 questions
SciPy preguntas y respuestas de entrevista - Total 30 questions
Generative AI preguntas y respuestas de entrevista - Total 30 questions
NumPy preguntas y respuestas de entrevista - Total 30 questions
Python preguntas y respuestas de entrevista - Total 106 questions
Python Pandas preguntas y respuestas de entrevista - Total 48 questions
Django preguntas y respuestas de entrevista - Total 50 questions
Python Matplotlib preguntas y respuestas de entrevista - Total 30 questions
Redis Cache preguntas y respuestas de entrevista - Total 20 questions
MySQL preguntas y respuestas de entrevista - Total 108 questions
Data Modeling preguntas y respuestas de entrevista - Total 30 questions
MariaDB preguntas y respuestas de entrevista - Total 40 questions
DBMS preguntas y respuestas de entrevista - Total 73 questions
Apache Hive preguntas y respuestas de entrevista - Total 30 questions
PostgreSQL preguntas y respuestas de entrevista - Total 30 questions
SSIS preguntas y respuestas de entrevista - Total 30 questions
Teradata preguntas y respuestas de entrevista - Total 20 questions
SQL Query preguntas y respuestas de entrevista - Total 70 questions
SQLite preguntas y respuestas de entrevista - Total 53 questions
Cassandra preguntas y respuestas de entrevista - Total 25 questions
Neo4j preguntas y respuestas de entrevista - Total 44 questions
MSSQL preguntas y respuestas de entrevista - Total 50 questions
OrientDB preguntas y respuestas de entrevista - Total 46 questions
Data Warehouse preguntas y respuestas de entrevista - Total 20 questions
SQL preguntas y respuestas de entrevista - Total 152 questions
IBM DB2 preguntas y respuestas de entrevista - Total 40 questions
Elasticsearch preguntas y respuestas de entrevista - Total 61 questions
Data Mining preguntas y respuestas de entrevista - Total 30 questions
Oracle preguntas y respuestas de entrevista - Total 34 questions
MongoDB preguntas y respuestas de entrevista - Total 27 questions
AWS DynamoDB preguntas y respuestas de entrevista - Total 46 questions
Entity Framework preguntas y respuestas de entrevista - Total 46 questions
Data Engineer preguntas y respuestas de entrevista - Total 30 questions
AutoCAD preguntas y respuestas de entrevista - Total 30 questions
Robotics preguntas y respuestas de entrevista - Total 28 questions
Power System preguntas y respuestas de entrevista - Total 28 questions
Electrical Engineering preguntas y respuestas de entrevista - Total 30 questions
Verilog preguntas y respuestas de entrevista - Total 30 questions
VLSI preguntas y respuestas de entrevista - Total 30 questions
Software Engineering preguntas y respuestas de entrevista - Total 27 questions
MATLAB preguntas y respuestas de entrevista - Total 25 questions
Digital Electronics preguntas y respuestas de entrevista - Total 38 questions
Civil Engineering preguntas y respuestas de entrevista - Total 30 questions
Electrical Machines preguntas y respuestas de entrevista - Total 29 questions
Oracle CXUnity preguntas y respuestas de entrevista - Total 29 questions
Web Services preguntas y respuestas de entrevista - Total 10 questions
Salesforce Lightning preguntas y respuestas de entrevista - Total 30 questions
IBM Integration Bus preguntas y respuestas de entrevista - Total 30 questions
Power BI preguntas y respuestas de entrevista - Total 24 questions
OIC preguntas y respuestas de entrevista - Total 30 questions
Dell Boomi preguntas y respuestas de entrevista - Total 30 questions
Web API preguntas y respuestas de entrevista - Total 31 questions
IBM DataStage preguntas y respuestas de entrevista - Total 20 questions
Talend preguntas y respuestas de entrevista - Total 34 questions
Salesforce preguntas y respuestas de entrevista - Total 57 questions
TIBCO preguntas y respuestas de entrevista - Total 30 questions
Informatica preguntas y respuestas de entrevista - Total 48 questions
Log4j preguntas y respuestas de entrevista - Total 35 questions
JBoss preguntas y respuestas de entrevista - Total 14 questions
Java Mail preguntas y respuestas de entrevista - Total 27 questions
Java Applet preguntas y respuestas de entrevista - Total 29 questions
Google Gson preguntas y respuestas de entrevista - Total 8 questions
Java 21 preguntas y respuestas de entrevista - Total 21 questions
Apache Camel preguntas y respuestas de entrevista - Total 20 questions
Struts preguntas y respuestas de entrevista - Total 84 questions
RMI preguntas y respuestas de entrevista - Total 31 questions
Java Support preguntas y respuestas de entrevista - Total 30 questions
JAXB preguntas y respuestas de entrevista - Total 18 questions
Apache Tapestry preguntas y respuestas de entrevista - Total 9 questions
JSP preguntas y respuestas de entrevista - Total 49 questions
Java Concurrency preguntas y respuestas de entrevista - Total 30 questions
J2EE preguntas y respuestas de entrevista - Total 25 questions
JUnit preguntas y respuestas de entrevista - Total 24 questions
Java OOPs preguntas y respuestas de entrevista - Total 30 questions
Java 11 preguntas y respuestas de entrevista - Total 24 questions
JDBC preguntas y respuestas de entrevista - Total 27 questions
Java Garbage Collection preguntas y respuestas de entrevista - Total 30 questions
Spring Framework preguntas y respuestas de entrevista - Total 53 questions
Java Swing preguntas y respuestas de entrevista - Total 27 questions
Java Design Patterns preguntas y respuestas de entrevista - Total 15 questions
JPA preguntas y respuestas de entrevista - Total 41 questions
Java 8 preguntas y respuestas de entrevista - Total 30 questions
Hibernate preguntas y respuestas de entrevista - Total 52 questions
JMS preguntas y respuestas de entrevista - Total 64 questions
JSF preguntas y respuestas de entrevista - Total 24 questions
Java 17 preguntas y respuestas de entrevista - Total 20 questions
Spring Boot preguntas y respuestas de entrevista - Total 50 questions
Servlets preguntas y respuestas de entrevista - Total 34 questions
Kotlin preguntas y respuestas de entrevista - Total 30 questions
EJB preguntas y respuestas de entrevista - Total 80 questions
Java Beans preguntas y respuestas de entrevista - Total 57 questions
Java Exception Handling preguntas y respuestas de entrevista - Total 30 questions
Java 15 preguntas y respuestas de entrevista - Total 16 questions
Apache Wicket preguntas y respuestas de entrevista - Total 26 questions
Core Java preguntas y respuestas de entrevista - Total 306 questions
Java Multithreading preguntas y respuestas de entrevista - Total 30 questions
Pega preguntas y respuestas de entrevista - Total 30 questions
ITIL preguntas y respuestas de entrevista - Total 25 questions
Finance preguntas y respuestas de entrevista - Total 30 questions
JIRA preguntas y respuestas de entrevista - Total 30 questions
SAP MM preguntas y respuestas de entrevista - Total 30 questions
SAP ABAP preguntas y respuestas de entrevista - Total 24 questions
SCCM preguntas y respuestas de entrevista - Total 30 questions
Tally preguntas y respuestas de entrevista - Total 30 questions
Ionic preguntas y respuestas de entrevista - Total 32 questions
Android preguntas y respuestas de entrevista - Total 14 questions
Mobile Computing preguntas y respuestas de entrevista - Total 20 questions
Xamarin preguntas y respuestas de entrevista - Total 31 questions
iOS preguntas y respuestas de entrevista - Total 52 questions
Laravel preguntas y respuestas de entrevista - Total 30 questions
XML preguntas y respuestas de entrevista - Total 25 questions
GraphQL preguntas y respuestas de entrevista - Total 32 questions
Bitcoin preguntas y respuestas de entrevista - Total 30 questions
Active Directory preguntas y respuestas de entrevista - Total 30 questions
Microservices preguntas y respuestas de entrevista - Total 30 questions
Apache Kafka preguntas y respuestas de entrevista - Total 38 questions
Tableau preguntas y respuestas de entrevista - Total 20 questions
Adobe AEM preguntas y respuestas de entrevista - Total 50 questions
Kubernetes preguntas y respuestas de entrevista - Total 30 questions
OOPs preguntas y respuestas de entrevista - Total 30 questions
Fashion Designer preguntas y respuestas de entrevista - Total 20 questions
Desktop Support preguntas y respuestas de entrevista - Total 30 questions
IAS preguntas y respuestas de entrevista - Total 56 questions
PHP OOPs preguntas y respuestas de entrevista - Total 30 questions
Nursing preguntas y respuestas de entrevista - Total 40 questions
Linked List preguntas y respuestas de entrevista - Total 15 questions
Dynamic Programming preguntas y respuestas de entrevista - Total 30 questions
SharePoint preguntas y respuestas de entrevista - Total 28 questions
CICS preguntas y respuestas de entrevista - Total 30 questions
Yoga Teachers Training preguntas y respuestas de entrevista - Total 30 questions
Language in C preguntas y respuestas de entrevista - Total 80 questions
Behavioral preguntas y respuestas de entrevista - Total 29 questions
School Teachers preguntas y respuestas de entrevista - Total 25 questions
Full-Stack Developer preguntas y respuestas de entrevista - Total 60 questions
Statistics preguntas y respuestas de entrevista - Total 30 questions
Digital Marketing preguntas y respuestas de entrevista - Total 40 questions
Apache Spark preguntas y respuestas de entrevista - Total 24 questions
VISA preguntas y respuestas de entrevista - Total 30 questions
IIS preguntas y respuestas de entrevista - Total 30 questions
System Design preguntas y respuestas de entrevista - Total 30 questions
SEO preguntas y respuestas de entrevista - Total 51 questions
Google Analytics preguntas y respuestas de entrevista - Total 30 questions
Cloud Computing preguntas y respuestas de entrevista - Total 42 questions
BPO preguntas y respuestas de entrevista - Total 48 questions
ANT preguntas y respuestas de entrevista - Total 10 questions
Agile Methodology preguntas y respuestas de entrevista - Total 30 questions
HR Questions preguntas y respuestas de entrevista - Total 49 questions
REST API preguntas y respuestas de entrevista - Total 52 questions
Content Writer preguntas y respuestas de entrevista - Total 30 questions
SAS preguntas y respuestas de entrevista - Total 24 questions
Control System preguntas y respuestas de entrevista - Total 28 questions
Mainframe preguntas y respuestas de entrevista - Total 20 questions
Hadoop preguntas y respuestas de entrevista - Total 40 questions
Banking preguntas y respuestas de entrevista - Total 20 questions
Checkpoint preguntas y respuestas de entrevista - Total 20 questions
Blockchain preguntas y respuestas de entrevista - Total 29 questions
Technical Support preguntas y respuestas de entrevista - Total 30 questions
Sales preguntas y respuestas de entrevista - Total 30 questions
Nature preguntas y respuestas de entrevista - Total 20 questions
Chemistry preguntas y respuestas de entrevista - Total 50 questions
Docker preguntas y respuestas de entrevista - Total 30 questions
SDLC preguntas y respuestas de entrevista - Total 75 questions
Cryptography preguntas y respuestas de entrevista - Total 40 questions
RPA preguntas y respuestas de entrevista - Total 26 questions
Interview Tips preguntas y respuestas de entrevista - Total 30 questions
College Teachers preguntas y respuestas de entrevista - Total 30 questions
Blue Prism preguntas y respuestas de entrevista - Total 20 questions
Memcached preguntas y respuestas de entrevista - Total 28 questions
GIT preguntas y respuestas de entrevista - Total 30 questions
Algorithm preguntas y respuestas de entrevista - Total 50 questions
Business Analyst preguntas y respuestas de entrevista - Total 40 questions
Splunk preguntas y respuestas de entrevista - Total 30 questions
DevOps preguntas y respuestas de entrevista - Total 45 questions
Accounting preguntas y respuestas de entrevista - Total 30 questions
SSB preguntas y respuestas de entrevista - Total 30 questions
OSPF preguntas y respuestas de entrevista - Total 30 questions
Sqoop preguntas y respuestas de entrevista - Total 30 questions
JSON preguntas y respuestas de entrevista - Total 16 questions
Accounts Payable preguntas y respuestas de entrevista - Total 30 questions
Computer Graphics preguntas y respuestas de entrevista - Total 25 questions
IoT preguntas y respuestas de entrevista - Total 30 questions
Insurance preguntas y respuestas de entrevista - Total 30 questions
Scrum Master preguntas y respuestas de entrevista - Total 30 questions
Express.js preguntas y respuestas de entrevista - Total 30 questions
Ansible preguntas y respuestas de entrevista - Total 30 questions
ES6 preguntas y respuestas de entrevista - Total 30 questions
Electron.js preguntas y respuestas de entrevista - Total 24 questions
RxJS preguntas y respuestas de entrevista - Total 29 questions
NodeJS preguntas y respuestas de entrevista - Total 30 questions
ExtJS preguntas y respuestas de entrevista - Total 50 questions
jQuery preguntas y respuestas de entrevista - Total 22 questions
Vue.js preguntas y respuestas de entrevista - Total 30 questions
Svelte.js preguntas y respuestas de entrevista - Total 30 questions
Shell Scripting preguntas y respuestas de entrevista - Total 50 questions
Next.js preguntas y respuestas de entrevista - Total 30 questions
Knockout JS preguntas y respuestas de entrevista - Total 25 questions
TypeScript preguntas y respuestas de entrevista - Total 38 questions
PowerShell preguntas y respuestas de entrevista - Total 27 questions
Terraform preguntas y respuestas de entrevista - Total 30 questions
JCL preguntas y respuestas de entrevista - Total 20 questions
JavaScript preguntas y respuestas de entrevista - Total 59 questions
Ajax preguntas y respuestas de entrevista - Total 58 questions
Ethical Hacking preguntas y respuestas de entrevista - Total 40 questions
Cyber Security preguntas y respuestas de entrevista - Total 50 questions
PII preguntas y respuestas de entrevista - Total 30 questions
Data Protection Act preguntas y respuestas de entrevista - Total 20 questions
BGP preguntas y respuestas de entrevista - Total 30 questions
Ubuntu preguntas y respuestas de entrevista - Total 30 questions
Linux preguntas y respuestas de entrevista - Total 43 questions
Unix preguntas y respuestas de entrevista - Total 105 questions
Weblogic preguntas y respuestas de entrevista - Total 30 questions
Tomcat preguntas y respuestas de entrevista - Total 16 questions
Glassfish preguntas y respuestas de entrevista - Total 8 questions
TestNG preguntas y respuestas de entrevista - Total 38 questions
Postman preguntas y respuestas de entrevista - Total 30 questions
SDET preguntas y respuestas de entrevista - Total 30 questions
Selenium preguntas y respuestas de entrevista - Total 40 questions
Kali Linux preguntas y respuestas de entrevista - Total 29 questions
Mobile Testing preguntas y respuestas de entrevista - Total 30 questions
UiPath preguntas y respuestas de entrevista - Total 38 questions
Quality Assurance preguntas y respuestas de entrevista - Total 56 questions
API Testing preguntas y respuestas de entrevista - Total 30 questions
Appium preguntas y respuestas de entrevista - Total 30 questions
ETL Testing preguntas y respuestas de entrevista - Total 20 questions
Cucumber preguntas y respuestas de entrevista - Total 30 questions
QTP preguntas y respuestas de entrevista - Total 44 questions
PHP preguntas y respuestas de entrevista - Total 27 questions
Oracle JET(OJET) preguntas y respuestas de entrevista - Total 54 questions
Frontend Developer preguntas y respuestas de entrevista - Total 30 questions
Zend Framework preguntas y respuestas de entrevista - Total 24 questions
RichFaces preguntas y respuestas de entrevista - Total 26 questions
HTML preguntas y respuestas de entrevista - Total 27 questions
Flutter preguntas y respuestas de entrevista - Total 25 questions
CakePHP preguntas y respuestas de entrevista - Total 30 questions
React preguntas y respuestas de entrevista - Total 40 questions
React Native preguntas y respuestas de entrevista - Total 26 questions
Angular JS preguntas y respuestas de entrevista - Total 21 questions
Web Developer preguntas y respuestas de entrevista - Total 50 questions
Angular 8 preguntas y respuestas de entrevista - Total 32 questions
Dojo preguntas y respuestas de entrevista - Total 23 questions
Symfony preguntas y respuestas de entrevista - Total 30 questions
GWT preguntas y respuestas de entrevista - Total 27 questions
CSS preguntas y respuestas de entrevista - Total 74 questions
Ruby On Rails preguntas y respuestas de entrevista - Total 74 questions
Yii preguntas y respuestas de entrevista - Total 30 questions
Angular preguntas y respuestas de entrevista - Total 50 questions
Copyright © 2026, WithoutBook.