IT2353 WEB TECHNOLOGY Two Marks Questions With Answers 2014

Anna University, Chennai

Anna_University,_Chennai_logo

SRINIVASAN ENGINEERING COLLEGE

PERAMBALUR – 621212. DEPARTMENT OF INFORMATION TECHNOLOGY

Subject Code & Name: IT2353 WEB TECHNOLOGY Year / Sem : III / VI

Prepared By : A.Ramachandran / AP

UNIT – I

Web Essentials: Clients, Servers, and Communication. The Internet-Basic Internet Protocols -The World Wide Web-HTTP request message-response message- Web Clients Web Servers-Case Study. Markup Languages: XHTML. An Introduction to HTML History-Versions-Basic XHTML Syntax and Semantics-Some Fundamental HTML Elements-Relative URLs-Lists-tables- Frames-Forms-XML Creating HTML Documents Case Study.

1. Define Internet?

The internet is the world’s largest IP-based network. It is an amorphous group of computers in many different countries on all seven continents that talk to each other using the IP protocol.

2. Define Protocol?

A protocol is a precise set of rules defining how components communicate, the format of addresses, how data is split into packets

3. Write the expansion for the following.

ARPA – Advanced Research Projects Agency UDP – User Datagram Protocol

POP3 – Post Office Protocol version 3

MIME – Multimedia Internet Message Extension Protocol

IMAP – Internet Message Access Protocol

4. List out the basic Internet Protocols.

TCP/IP, POP3, MIME, IMAP

5. What are the two major protocols for accessing email from servers?

HTTP - Hypertext Transfer Protocol and SMTP - Simple Mail Transfer Protocol

6. Define HTTP Protocol.

HTTP is a form of stateless communication protocol which gives a detailed specification of how web client and server should communicate and the basic structure followed is known as Request-Response model.

7. What is the structure of HTTP Request Message?

Start line (Request method, Request URI portion of web address, HTTP version) Header fields

Blank line, Message Body

8. Write the structure of HTTP Response Message.

Status line Header fields Blank line Message Body

9. What are HTTP Status Codes?

This code provides the information about the HTTP Response from the server. All status code is three-digit decimal numbers. The first digit represents the general class of status code. The last two digits of a status code define the specific status within the specified class

10. List out the five classes of HTTP 1.1 status codes.

Digit Class

1 International

2 Success

3 Redirection

4 Client Error

5 Server Error

11. List out the available HTTP methods.

GET, HEAD, POST, OPTIONS, PUT, DELETE, TRACE

12. What is Cache?

Browsers often cache (save on disk) web pages so they can quickly reload the pages. If there are no changes between the last version stored in the cache and the current version on the Web, this helps speed up your browsing experience.

13. Define Web Clients.

A Web Client is software that accesses a web server by sending an HTTP request message and processing the resulting HTTP response.

14. What are Web Servers?

A Web Server is software that accepts HTTP requests from web clients and returns an appropriate resource in the HTTP response.

15. What are Secure Servers?

The standard means of indicating to a browser that it should encrypt an HTTP request is to use the https scheme on the URL for the request. For e.g. https://www.example.org will cause the browser to attempt to send an encrypted HTTP GET request.

16. What is HTML?

Hypertext is ordinary text that has been designed with extra features such as formatting, images, multimedia and links to other documents. Markup is the process of taking ordinary text and adding extra symbols. Each of the symbols used for markup in HTML is a command that tells a browser how to display the text. HTML is the technical term for the format used to create normal web pages.

17. What are HTML forms?

An HTML form is used to allow a user to input data on a web page and the element used is form element and its main attributes are action and method. Its format is <form action

= http://www.example.orgmethod = “get”> <form>

18. How will you create a password field in a HTML form? (NOV/DEC2011)

The password field for a form is created by "input of type password".

19. What are entity references?

A reference which uses a mnemonic name for the character references in the HTML document always begins with ampersand (&) and ends with semicolon (;) is called an entity reference. E.G. &NBSP;, &QUOT; &LT; &GT; ETC.

20. What are character references?

This reference are second type of reference for each symbol in an HTML document and begins with a number sign which follows the ampersand beginning the reference and is followed by the Unicode Standard value of the character. E.g. &#60; , &#241; , &#945;.

21. Discuss about comments in HTML.

A comment in HTML, like comments in other computer languages, is something that is intended to be read by the programmers but to be ignored by the software processing the document. A comment begins with the string of characters <!—which must contain no white space. A comment ends with the string --> again with no white space.

<!-- Single line Comment Multi line Comments -->

22. What are the types of list supported by HTML?

There are three types of list supported by HTML.

Unordered – A bullet list

Ordered – a number list and Definition – A list of terms and definitions for each

23. Define URI. (APRIL/MAY 2011)

Uniform Resources Identifier (URI) is an identifier that is intended to be associated with a particular resource on World Wide Web.

24. What is #PCDATA?

The keyword #PCDATA (―Parsed Character Data‖) used in defining the character

data and mixed content types represent any string of characters excluding less-than and

ampersand, which are included because they represent the start characters for markup.

25. List out some important HTML elements.

<HTML> </HTML>

<BODY> </BODY>

<FORM> </FORM>

<TABLE> </TABLE>

<PRE>, <BR>,

<P>, <B>, <I>, <U>

<SPAN>, <STRONG>, <TT>,

<H1>…. <H6>

<LI>, <OL>, <UL>

<INPUT> <SELECT>

26. List any four common browsers. (NOV/DEC2011)

1. Firefox

2. Internet Explorer

3. Chrome

4. Safari

27. What are the types of Entity Declarations?

XML DTD can contain entity declarations each of which begins with the keyword

ENTITY

followed by an entity name and its replacement text such as

<!ENTITY GT “&#62;”>

Types of Entities are i) General Entities ii) Parameter Entities iii) External Entities

28. What are attribute list declarations?

An attribute list declaration is included in the DTD for each element that has attributes and its declaration begins with the keyword ATTLIST followed by an element type name and specifies the names for all attributes of the named element, the type of data that can be used as the value of each attribute, and default value information.

29. List out the types of attribute list declarations?

NMTOKEN Name token

ID Identifier

IDREF Identifier Reference IDREFS Identifier Reference list CDATA Character Data

PCDATA Parsed Character Data

30. State the use of web server logs and list the contents of a message log.

The server log may be used to examine traffic patterns by time of day, day of week, referrer, or user agent. Efficient web site administration, adequate hosting resources and the fine tuning of sales efforts can be aided by analysis of the web server logs. Marketing departments of any organization that owns a website should be trained to understand these powerful tools.

31. Explain in brief the interaction between a web server and a Servlet.

Client

• Makes a request by specifying a URL + additional info

• Basically a method call, the method and arguments.

Web Server

• Receives the request.

• Identifies the request as a servlet request

• Passes the request to the servlet container

Servlet Container

• Locates the servlet (Java code, loaded and running in the container JVM)

• Feeds the request parameters to the servlet

Servlet

• Executes in a separate thread

• The servlet can store/retrieve objects (possibly session scoped) from the servlet container.

• Output is sent back to the requesting web browser.

• Servlet continues to be available in the servlet container.


UNIT -II

Style Sheets: CSS-Introduction to Cascading Style Sheets-Features-Core Syntax-Style Sheets and HTML Style Rle Cascading and Inheritance-Text Properties-Box Model Normal Flow Box Layout-Beyond the Normal Flow-Other Properties-Case Study. Client- Side Programming: The JavaScript

Language-History and Versions Introduction JavaScript in Perspective-

Syntax-Variables and Data Types-Statements-Operators- Literals-Functions-Objects- Arrays-Built-in Objects-JavaScript Debuggers.

1. What are Style Sheets?

A style sheet provides a great deal of control over the presentation of a document.

2. Mention the need for cascading style sheets.

Need for CSS

Allow the information in the document to be presented without change in a variety of ways

Relatively easy to give all of the elements on a page consistent appearance

Both the document author and the person viewing the document can specify aspect of the document style as it is displayed by the browser

3. What is the use of @import at-rule?

The @import at-rule is used to input one style sheet fie into another one. For e.g @import

url(―common.css‖); will first read in rules from the file common.css before continuing with

the other rules in this style sheet.

4. What are external style sheets?

The style sheets which has been stored in separate files and included in an HTML

documents through the use of a link element are known as external style sheets.

5. What are embedded style sheets?

A style sheet that is included in the content of a style element is known as an embedded style sheet.

6. What are the two methods of implementing style sheets?

The two methods of implementing styles to HTML elements are

Rule Cascading

