1. What do mean by search engine?
It is a program or web page that enables you to
search an Internet site for a specific
Keywords or words.
2. What do you mean by Server-side?
Occurring on the server side of a
client-server system. For example, on the World
Wide Web, CGI scripts are server-side
applications because they run on the Web server. In contrast, JavaScript
scripts are client-side because they are executed by your browser (the client).
Java applets can be either server-side or client- side depending on which
computer (the server or the client) executes them.
3. What is a protocol?
An agreed-upon format for transmitting data
between two devices. The protocol
Determines the following:
1.The type of error checking to be used
2. Data Compression method, if any
3. How the sending device will indicate that
it has finished sending a message
4. How the receiving device will indicate
that it has received a message
4. What is ActiveX?
A loosely defined set of technologies
developed by Microsoft for sharing
Information among different applications.
ActiveX is an outgrowth of two other Microsoft technologies called OLE (Object Linking and Embedding) and COM (Component Object Model). As a moniker, ActiveX can be very confusing because it applies to a
whole set of COM-based technologies. Most people, however, think only of
ActiveX controls, which represent a specific way of implementing ActiveX
technologies.
5.
Write a note on ActiveX controls.
A control using ActiveX technologies. An
ActiveX control can be automatically
Downloaded and executed by a Web browser.
ActiveX is not a programming language, but rather a set of rules for how
applications should share information. Programmers can develop ActiveX controls
in a variety of languages, including C, C++, Visual Basic, and Java.
An ActiveX control is similar to a Java
applet. Unlike Java applets, however, ActiveX controls have full access to the
Windows operating system. This gives them much more power than Java applets,
but with this power comes a certain risk that the applet may damage software or
data on your machine. To control this risk, Microsoft developed a registration
system so that browsers can identify and authenticate an ActiveX control before
downloading it. Another difference between Java applets and ActiveX controls is
that Java applets can be written to run on all platforms, whereas ActiveX
controls are currently limited to Windows environments.
Related to ActiveX is the scripting language VBScript that enables Web authors to embed interactive elements in HTML
documents.
6. Explain about Session tracking.
A session is basically a conversation between
a browser and a server. All the above
Technologies can save information for the
current session for a particular user visiting a site. The session is
important, as H1TP is a stateless protocol. This means that the connection between
web server and a web browser is not automatically maintained, and that the
state of a web session is not saved. State is a general term that includes
"everything about your situation" and the specifics vary based on the
application. In a word processor, the state of the application would include
which windows are open, where they are on the screen, and what files you most
recently used. In a web application, the state would include any data that you
had entered, the results of any queries that you had run, and your security
access information (e.g. whether you have logged in to the site).
No comments:
Post a Comment