Inheritance

7. Give the syntax of CSS rule. (NOV/DEC2011)

A CSS rule has two main parts: a selector, and one or more declarations: The selector is normally the HTML element you want to style. Each declaration consists of a property and a value. The property is the style attribute you want to change. Each property has a value.

8. Who could be the origin of the declaration?

The origin of a style sheet declaration is who wrote the declaration, the person who wrote the HTML document , the person who is viewing the document, or the person who wrote the browser software that is displaying the document. Specifically the origin can be one of the following. i) Author ii) User Agent iii) User

9. List out some primary CSS text properties.

Some of the primary CSS text properties are:

TEXT-DECORATION, LETTER-SPACING WORD-SPACING TEXT-TRANSFORM

TEXT-INDENT

6

TEXT-ALIGN WHITE-SPACE

10. Explain Normal Flow Box Layout.

It is a browser’s standard rendering model (normal flow processing), where every HTML element rendered by the browser has a corresponding regular box that contains the rendered content of the element.

11. List out the five priority bins of element declarations

Important declaration with user origin Important declaration with author origin Normal declaration with author origin Normal declaration with user origin

Any declaration with user agent origin

12. What is the use of list style property?

The list-style-type property can be used to vary the default styles used for bulleted and numbered list items. It can be applied to the li, ol, ul element types

13. Write the expansion for the following? i) ECMA ii) CSS iii) XHTML iv)XML

ECMA- European Computer Manufacturers Association

CSS- Cascading Style Sheets

XHTML- Extended Hyper Text Markup Language

XML- Extensible Markup Language

14. What is a Javascript statement? Give an example. (NOV/DEC2011)

A JavaScript statement is a command to a browser. The purpose of the command is to tell the browser what to do. This JavaScript statement tells the browser to write "Hello Dolly" to the web page: document. write ("Hello Dolly"); It is normal to add a semicolon at the end of each executable statement. Most people think this is a good programming practice, and most often you will see this in JavaScript examples on the web.

15. Why JavaScript has been called dynamically typed language?

JavaScript performs many conversions between data types automatically. It is also possible to store different data types in the same variable which is not possible in other languages like Java and C++ which are called statically typed languages. According to the data type stored the type of the variable is determined and it is not necessary for variable type declaration. Hence JavaScript is called dynamically typed language. e.g i=3

i=”text”

16. Explain array creation in Java script with example. (APRIL/MAY 2011)

Array can be defined in three ways i. Using the array constructor directly in a call with no argument. E.G: VAR ARY1=NEW ARRAY(); ARY1[0]=4; ARY1[1]=TRUE; ARY1[2]=”OK”

ii. By supplying two or more arguments to the array Constructor

VAR ARY2=NEW ARRAY(4,TRUE,”OK”);

iii. The Array built-in object can be used to construct object with special properties and that inherit various methods

VAR ARY2=[4,TRUE,”OK”];

17. What are the types of positioning?

Normal flow positioning Relative positioning Absolute positioning Float positioning

18. Define font family?

Font family is a collection of related fonts, and a font is a mapping from a character

(Unicode Standard code point) to a visual representation of the character (a glyph).

19. Define the term glyph.

Glyph is a rectangular character cell or the characters content area.

20. List out the class of selectors

i. ID Selectors

ii. Class and pseudo-class selectors

iii. Descendent and type selectors

iv. Universal selectors

21. What are Interpreted languages?

Programming languages that does not need to be compiled before execution are known as interpreted languages.

22. What are host objects?

Objects that are required by the ECMAScript definition for Javascript implementation is provided by the hosting environment are known as host objects.

23. What are native objects?

A built-in object is a native object that is automatically constructed during scripting engine initialization rather than being constructed during program execution. E.g. window

24. What are the two components of Javascript implementation?

The primary component is a scripting engine, which includes a Javascript interpreter as well as core ECMAScript functionality that must be present regardless of the scripting environment.

The second component is a hosting environment, which provides environment specific capabilities to Javascript programs running within the environment.

25. What do you mean by global object?

Global object is named window as global variables declared by your program are actually stored as properties of this object. All built-in and host objects are also stored as properties of global object

26. List out some of the built-in objects of JavaScript?

Built-in objects of JavaScript are STRING, NUMBER, BOOLEAN, DATE, MATH, REGEXP.

27. What are the six JavaScript data types?

i. Number

ii. String

iii. Boolean

iv. Null

v. Object

vi. Undefined

28. What is the use of typeof operator?

typeof is an operator that provides information about the data type of a value stored in a variable and also its use is to test that a variable has been defined before attempting to use it.

29. What are the three types of statements in JavaScript?

Expression statement: that consists entirely of an expression

Block statement: that consists of set of statements enclosed in braces { } Keyword statement: that begin with keywords such as var, if, for etc


UNIT - III

Host Objects: Browsers and the DOM-Introduction to the Document Object Model DOM History and Levels-Intrinsic Event Handling-Modifying Element Style-The Document Tree-DOM Event Handling-Accommodating

Noncompliant Browsers Properties of window-Case Study. Server-Side Programming: Java Servlets- Architecture -Overview-A Servlet-Generating Dynamiccontent-Life Cycle-Parameter Data-Sessions-Cookies-URL Rewriting-Other Capabilities-Data Storage Servlets and Concurrency-Case Study-Related Technologies.

1. What is DOM?

DOM (Document Object Model) is an API that defines how JavaScript programs can access and manipulate the HTML document currently displayed by a browser. It includes the definition of the properties of document object, many of which are themselves objects with their own properties.

2. List out some of the HTML intrinsic event attributes. (APRIL/MAY 2011)

onload, onclick, ondblclick, onmousedown, onmouseup, onmousemove, onfocus, onblur, onkeypress, onkeydown, onselect, onchange, onsubmit, onreset etc.

3. What is Node object?

Every element in a document tree refers to a Node object. Some nodes of the tree are

JavaScript objects corresponding to HTML elements such html or body.

4. List out the properties of a Node object.

Properties of a Node object are nodeType

nodeName

parentNode childNodes previousSibling nextSibling attributes

5. What do you mean by document node?

The document object itself is considered to be DOM tree node with node type 9 and symbolic constant DOCUMENT_NODE and it has its own properties and methods

6. List out some possible values for the nodeType property of Node instances.

Value

Symbolic Constant

Host Object Type

1

Node.ELEMENT_NODE

Element

2

Node.ATTRIBUTE_NODE

Attr

3

Node.TEXT_NODE

Text

8

Node.COMMENT_NODE

Comment

9

Node.DOCUMENT_NODE

Document

10

Node.DOCUMENT_TYPE_NODE

DocumentType

7. List out some properties of the document object.

The properties of document object are DOCTYPE, TITLE, BODY, COOKIE, URL, DOMAIN, REFERRER, CREATEELEMENT(STRING), CREATETEXTNODE(STRING), GETELEMENTBYID(STRING), GETELEMENTBYTAGNAME(STRING)

8. Explain Event object.

In the DOM event model, when an event occurs, an instance of a host object named Event is created. This instance contains information about the event, including the type of event and a reference to the document node corresponding to the markup element that generated the event which is called the event target. The Event instance properties type and target provides this information.

9. What is the important feature of dynamic positioning? (APRIL/MAY 2008)

Dynamic positioning allows you to tell the browser exactly where to put a block of content without using tables.

10. List the possible opacity attributes of dynamic positioning. (APRIL/MAY 2008) HTML: The basic building block.

Document Object Model: The objects that make up the contents of any Web page.

JavaScript: A scripting language that can manipulate the objects.

Positioning: The placement of objects within the document.

11. What is Event Listener?

An Event Listener is simply a function that takes a single argument that is an instance of an Event. A call to the addEventListener() method on a node object associates an event listener with a type of event occurring on that node.

12. What are the types of Events?

i. HTML intrinsic events

ii. HTML Events

iii. UI Events

iv. Mutation Events

13. What do you mean by bubbling listener?

Bubbling listener is a listener associated with an ancestor of the target node and that was created with a call to addEventListener() and had its third argument set to false

e.g. ancestor.addEventListener(‘click”,listener3,false);

14. List out some common window object methods.

alert(String), confirm(String), prompt(String, String), open(String, String) close(), focus(), blur(), print()

15. List out some common window object methods related to time.

i) setTimeout(String, Number)

ii) clearTimeout(Number)

iii) setInterval(String, Number)

iv) clearInterval(Number)

16. What is DHTML?

The combination of HTML plus JavaScript and the DOM is referred to as Dynamic HTML (DHTML), and an HTML document that contains scripting is called a dynamic document.

17. Define servlet.

A servlet is a java class that a web server instantiates when the server is started. A

particular method is called in this instance when the server receives certain HTTP requests.

18. What are servlet life cycle methods?

The methods of servlet life cycle are

INIT(), SERVICE() AND DESTROY()

19. What are servlet listener classes?

Listener classes is used to initialize a web application consisting of multiple servlets rather than a single servlet and can be created and registered with the server so that they will be called when certain event occurs, including life-cycle events.

20. What are the functions of doGet() and doPost() methods?

doGet()-Browser will append the query string it constructs to the form’s action

URL and performs an HTTP GET using the resulting URL.

DOPOST() – Same query string will be constructed , but it will be passed to the server via the body of the HTTP request rather than as part of the URL.

21. Define Session.

Collection of HTTP requests, all associated with a single session ID, is known as a

session. Sessions are maintained by communication between clients and servers.

22. How the session is terminated?

By default the time interval for a session is 20 minutes.

The session can also be forced to terminate by calling invalidate() method.

The time interval for the session can be set using setMaxInactiveInterval() method.

23. Explain cookies. (APRIL/MAY 2008), (APRIL/MAY 2010)

Cookies are some little information that can be left on your computer by the other computer when we access an internet.

24. Define cookie.

A cookie is a name-value pair that a web server sends to a client machine as part of an HTTP response, specifically through the Set-cookie header field.

25. Explain the difference between get request and post request type.

The HTML specifications technically define the difference between "GET" and "POST" so that former means that form data is to be encoded (by a browser) into a URL while the latter means that the form data is to appear within a message body.

26. List out the methods of Cookie class.

Cookie, getName(), getValue(), setMaxAge()

27. Define Thread.

A thread is the Java VM’s abstract representation of the processing to be performed to accomplish a particular task, possibly concurrently with other tasks.

28. Write the code to return the full URL of a document. (NOV/DEC2011)

<html>

<head>

<title>Javascript get url</title>

</head>

<body>

<script>

document.write(document.location.href)

</script>

</body>

</html>

29. How is session tracking achieved by URL rewriting? (NOV/DEC2011)

In URL rewriting the server passes a session ID by adding it to every servlet URL appearing in any page sent to the client. It involves rewriting every URL referencing the servlet in the href attribute of any anchor and the action attribute of any form output by the servlet

30. Expand the following : i) HTTP, ii) JDBC iii) URL iv) SQL

HTTP – Hyper Text Transfer Protocol JDBC- Java Data Base Connectivity URL – Uniform Resource Locator

SQL- Structured Query Language

31. List out the methods of HTTP.

doGet()

doPost() doOptions() doPut() doTrace() doDelete() doHead()


UNIT - IV

Representing Web Data: XML-Documents and Vocabularies-Versions and Declaration -Namespaces JavaScript and XML: Ajax-DOM based XML processing Event-oriented Parsing: SAX-Transforming XML Documents-Selecting XML Data: XPATH-Template based Transformations: XSLT-Displaying XML Documents in Browsers-Case Study- Related Technologies. Separating Programming and Presentation: JSP Technology Introduction-JSP and Servlets - Running JSP Applications Basic JSP-JavaBeans Classes and JSP-Tag Libraries and Files-Support for the Model-View-Controller Paradigm-Case Study-Related Technologies.

1. What is well-formed document?

An HTML or XML document is said to be well formed when it contains elements with proper tagging and no syntactic errors.

2. What is DTD?

A Document Type Declaration enables an XML parser to verify whether an XML

document is valid, i.e. its elements contain the proper attributes in the proper sequence.

3. What is XML Namespace? (APRIL/MAY 2011)

An XML namespace is a collection of element and attribute names. Each namespace has a unique name that provides a means for document authors to unambiguously refer to elements with the same name in order to prevent collisions.

4. What is the use of XML declaration?

XML declaration is a special tag used to specify the version of XML used to write the document and optionally some additional meta-information about the document such as the character set/encoding used. For e.g the syntax of XML declaration is

<? XML VERSION=”1.0”?>

5. What is RSS?

RSS stands for RDF (Resource Description Framework) Site Summary and is also known as Rich Site Summary and Really Simple Syndication. RSS is popular and simple XML format designed to share headlines and web content between Web sites.

6. What are the types of XML Parsers?

There are two types

Validating Parsers

Non-Validating Parsers

7. What are XML Parsers?

XML Parsers are used to check whether the document is well formed and valid.

8. How is XML parsing done with SAX? (NOV/DEC2011)

A SAX parser is a mechanism for transforming an XML text document into stream of events corresponding to the markup and character data contained in the original document.

9. Explain Event-oriented parsing.

In this parsing, Parser interacts with an application as its reads an XML document when certain events occur and this approach is used by SAX (Simple API for XML) based parsers.

10. What are the components of XSL?

XSLT-XSL Transformations which defines the semantics of the various elements and attributes of the XSL namespace.

XPATH – XML Path Language which defines the syntax and semantics of many of the attribute values used in XSL elements for accessing positions of the input XML document

XSL-FO – XSL Formatting Objects is a separate vocabulary for defining style properties of an XML document.

11. What is the purpose of XSLT? (NOV/DEC2011)

The XSLT stands for XSL Transformations and XSL stands for eXtensible Stylesheet Language. The XSLT is used for defining the XML document transformation and presentations.

12. What are XML Schemas?

XML Schemas are part of the XML vocabulary and its addresses the standard for XML document validation by including a definition of a collection of standard data types which are used to describe data structures.

13. Write the expansion for the following. i) XSL ii) JAXP III) CGI iv) JSP

JAXP – Sun Java SPI for XML Processing

XSL - Extensible Style Sheet Language

CGI – Common Gateway Interface

JSP – Java Server Pages

14. Define Deployment Descriptor.

Deployment descriptor which is stored in a file called web.xml. The deployment descriptor specifies various configuration parameters such as the name used to invoke the servlet (i.e. its alias), a description of the servlet, the servlets fully qualified class name and a servlet mapping (i.e., the path or paths that cause the servlet container to invoke the servlet).

15. What is JSP?

JSP, an extension of servlet technology simplifies the delivery of dynamic web content. They enable web application programmers to create dynamic content by reusing predefined components and by interacting with components using server side scripting. JSP programmers can reuse JavaBeans and create custom tag libraries that encapsulate complex, dynamic functionality

16. Write some commonly used video file formats. (APRIL/MAY 2008)

.wmv

.mov

.mpg

.avi

MPEG2

17. What is WAR file?

A Web application has a well-known directory structure in which all the files are part of the application reside. This directory structure can be created by the server administrator in the webapps directory, or the entire directory structure can be archived in a Web Application Archive file. Such an archive is known as a WAR file and ends with the .war file extension. If a WAR file is placed in the webapps directory, then when the Tomcat server begins execution, it extracts the contents of the WAR file into the appropriate webapps subdirectory structure.

18. Explain in brief about JavaScriplet. (APRIL/MAY 2011)

JSP Scriptlets or scripting elements, enable programmers to insert Java code that interacts with components in a JSP and possible other Web application components to perform request processing.

19. What are the types of directives in JSP. (APRIL/MAY 2008)

There are two types of directives in JSP

page: Multiple page attributes can be included in a single page directive using the standard XML syntax of separating attribute specification with white space

include: It imports text from another file into the JSP document at the point at which

the directive appears.

20. What are JSP scripting components?

JSP scripting components include Scriptlets, comments, expressions, declarations and escape sequences.

21. List out the scope of Implicit Objects

Implicit objects have four scopes: application, page, request and session.

The JSP and servlet container application owns object with application scope.

Any servlet or JSP can manipulate such objects.

Objects with page scope exist only in the page that defines them. Each page has its own instances of the page-scope implicit objects.

Objects with request scope exist for the duration of the request.

Objects with session scope exist for the client’s entire browsing session.

22. What are JSP Standard Actions?

JSP standard actions provide JSP implementers with access to several of the most common tasks performed in a JSP, such as including content from other resources, forwarding requests to other resources and interacting with JavaBeans. JSP containers process actions at request time. Actions are delimited by <jsp:action> and </jsp:action>, where action is the standard action name.

23. What are directives?

Directives are messages to the JSP container that enable the programmer to specify page settings, to include content from other resources and to specify custom tag libraries for use in a JSP. Directives delimited by <%@ and %> are processed at translation time. Thus directives do not produce any immediate output, because they are produced before the JSP accepts any requests. There are two directive types namely page directive and include directive.

24. What is page Directive?

The page Directive specifies global settings for the JSP in the JSP container. There can be many page directives, provided that there is only one occurrence of each attribute. The only exception to this is the import attribute, which can be used repeatedly to import Java packages used in the JSP.

25. What is include Directive?

The include directive includes the content of another resource once, at JSP translation time. The include directive has only one attribute, file–that specifies the URL of the resource to include. The difference between directive include and action <jsp: include> is noticeable only if the included content changes.

26. What is the use of <jsp: useBean> Action?

Action <jsp: useBean> enables a JSP to manipulate a Java object. This action creates a Java object or locates an existing object for use in the JSP. If attributes class and beanName are not specified, the JSP container attempts to locate an existing object of the type specified in attribute type.

27. List out JSTL functional areas.

The JSTL is divided into several separate functional areas, each with its own namespace. List of all the JSTL functional areas along with the suffices of the respective namespace names are as follows

Functional Area

Namespace Name Suffix

Core

CORE

XML Processing

Xml

Functions

FUNCTIONS

Database

Sql

Internationalization

FMT

28. What are the components of Model View Controller Paradigm?

Model: These are software components that represent the persistent data of the application and server-side processing performed on this data.

View: This component generally obtain data from the request and/or model components and then generate an HTTP response that presents a formatted view of this data.

Controller: This component receives all incoming HTTP requests and provides a single point of entry to the application and does application-wide tasks such as initialization, logging, and controlling access to the application.

29. Discuss about PHP.

PHP, an acronym with the infinitely recursive definition ―PHP: Hypertext

Preprocessor‖ is a Perl-like scripting language that can be embedded in HTML documents

such as Java Scriptlets can be embedded in JSP pages or scripting code in ASP with tags

having the syntax <?php?>


UNIT - V

Web Services: JAX-RPC-Concepts-Writing a Java Web Service-Writing a Java Web Service Client-Describing Web Services: WSDL- Representing Data Types: XML Schema- Communicating Object Data: SOAP Related Technologies-Software Installation-Storing Java Objects as Files-Databases and Java Servlets.

1. What is the concept behind JAX-RPC technology? (NOV/DEC 2011)

The Web services are the software systems that are displayed by the web browser using the web protocol. These software systems are used by the some of the application rather than by end-users directly.

2. What are Web Services?

Web Services are software systems that are designed to be accessed using web protocols and technologies that are intended to be used by other software applications rather than directly by end users.

3. What is meant by WSDL? (APRIL/MAY 2011)

WSDL is Web Services Definition Language which is based on XML. WSDL defines the web service like operation, parameter, return values and communication protocols.

4. What is the use of WSDL?

Web Services Definition Language (WSDL) is used to describe the operations provided by a web service which includes defining the data to be passed from the client to the operation as well as the return value of the operation using SOAP.

5. What is XSL and why it is used. (APRIL/MAY 2008)

The Extensible Stylesheet Language (XSL) is an XML vocabulary typically used to transform XML document from one form to another form. XSL document are well- formed XML documents.

6. Write the expansion for the following i) SOAP ii) JWSDP iii) SAAJ iv) ODBC

SOAP- Simple Object Access Protocol JWSDP – Java Web Services Developer Pack SAAJ – SOAP with Attachments API for Java ODBC – Open Data Base Connectivity

7. When it is useful to redirect a request to a different resource. (APRIL/MAY 2008)

Sometimes it is useful to redirect a request to a different resource. For example, a servlet could determine the type of the client browser and redirect the request to a Web page that was designed specifically for that browser. The RedirectServlet receives a page parameter as part of a get request, then uses that parameter to redirect the request to a different resource.

8. Define service endpoint interface.

Service endpoint interface is a Java interface that specifies the operations that will be provided by the service which is essentially an API for the service.

9. What is the basic difference between get request and post request types for service endpoint interface?

The basic rules for service endpoint interface are

The interface must extend directly or indirectly the java.rmi.Remote interface. Every method in the interface must throw java.rmi.RemoteException.

Every method parameter and every return value must conform to certain restrictions on the allowed data types

The interface must not contain any public static final declarations.

10. What are the tools available in JWSDP 1.3?

Web services can be built using two tools.

 wscompile: converts Java files into a WSDL document along with another intermediate output file.

 wsdeploy: is used to package our service before finally deploying it as a web

application.

11. What are built-in data types for XML Schema?

The data types defined by the XML Schema specification itself are called its built-in data types. For e.g xsd:integer, xsd:decimal, xsd:string, xsd:boolean, xsd:float etc.

12. What are the classifications XML Schema data types?

There are two classes of XML Schema data types. They are (i)Simple (ii) Complex

13. What are simple and complex data types?

A simple type is a data type whose values are represented in XML documents by character data and are used to represent individual values.

A complex type is a data type whose values are represented using markup and are used to represent structured data.

14. How can the user-defined simple types be defined?

The user-defined simple types can be defined by specifying one or more restrictions on the values of a simple built-in type. All built-in data type has various facets that can be used within a restriction to form a simple user-defined type such as base, enumeration. length, minLength, maxLength, minInclusive, maxInclusive etc.

15. Define the term RPC.

Remote Procedure Call is the generic term used for the type of communication used to describe web service operations when the client makes a call to a method or procedure that resides on another machine (remotely)

16. Write the steps to obtain the command prompt in Windows XP.

The steps to obtain the command prompt in Windows XP are as follows

Click the Start button

Select Run

Type cmd in the Run window

17. What are Environment Variables?

Environment Variables are variables used to tell applications where to look for certain files. For example, the CLASSPATH environment variable can be used to tell the Java Compiler and virtual machine where to look for user-defined Java class files.

18. Define Serialization. (APRIL/MAY 2011)

Serialization is the process of writing the state of the object to the byte stream. This technique is useful when we want to store the current state of the object to the file.

19. What is the functionality of object serialization?

When an object Is serialized, the data contained within an object is transformed into a number of bytes representing the data can then be stored in a file and transmitted over a communications network, or otherwise treated like any other stream of data.

20. In what ways the objects can be serialized?

The objects belonging to a class can be serialized if the class implements the Java.io.Serializable interface either directly or indirectly by extending a super class that is serializable or by implementing an interface that is a sub interface of Serializable.

21. What is the use of Connection object?

A Connection object can be used to obtain information about the database, such as the table it contains, as well as to set parameters of the interaction with the database.

22. List out the objects used for database access using JDBC.

Condition Statement Result Set

23. List out the default ports of Tomcat Web Server and Java Web Server

Tomcat – 8080

JWS – 9090

HTTP – 80

SMTP – 25

Telnet – 23

POP3 – 110

24. What is UDDI? (NOV/DEC 2011)

Universal Description, Discovery and Integration (UDDI) is a directory service where businesses can register and search for Web services. UDDI is a platform-independent framework for describing services, discovering businesses, and integrating business services by using the Internet. UDDI stands for Universal Description, Discovery and Integration. It is a directory for storing information about web services. It is a directory of web service interfaces described by WSDL. It communicates via SOAP. It is built into the Microsoft .NET platform

25. What is port?

Ports are purely abstractions in the computer’s memory and do not represent anything physical like a serial port or parallel port.

Each port is identified by a number from 1 to 65,535. Each port can be allocated to a particular service.

Port numbers from 1 to 1023 are reserved for well-known services such as FTP, HTTP, e-mail, finger etc.

198 comments:

  1. Search for a class where your set objective is inside reach, and where all you learn are the basic fundamental website composition stuff or exercises with which you have great nuts and bolts and a decent foundation. As much as this may appear to be exhausting, it is a significant advance in the learning procedure. It ought not in this way, be skipped.
    Web Design Curriculum

    ReplyDelete
  2. I as of late ran over your website and have been perusing along. I thought I would leave my first remark. I don't realize what to say aside from that I have delighted in perusing. Decent blog. I will continue going to this online journal frequently. technology advance

    ReplyDelete
  3. We are really grateful for your blog post. You will find a lot of approaches after visiting your post. I was exactly searching for. Thanks for such post and please keep it up. Great work. Web design Singapore

    ReplyDelete
  4. Wow, cool post. I’d like to write like this too – taking time and real hard work to make a great article… but I put things off too much and never seem to get started. Thanks though. techno tech blog

    ReplyDelete
  5. Taylor Lautner Workout Routine… By the way you might want to check out this cool site I found…… website designers nyc

    ReplyDelete
  6. When it has to do with web design, you own a couple of alternatives. WebDesign could possibly be understood as a practice of designing and creating web
    pages and web websites.learn here

    ReplyDelete
  7. Normally the internet design business is included in the websitecredits, or is recorded somewhere else on the site. Very best web design
    businesses improve online visibility.web design company

    ReplyDelete
  8. You must participate in a contest for among the best blogs on the web. I will suggest this web site! website designer nyc

    ReplyDelete
  9. I’m not that much of a internet reader to be honest but your blogs really nice, keep it up! I’ll go ahead and bookmark your site to come back down the road. Cheers new york web design company

    ReplyDelete
  10. Hey! Great post! Please do tell us when we can see a follow up! web design manhattan

    ReplyDelete
  11. This comment has been removed by the author.

    ReplyDelete
  12. This comment has been removed by the author.

    ReplyDelete
  13. Enjoyed examining this, very good stuff, thanks . branding agency sf

    ReplyDelete
  14. Thanks For sharing this Superb article.I use this Article to show my assignment in college.it is useful For me Great Work. 100 real instagram likes

    ReplyDelete
  15. I feel like I’m constantly looking for interesting things to read about a variety of subjects, but I manage to include your blog among my reads every day because you have compelling entries that I look forward to. Here’s hoping there’s a lot more amazing material coming! san fran design firms

    ReplyDelete
  16. Some really quality blog posts on this site, saved to fav. san fran design firms

    ReplyDelete
  17. Oh my goodness! an incredible article dude. Thank you However I am experiencing difficulty with ur rss . Don know why Unable to subscribe to it. Is there anybody getting equivalent rss drawback? Anyone who knows kindly respond. Thnkx phone mockup

    ReplyDelete
  18. All I can point out is, I am not sure what to really say! Except obviously, for the superb tips that happen to be shared within this blog. I can think of a thousand fun methods to read the reports on this site. I’m sure I will eventually take a step employing your tips on those things I could not have been able to deal with alone. You’re so careful to let me be one of those to benefit from your valuable information. Please recognize how a great deal I appreciate it. ipad device template

    ReplyDelete
  19. In the event that you assemble a Web application, the essential code remains the equivalent over all gadgets, and it is a lot simpler and quicker to convey the perfect rendition to every gadget utilizing gadget location and substance adjustment. 토토사이트

    ReplyDelete
  20. Glad to be one of the visitors on this awe inspiring web site : D. web design company san francisco

    ReplyDelete
  21. Get in touch with us and turn your business goals into an incredible design and then into a fully functional website today. web development services in usa

    ReplyDelete
  22. I haven’t checked in here for some time because I thought it was getting boring, but the last few posts are really good quality so I guess I’ll add you back to my daily bloglist. You deserve it my friend. insurance guides design agency san francisco

    ReplyDelete
  23. Good day! This post could not be written any better! Reading this post reminds me of my previous room mate! He always kept chatting about this. I will forward this write-up to him. Fairly certain he will have a good read. Thanks for sharing! website designers san francisco

    ReplyDelete
  24. Wow, awesome blog structure! How long have you been running a blog for? you made blogging look easy. The total look of your site is wonderful, let alone the content material! web design agency san francisco

    ReplyDelete
  25. Hello,I enjoy analyzing your blog site, Needed to go out of a small amount of comment to support you and wish that you good continuation. Wishing the paramount of luck for the blogging efforts. website designers san francisco

    ReplyDelete
  26. This is so great that I had to comment. I’m usually just a lurker, taking in knowledge and nodding my head in quiet approval at the good stuff…..this required written props. Theory rocks…thanks. website design san francisco

    ReplyDelete
  27. The the next occasion I read a weblog, Lets hope so it doesnt disappoint me about this place. After all, I know it was my choice to read, but I actually thought youd have something interesting to express. All I hear can be a few whining about something you could fix in the event you werent too busy looking for attention. los angeles web agency

    ReplyDelete
  28. This is really exciting, You’re a tremendously trained article author. I’ve joined with your feed and also anticipate enjoying the awesome write-ups. Incidentally, I’ve got shared the blog throughout our social networking sites. website design la

    ReplyDelete
  29. Hey. Neat post. There’s a problem with the site in chrome, and you might want to check this… The browser is the marketplace leader and a good section of other folks will leave out your wonderful writing due to this problem. design firms los angeles

    ReplyDelete
  30. My spouse and i were really delighted Emmanuel managed to finish up his investigations because of the precious recommendations he gained from your own web site. It is now and again perplexing to simply find yourself giving freely steps that some other people may have been selling. And we also realize we now have you to give thanks to for that. These explanations you have made, the straightforward web site menu, the relationships you assist to engender – it is mostly wonderful, and it is leading our son in addition to us do think this issue is exciting, which is certainly especially fundamental. Many thanks for the whole lot! web design agency los angeles

    ReplyDelete
  31. Hello, Neat post. There’s an issue along with your web site in web explorer, may test this… IE nonetheless is the marketplace chief and a huge section of other people will miss your great writing due to this problem. design firms los angeles

    ReplyDelete
  32. You must be innovative, however with some restriction.Bluehost review

    ReplyDelete
  33. Advertisers should consider political battles since they are great examinations in the formation of world class brands.smm panel

    ReplyDelete
  34. Thank you for sharing with us, I conceive this website genuinely stands out : D. web design company

    ReplyDelete
  35. I’ve been exploring for a little for any high quality articles or blog posts on this kind of area . Exploring in Yahoo I at last stumbled upon this website. Reading this info So i’m happy to convey that I’ve a very good uncanny feeling I discovered just what I needed. I most certainly will make sure to don’t forget this website and give it a look regularly. web design tips

    ReplyDelete
  36. Form control has been improved for bigger organizations with numerous clients altering similar pages and posts - the improved co-altering bolster locks posts who are being altered by another person. error establishing a database connection

    ReplyDelete
  37. eCommerce Website Designers who are 100% Australian developers from Website Development Australia. We build high performing eCommerce websites. ecommerce

    ReplyDelete
  38. Regulars which have newsletters will keep you updated about the newest advantages that are given in usual times. togel online

    ReplyDelete
  39. Cool stuff you have got and you keep update all of us. web design in Switzerland

    ReplyDelete
  40. This comment has been removed by the author.

    ReplyDelete
  41. Great post full of useful tips! My site is fairly new and I am also having a hard time getting my readers to leave comments. Analytics shows they are coming to the site but I have a feeling “nobody wants to be first”sports website design columbia sc

    ReplyDelete
  42. I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post. Epik-protocolEPIK

    ReplyDelete
  43. Quickly your website can irrefutably acquire well known being among the most regarding submitting buyers, due to its thorough content articles or simply just essential critiques. web design company denver

    ReplyDelete
  44. Connection colors facilitate with page tone.Webdesign

    ReplyDelete
  45. In case you're looking for a more traditionalist pair of studs, you can never turn out badly with strong gold loop hoops, enormous or little, expansive or slight.besimple.com/

    ReplyDelete
  46. Why fill in as a specialist? The greater part of us have thought sooner or later that outsourcing would be an incredible chance - normally on a cool, wet Monday morning.Professional graphic design

    ReplyDelete
  47. Everybody loves most of the conversations, We really skilled, I would choose more information when it comes to this particular, because it's amazing., Along with because of obtain distributing. Technology

    ReplyDelete
  48. Thank you again for all the knowledge you distribute,Good post. I was very interested in the article, it's quite inspiring I should admit. I like visiting you site since I always come across interesting articles like this one.Great Job, I greatly appreciate that.Do Keep sharing! Regards, Webmailguide

    ReplyDelete
  49. I’m going to read this. I’ll be sure to come back. thanks for sharing. and also This article gives the light in which we can observe the reality. this is very nice one and gives indepth information. thanks for this nice article... trafficize bonus

    ReplyDelete
  50. I am definitely enjoying your website. You definitely have some great insight and great stories. useless website generator

    ReplyDelete
  51. Took me time to understand all of the comments, but I seriously enjoyed the write-up. It proved being really helpful to me and Im positive to all of the commenters right here! Its constantly nice when you can not only be informed, but also entertained! I am certain you had enjoyable writing this write-up. SEO CDMX

    ReplyDelete
  52. This is so great that I had to comment. I’m usually just a lurker, taking in knowledge and nodding my head in quiet approval at the good stuff…..this required written props. Theory rocks…thanks. amazon dropshipping service

    ReplyDelete
  53. hello!! Very interesting discussion glad that I came across such informative post. Keep up the good work friend. Glad to be part of your net community. SEO

    ReplyDelete
  54. In my experience, very few small businesses have the full complement of design assets or something resembling an IP manual required to build a thorough brief. small business web services

    ReplyDelete
  55. I have read all the comments and suggestions posted by the visitors for this article are very fine,We will wait for your next article so only.Thanks! web hosting forum

    ReplyDelete
  56. You completely match our expectation and the variety of our information. News

    ReplyDelete
  57. We have sell some products of different custom boxes.it is very useful and very low price please visits this site thanks and please share this post with your friends. sviluppo siti web

    ReplyDelete
  58. If your web site goes down in the middle of the night when they're not available, this means lost revenue for a business. You should make sure the web host you select is always available for support. ssd vps hosting

    ReplyDelete
  59. I’m going to read this. I’ll be sure to come back. thanks for sharing. and also This article gives the light in which we can observe the reality. this is very nice one and gives indepth information. thanks for this nice article... sayapro checker

    ReplyDelete
  60. Very likely I’m going to bookmark your blog . You absolutely have wonderful stories. Cheers for sharing with us your blog. content://com.android.browser.home/

    ReplyDelete
  61. Such SEOs give straightforward SEO administrations at low month to month rates. Website laten maken

    ReplyDelete
  62. A do it without anyone's help web webpage design applies consummately for youthful experts who are simply beginning to learn stuff in business or attempting to reformat the current business that they are running. Webdesign Genk

    ReplyDelete
  63. I recently came across your blog and have been reading along. I thought I would leave my first comment. I don't know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often. Webdesign Antwerpen

    ReplyDelete
  64. I admire this article for the well-researched content and excellent wording. I got so involved in this material that I couldn’t stop reading. I am impressed with your work and skill. Thank you so much. Webdesign bureau

    ReplyDelete
  65. Thanks for taking the time to discuss this, I feel strongly that love and read more on this topic. If possible, such as gain knowledge, would you mind updating your blog with additional information? It is very useful for me. Webdesign

    ReplyDelete
  66. A very awesome blog post. We are really grateful for your blog post. You will find a lot of approaches after visiting your post. Webdesign

    ReplyDelete
  67. Thanks for the blog filled with so many information. Stopping by your blog helped me to get what I was looking for. Now my task has become as easy as ABC. testbank

    ReplyDelete
  68. I also wrote an article on a similar subject will find it at write what you think. more …

    ReplyDelete
  69. There are some web designers who charge a lot of money for their services and then there are some who have very reasonable rates. Make sure you know how to find the one that you are looking for. Lehigh Valley WordPress Experts

    ReplyDelete
  70. Technology (from Greek τî­χνη, techne, "workmanship, expertise, shrewd of hand"; and - λογî¯α, - logia[1]) is the making, alteration, utilization, and information on instruments, machines, strategies, artworks, frameworks, and techniques for association, to tackle an issue, improve a previous answer for an issue, accomplish an objective, handle an applied information/yield connection or play out a particular capacity. remote team todo list

    ReplyDelete
  71. In the field of SEO business, the paces of profits are promising. Webdesign-seo-antwerpen.be

    ReplyDelete
  72. I admire this article for the well-researched content and excellent wording. I got so involved in this material that I couldn’t stop reading. I am impressed with your work and skill. Thank you so much. pay monthly web design

    ReplyDelete
  73. Thanks for sharing the post.. parents are worlds best person in each lives of individual..they need or must succeed to sustain needs of the family. other sites like fiverr

    ReplyDelete
  74. Wow, happy to see this awesome post. I hope this think help any newbie for their awesome work. By the way thanks for share this awesomeness from Hostinger review

    ReplyDelete
  75. Many of you may be interested in a career as web designer, but you might not have any idea where to start. What you study is important because it sets the tone for your future. Being a designer means you have a good grasp of certain skills that are specific to the field, such as software, principles and techniques that are standard in the industry. Having excellent visual skills like layout, typography, colour and formatting will give you a great head start on the road to becoming a web designer. Web Development Company

    ReplyDelete
  76. A professional design firm can produce websites that work as expected in all the different browsers and devices that access it. Web Design Manchester

    ReplyDelete
  77. nice post, keep up with this interesting work. It really is good to know that this topic is being covered also on this web site so cheers for taking time to discuss this! click to visit

    ReplyDelete
  78. Outstanding article! I want people to know just how good this information is in your article. Your views are much like my own concerning this subject. I will visit daily your blog because I know. It may be very beneficial for me. blog

    ReplyDelete
  79. Yes i am totally agreed with this article and i just want say that this article is very nice and very informative article.I will make sure to be reading your blog more. You made a good point but I can't help but wonder, what about the other side? !!!!!!Thanks Web Design Bangkok

    ReplyDelete
  80. This is just the information I am finding everywhere. Thanks for your blog, I just subscribe your blog. This is a nice blog.. what is an aae file, what are aae files

    ReplyDelete
  81. This is a truly good site post. Not too many people would actually, the way you just did. I am really impressed that there is so much information about this subject that have been uncovered and you’ve done your best, with so much class. If wanted to know more about green smoke reviews, than by all means come in and check our stuff. körkort online

    ReplyDelete
  82. I am always searching online for articles that can help me. There is obviously a lot to know about this. I think you made some good points in Features also. Keep working, great job!
    top article

    ReplyDelete
  83. Utilizing the verbal exchange is so viable.HispeedLaser

    ReplyDelete
  84. I read that Post and got it fine and informative. PCB assembly

    ReplyDelete

  85. Nice post. I used to be checking constantly this blog and I am impressed! Extremely useful info particularly the ultimate section 🙂 I take care of such information a lot. I was seeking this certain information for a long time. Thank you and best of luck.
    a thing of beauty is a joy forever

    ReplyDelete
  86. I high appreciate this post. It’s hard to find the good from the bad sometimes, but I think you’ve nailed it! would you mind updating your blog with more information? Website Hosting

    ReplyDelete
  87. I got too much interesting stuff on your blog. I guess I am not the only one having all the enjoyment here! Keep up the good work. onohosting

    ReplyDelete
  88. Responsive web site designers feel that their clients'website pages ought to be accessible to every visitor, giving them an optimal experience, regardless of the device they using. website design melbourne

    ReplyDelete
  89. Good post but I was wondering if you could write a litte more on this subject? I’d be very thankful if you could elaborate a little bit further. Appreciate it! https://hostinglelo.in/

    ReplyDelete
  90. Thanks for the blog loaded with so many information. Stopping by your blog helped me to get what I was looking for. https://onohosting.com/

    ReplyDelete
  91. Wow, excellent post. I'd like to draft like this too - taking time and real hard work to make a great article. This post has encouraged me to write some posts that I am going to write soon. small capsule lift for home price in india

    ReplyDelete
  92. I got too much interesting stuff on your blog. I guess I am not the only one having all the enjoyment here! Keep up the good work. 토토사이트

    ReplyDelete
  93. Great post, you have pointed out some fantastic points , I likewise think this s a very wonderful website. Belgravia Ace Showflat

    ReplyDelete
  94. Hey what a brilliant post I have come across and believe me I have been searching out for this similar kind of post for past a week and hardly came across this. Thank you very much and will look for more postings from you. indian visa for british citizens

    ReplyDelete
  95. If you are a fan of wrestling, you must have always wondered why wrestlers are either bald or have long hair. There are multiple wrestlers available out there but if you are a fan of the ones with long hair, you can read through this article as we are sharing information about Top WWE Wrestlers With Long Hair. So, are you ready to know more about these wrestlers!

    ReplyDelete
  96. Nice post. I was checking constantly this blog and I’m impressed! Extremely useful info specially the last part I care for such information a lot. I was seeking this certain info for a long time. Thank you and good luck. 먹튀사이트

    ReplyDelete
  97. I got what you mean , thanks for posting .Woh I am happy to find this website through google. Server mieten

    ReplyDelete
  98. This is actually the kind of information I have been trying to find. Thank you for writing this information. pii-email

    ReplyDelete
  99. The way to being a decent web engineer isn't the advances that you use, however the prescribed procedures that you follow. As advances go back and forth in our extremely quick industry those prescribed procedures will remain, or possibly develop. As an engineer assuming you have a decent establishing, you can move with the occasions and advancements reasonably without any problem. facebook marketing packages

    ReplyDelete
  100. The article is very nice, thank you for sharing it! I'm not fully through yet (it is extremely long) but it seems well researched and detailed. talk to astrologer online.
    on demand service app development

    ReplyDelete
  101. Thus the technology can enable a finer division of labour among countries, which in turn affects the relative demand for various skills in each nation. gadget review website

    ReplyDelete
  102. A good web development company should be writing automated tests (integration tests, unit-tests etc) for all their code, both front-end and back-end. https://www.sandeepmehta.co.in/affordable-seo-services-delhi/

    ReplyDelete
  103. In these difficult circumstances, robots are needed to gather data about their environmental factors to stay away from hindrances. To dive more deeply into the key and basic components of versatile robots, read on.patent on AUTONOMOUS ROBOTS

    ReplyDelete
  104. Budget assets for however much quality that you can manage for the underlying turn of events and dispatch of your custom CMS web design.
    https://onohosting.com/

    ReplyDelete
  105. Nice knowledge gaining article. This post is really the best on this valuable topic. 현금바둑이

    ReplyDelete
  106. This is titanic, clearing it will when in doubt be epic with the objective that you can take a gander at the going with site: https://zetamatic.com/downloads/checkout-address-autofill-for-woocommerce-pro/

    ReplyDelete
  107. i am always looking for some free stuffs over the internet. there are also some companies which gives free samples. website designer sydney

    ReplyDelete
  108. Great job here on. I read a lot of blog posts, but I never heard a topic like this. I Love this topic you made about the blogger's bucket list. Very resourceful. cheap website designer sydney

    ReplyDelete
  109. I personally use them exclusively high-quality elements : you will notice these folks during: https://codicipromo.info/is-lasik-surgery-permanent/

    ReplyDelete
  110. Digital marketing is essential for every business that wants to survive on the online marketplace; the Digital Marketing Service gives you the best tools and techniques which help you to increase your visibility in the online marketplace.

    ReplyDelete
  111. Very interesting blog. Alot of blogs I see these days don't really provide anything that I'm interested in, but I'm most definately interested in this one. Just thought that I would post and let you know. Denver Web Design

    ReplyDelete
  112. The article looks magnificent, but it would be beneficial if you can share more about the suchlike subjects in the future. Keep posting . jocial

    ReplyDelete
  113. Independent robots can play out any undertaking with exactness and high proficiency. They are robotized since they don't need any sort of control by means of people. Mechanical technology is beginning to run the world by advancements becoming on an everyday premise.robotic surface coverage technologies and patents

    ReplyDelete
  114. You made such an interesting piece to read, giving every subject enlightenment for us to gain knowledge. Thanks for sharing the such information with us to read this... hostgator black friday deals

    ReplyDelete
  115. mmm.. good to be here in your article or post, whatever, I think I should also work hard for my own website like I see some good and updated working in your site.
    crowdfunding white label

    ReplyDelete
  116. your content is very inspiring and appriciating I really like it please visit my site for Satta King Result also check Satta king 24X7 and also check sattaking and for quick result check my site Satta matka and for super fast result check Satta king

    ReplyDelete
  117. Fortunately, social media recent fads have acted the hero during this pandemic. i loved this

    ReplyDelete
  118. The content is utmost interesting! I have completely enjoyed reading your points and have come to the conclusion that you are right about many of them. You are great, and your efforts are outstanding! React.Js Support

    ReplyDelete
  119. I am impressed by the information that you have on this blog. It shows how well you understand this subject. diseñador de páginas web

    ReplyDelete
  120. Your articles are inventive. I am looking forward to reading the plethora of articles that you have linked here. Thumbs up! 승인전화없는 토토사이트

    ReplyDelete
  121. There are so many web designers and web design companies available online today for merchants to use as resources for their ecommerce needs, choosing the right one can sometimes be a difficult decision. competitors pricing

    ReplyDelete
  122. Excellent article. Very interesting to read. I really love to read such a nice article. Thanks! keep rocking. 먹튀사이트

    ReplyDelete
  123. The web agency ought to have the option to make extraordinary and catchphrase rich substance so your website would build its rankings with web search tools.webagenturessen.de

    ReplyDelete
  124. You there, this is really good post here. Thanks for taking the time to post such valuable information. Quality content is what always gets the visitors coming. Cheap web design

    ReplyDelete
  125. Really enjoyed this post. Thanks Again. Want more.shopify singapore company

    ReplyDelete
  126. Everything has its value. Thanks for sharing this informative information with us. GOOD works! 오피

    ReplyDelete
  127. Whether you're a local business or a global software development firm, generating leads may be your main goal for pay per click advertising. Visit

    ReplyDelete
  128. Pretty good post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog posts. Any way I'll be subscribing to your feed and I hope you post again soon. Big thanks for the useful info. www.methodikzentrum.com

    ReplyDelete
  129. We have sell some products of different custom boxes.it is very useful and very low price please visits this site thanks and please share this post with your friends. 먹튀검증

    ReplyDelete
  130. It’s really a great and useful piece of information. I am happy
    that you shared this useful info with us. Please stay us up
    to date like this. Thanks for sharing. besthyiptemplate

    ReplyDelete
  131. I likewise use what I call my "web design arranging worksheet". MavericksMedia

    ReplyDelete
  132. I read that Post and got it fine and informative. 토토사이트

    ReplyDelete
  133. Great articles and great layout. Your blog post deserves all of the positive feedback it’s been getting. בקשה לויזה מקוונת לקנדה

    ReplyDelete
  134. Thanks for sharing this quality information with us. I really enjoyed reading. Will surely going to share this URL with my friends. agencia de design

    ReplyDelete
  135. Nice to be visiting your blog again, it has been months for me. Well this article that i’ve been waited for so long. I need this article to complete my assignment in the college, and it has same topic with your article. Thanks, great share. empresa de web design

    ReplyDelete
  136. Positive site, where did u come up with the information on this posting?I have read a few of the articles on your website now, and I really like your style. Thanks a million and please keep up the effective work. agencia de design

    ReplyDelete
  137. Wondering how to buy real & active Instagram followers? The good news is Instagrammers are not alone in this case. In fact, many people on Instagram are constantly looking for ways to increase their followers. buy instagram followers

    ReplyDelete
  138. Great article Lot's of information to Read...Great Man Keep Posting and update to People..Thanks click into> computer technicians

    ReplyDelete
  139. I just got to this amazing site not long ago. I was actually captured with the piece of resources you have got here. Big thumbs up for making such wonderful blog page! amazon dropshipping service

    ReplyDelete
  140. Blockchain kya hai-Know What Is blockchain
    RDP Server kya Hai



    Device Home Delivery: The large majority of our orders are delivered by our courier partners within 3-5 working days. Jio Sim Home Delivery- see how to order jio sim from home. If the estimated delivery date falls on a Sunday, or a public/local holiday, your order will be delivered on the following working day.



    The Metaverse kya hai- know what is metaverse. is a massively scaled and interoperable network of real-time rendered 3D virtual worlds which can be experienced synchronously and persistently by an effectively unlimited number of users with an individual sense of presence, and with continuity of data, such as identity, history, entitlements, objects


    Also known as the decentralized web, Web 3.0 kya hai is the third version of the Internet, which is an improvement over the current Web 2.0 Internet. ... However, these data and contents are largely controlled by a small group of tech giants including, Amazon, Apple, Meta, Microsoft and Google in the current Web 2.0 stage.

    ReplyDelete
  141. NFT in Hindi-An NFT, which stands for a non-fungible token, is a unique unit of data employing technology that allows digital content.
    NFT Kya HaiAn NFT, which stands for a non-fungible token, is a unique unit of data employing technology that allows digital content.

    ReplyDelete
  142. YouStable Cheap web hosting renders you added flexibility, maximum control, and top customer support you in your business goal at an affordable cost.

    ReplyDelete
  143. No doubt this is an excellent post I got a lot of knowledge after reading good luck. Theme of blog is excellent there is almost everything to read, Brilliant post. app development company

    ReplyDelete
  144. Any little opening additionally ought to be filled rapidly to forestall bothers. Mobile Alabama iphone repair shop near me

    ReplyDelete
  145. Very efficiently written information. It will be beneficial to anybody who utilizes it, including me. Keep up the good work. For sure i will check out more posts. This site seems to get a good amount of visitors. customer service technical support

    ReplyDelete
  146. This is such a great resource that you are providing and you give it away for free. I love seeing blog that understand the value of providing a quality resource for free. Black satta king

    ReplyDelete
  147. How much is a virtual address?
    How Much Does A Virtual Address Cost? Every service is a little bit different, but typically the cost for a virtual address ranges from $9.95 to $35 per month. Keep in mind that a virtual address can come with a series of bells and whistles that beef up the total cost.

    straitsvo

    ReplyDelete
  148. I definitely enjoying every little bit of it. It is a great website and nice share. I want to thank you. Good job! You guys do a great blog, and have some great contents. Keep up the good work. Disawar satta result

    ReplyDelete
  149. The occupation of a PC specialist, as a great many people might think, is anything but a simple one. look here

    ReplyDelete
  150. The advances in computing and miniaturization technologies have made possible an increasing use of unmanned devices to do routine work once done by man. Most repetitive precision and rule-based work can now be automated using sophisticated robotics. depalletizing robot

    ReplyDelete
  151. They may be professional, have a notable team and did an exceptional process with my office recovery! web design agencies in nyc

    ReplyDelete
  152. Interesting and interesting information can be found on this topic here profile worth to see it. Printed Circuit Board

    ReplyDelete
  153. The Web lets us market our services and products any place in the Earth, but to be able to actually earn a sale, we have to set a relationship that generates a sufficient amount of trust, confidence, loyalty and passion. Environmentally-friendly web hosting is getting more and more popular for business web sites appearing to implement an eco-policy. web design dubai

    ReplyDelete
  154. I am definitely enjoying your website. You definitely have some great insight and great stories. 먹튀검증사이트 베그박스

    ReplyDelete
  155. Interesting and interesting information can be found on this topic here profile worth to see it
    바로가기

    ReplyDelete
  156. Thank you very much for this useful article. I like it. Web Design Melbourne

    ReplyDelete
  157. This is one awesome blog article. Really looking forward to read more. Great.
    Digital Agency London

    ReplyDelete
  158. La formation à la relation client est un processus par lequel les entreprises forment leurs employés à interagir avec les clients d'une manière qui donne une image positive de l'entreprise et laisse le client satisfait. La formation à la relation client couvre généralement des sujets tels que le service client, la vente et la communication. L'objectif de la formation aux relations avec la clientèle est d'aider les employés à comprendre l'importance de fournir un excellent service à la clientèle et de leur donner les outils dont ils ont besoin pour y parvenir. En proposant une formation aux relations avec la clientèle, les entreprises peuvent améliorer leurs résultats en s'assurant que leurs employés sont en mesure de servir leurs clients de manière efficace et effective. relation client

    ReplyDelete
  159. This is one awesome blog article. Really looking forward to read more. Great. mod detail

    ReplyDelete
  160. Would defining the Cookie twice lead to an error? Josh @ Marketing the Change Liverpool

    ReplyDelete
  161. สำหรับผู้ที่ชื่นชอบภาพยนตร์ และผู้ชมทุกท่าน ที่ชื่นชอบ หนังออนไลน์ฟรี ซีรีย์ที่ชื่นชอบในการรับชมภาพยนตร์ ซีรีย์ ดูซีรีย์ออนไลน์ อัพเดทใหม่ตลอดทั้งเดือน

    ReplyDelete

  162. Saqibmahmoodgt is a heavy equipment rental agency in Abu Dhabi that provides material lifting solutions.

    ReplyDelete
  163. This is a great article thanks for sharing this informative information. I will visit your blog regularly for some latest post. If anybody need details about
    white label website builder

    ReplyDelete
  164. The significant components of your website can be pulled up on a PDA and show up as a completely utilitarian form of the first, complete with all the utility you'd propose to clients on a PC or work station. On the off chance that you neglect to give a dynamic encounter like this for your guests they won't stay nearby, they'll essentially click away and complete the activity or buy on an opponent site.
    hip pocket designs

    ReplyDelete
  165. You may conduct a web search and contrast the costs and services provided by various companies if you're looking for a cheap SMM panel. While some SMM panels may have inexpensive pricing, they may also provide low-quality or phoney involvement, which can eventually hurt your social media presence.

    ReplyDelete
  166. It's important to use test banks as a supplement to other study materials.

    ReplyDelete
  167. The American Academy of Pediatrics discourages screen time for children under two years old, but the NAEYC/Fred Rogers position statement takes. Media Tech

    ReplyDelete
  168. "Gadgets have transformed the way we work. Mobile devices and productivity apps have made remote work and collaboration seamless." mydigitalinternet

    ReplyDelete
  169. Thank you for sharing the fantastic articles and list. Please continue posting more content like this to inspire and influence us.

    Buy 10000 Instagram followers

    ReplyDelete
  170. It’s really a great and useful piece of information.

    ReplyDelete
  171. Astronomy focuses on celestial objects and phenomena beyond Earth, deepening our understanding of the universe. p.n.t.

    ReplyDelete
  172. Explore popular front-end frameworks like React, Angular, or Vue.js, and back-end frameworks like Express or Ruby on Rails. Cork SEO Service

    ReplyDelete
  173. Online fax services are user-friendly, making them accessible even to non-tech-savvy individuals.
    Fax Services Hub

    ReplyDelete
  174. Ready to take your business to the next level? It's time to face the hidden truth: without leads, there are no sales. That's where #LeadsMails comes in. Our targeted email marketing solutions will help you reach your ideal customers and boost conversions. Let's make it happen! 💼💰 #marketing

    ReplyDelete
  175. Stop wasting time with outdated marketing tactics. The truth is, email lists are still a powerful tool for crypto businesses. Boost your reach and engagement with our targeted #cryptoemaillists. Simple, effective, game-changing.

    ReplyDelete
  176. Ready to discover the untapped potential of your business? Look no further! Introducing Latest Leads List - the ultimate resource for targeted leads and increased sales. Say goodbye to wasted time and hello to success. #LatestLeadsList #TargetedLeads #IncreasedSales

    ReplyDelete
  177. Ready to uncover the hidden truth about #Forex trading? Look no further than #ForexDatabases - your one-stop shop for accurate and reliable market data. Simplify your trades with our comprehensive database, now available at your fingertips.

    ReplyDelete
  178. Ready to take your business to the next level? 💼💰 Discover the untapped potential of lead generation with @quickleadsltd. 🚀 Let us help you unlock hidden revenue streams and surpass your competition. #leadgeneration #businessgrowth #success

    ReplyDelete
  179. Are you tired of struggling to generate leads for your business? The truth is, without a solid lead generation strategy, success will always be out of reach. But with #Leadsmunch, you can finally unlock the potential of your business and watch it grow like never before! #leadgeneration #marketing

    ReplyDelete
  180. Mobile apps like MyFitnessPal and Nike Training Club provide users with access to a wealth of exercise routines, nutritional information, and the ability to connect with a community of like-minded individuals.
    Read our content

    ReplyDelete
  181. It is a amazing information i like this contact.

    ReplyDelete
  182. Unleash the power of digital learning with @thedigitallearners! Get access to endless knowledge, interactive tools, and a community of fellow learners. Take your education into your own hands #digitallearning #educationrevolution #neverstoplearning

    ReplyDelete
  183. nice and thanks for share article , helped me

    ReplyDelete
  184. Discover the hidden truth behind successful forex trading with our exclusive email list from forexdatabases.com. Gain access to expert insights, market trends, and valuable resources to take your trades to the next level.

    ReplyDelete
  185. Evergreen webinars provide ongoing value to your audience. www.trevortynes.ca/website-design-sarnia/

    ReplyDelete
  186. Behind every successful student lies a hidden truth - they've aced their exams with the help of a Test Bank. Don't let all your hard work go to waste, get access to thousands of practice questions and boost your grades! #TestBank #StudySmart 📚✨🎓 https://testbank.zip/

    ReplyDelete
  187. Are you tired of studying for hours only to find out the nursing test questions are nothing like what you prepared for? Say goodbye to that struggle with our comprehensive and updated nursing test bank. Get the edge you need to succeed in your exams! https://etestbank.net/nursing-test-bank/

    ReplyDelete
  188. Behind every successful student, there's a test bank. The ultimate study tool that holds the key to acing exams 💯 Say goodbye to stress and hello to top grades with our comprehensive collection of practice questions! https://testbanks.ltd/

    ReplyDelete
  189. Stressed about upcoming nursing exams? 🩺💉 Don't worry, we've got you covered with our comprehensive and reliable test bank. Boost your confidence and ace those tests! https://www.nursingtestbankltd.com/

    ReplyDelete
  190. Behind every successful nurse lies a mountain of test questions conquered. But what if we told you there's an easier way? Introducing the Nursing Test Bank - your secret weapon for acing exams and saving time. Say goodbye to stress and hello to success! https://nursingtestbank.ltd/

    ReplyDelete
  191. This comment has been removed by the author.

    ReplyDelete
  192. SERP features like featured snippets impact click-through rates. SEO Knoxfield

    ReplyDelete
  193. On this subject internet page, you'll see my best information, be sure to look over this level of detail. web designer in atlanta

    ReplyDelete