Free Essay

Hello

In:

Submitted By rajanbhalwal
Words 2181
Pages 9
LOVELY PROFESSIONAL UNIVERSITY

HOME WORK – I
DOA: 9/7/2012 DOS: 9/17/2012

-------------------------------------------------------------------------------------------------------------------

Assignment

COURSE- Modern Web Programming Tools and Techniques-I

COURSE CODE- CAP618T

SUBMITTED BY: SUBMITTED TO:

Anil Kumar MANDEEP KAUR

Roll-A11

Reg. - 11009839

Sec- D1R05

Q:1 Take a JavaBean Object named “Profession” with properties domain and expertise. Show the use of all 4 scope types on this object.

Ans:

Profession.jsp file

package pk;

public class profession

{

int domain;

int expertise;

public int getdomain()

{

return domain;

}

public void setdomain(int a)

{

this.domain=a;

}

public int getexpertise()

{

return expertise;

}

public void setexpertise(int b)

{

this.expertise=b;

}

}

1) Index.jsp file(for session Object)

2) Index.jsp file(for Page Object)

3) Index.jsp file(for Request Object)

4) Index.jsp file(for Application Object)

Q:2 Discuss and Demonstrate the use of all page directive attributes. Give minimum 2 separate types of examples for each attribute, to make it clear that how that attribute is effecting output.

Ans:

Page directive attributes are:

|Attribute |Purpose |
|buffer="none|size in kb" |This attribute determines whether the output stream is buffered. The default value is 8KB.|
|autoFlush="true|false" |This attribute determines whether the output buffer will be flushed automatically, or |
| |whether it will raise an exception when the buffer is full. The default is true, which |
| |states that the buffer should be flushed automatically. |
|contentType="ctinfo" |Defines the character encoding scheme. |
|errorPage="error_url" |This attribute represents the relative URL to the JSP page that will handle exceptions. |
|isErrorPage="true|false" |This attribute states whether or not the JSP page is an |
| |errorPage. The default is false. |
|Extends=” className" |This attribute defines the parent class that the JSP |
| |generated servlet will extend from. |
|Import=”importlist” |This attribute defines the list of packages that will be |
| |available to this JSP. It will be a comma-separated list of package names. |
|info="text" |This attribute represents information about the JSP pagethat can be accessed by the page's|
| |Servlet.getServlet Info() method. |
|isThreadSafe="true|false" |This attribute tells the JSP engine that this page can service more than one request at a |
| |time. By default this value is true; if false, the SingleThreadModel is used. |
|Language=”scriptinglanguage” |This attribute tells the server what language will be used to compile the JSP file. |
| |Currently Java is the only available language. |
|Session=”true|false” |This attribute determines whether the session data will be available to this page. The |
| |default is true. |
|isELIgnored |Specifies whether or not EL expression within the JSP page will be ignored. |
|isScriptingEnabled |Determines if scripting elements are allowed for use. |

Example:

The buffer Attribute:
The buffer attribute specifies buffering characteristics for the server output response object. We may code a value of "none" to specify no buffering so that all servlet output is immediately directed to the response object or we may code a maximum buffer size in kilobytes, which directs the servlet to write to the buffer before writing to the response object. 1) To direct the servlet to write output directly to the response output object, use the following:
| |

2) Use the following to direct the servlet to write output to a buffer of size not less than 8 kilobytes:
| |
| |
|The autoFlush Attribute: |
|The autoFlush attribute specifies whether buffered output should be flushed automatically when the buffer is filled, or whether|
|an exception should be raised to indicate buffer overflow. A value of true (default) indicates automatic buffer flushing and a |
|value of false throws an exception. The following directive causes the servlet to throw an exception when the servlet's output |
|buffer is full: |
| |
| |
| |
|This directive causes the servlet to flush the output buffer when full: |
| |
| |
|Usually, the buffer and autoFlush attributes are coded on a single page directive as follows: |
| |
| |
|The contentType Attribute: |
|The contentType attribute sets the character encoding for the JSP page and for the generated response page. The default content|
|type is text/html, which is the standard content type for HTML pages. If you want to write out XML from your JSP, use the |
|following page directive: |
| |
| |
|The following statement directs the browser to render the generated page as HTML: |
| |
| |
|The errorPage Attribute: |
|The errorPage attribute tells the JSP engine which page to display if there is an error while the current page runs. The value |
|of the errorPage attribute is a relative URL. The following directive displays MyErrorPage.jsp when all uncaught exceptions are|
|thrown: |
| |
| |
|The isErrorPage Attribute: |
|The isErrorPage attribute indicates that the current JSP can be used as the error page for another JSP. The value of |
|isErrorPage is either true or false. The default value of the isErrorPage attribute is false. |
| |
| |
|The extends Attribute: |
|The extends attribute specifies a superclass that the generated servlet must extend. |
| |
| |
|The import Attribute: |
|The import attribute serves the same function as, and behaves like, the Java import statement. The value for the import option |
|is the name of the package you want to import. |
|To import java.sql.*, use the following page directive: |
| |
| |
|To import multiple packages you can specify them separated by comma as follows: |
| |
| |
|The isThreadSafe Attribute: |
|The isThreadSafe option marks a page as being thread-safe. By default, all JSPs are considered thread-safe. If you set the |
|isThreadSafe option to false, the JSP engine makes sure that only one thread at a time is executing your JSP. |
|The following page directive sets the isThreadSafe option to false: |
| |
| |
|The language Attribute: |
|The language attribute indicates the programming language used in scripting the JSP page. |
|For example, because you usually use Java as the scripting language, your language option looks like this: |
| |
| |
|The session Attribute: |
|The session attribute indicates whether or not the JSP page uses HTTP sessions. A value of true means that the JSP page has |
|access to a builtin session object and a value of false means that the JSP page cannot access the builtin session object. |
|Following directive allows the JSP page to use any of the builtin object session methods such as session.getCreationTime() or |
|session.getLastAccessTime(): |
| |
| |
|The isScriptingEnabled Attribute: |
|The isScriptingEnabled attribute determines if scripting elements are allowed for use. The default value (true) enables |
|scriptlets, expressions, and declarations. If the attribute's value is set to false, a translation-time error will be raised if|
|the JSP uses any scriptlets: |
| |
| |
| |
| |

Q:3 Create a self description form with at least 5 detail fields. Write a program which handles an error of unfilled information in any of the text boxes. Also 2 out of these 5 fields have a minimum character limit. If user enters characters less than that of limit, then exception to be thrown and handled.

Ans:

1) Form.jsp

To create a form for processing..

JSP Page

Login form

First name:

Last name:

Age:  

Phone no:

Password:

Email_Id=

Output:

[pic]

Validation that are used are:

1) First Name –It is required field and it should not be empty.

2) Phone no- phone no should not be less than 10 digits.

3) Password - Password should not be less than 3 character.

2) Process.jsp

This form contain the processing part.

JSP Page

First Name:

Last Name:

Password:

Email_id:

Phone no:

3) Exception.jsp

This form is used to inform user about the exception that occurred in the program.

JSP Page

Error:

Q:4 Implement the subclass and superclass concept in JSP by taking a superclass “calculate”. The values of calculation are to be accepted from user using a form. Perform at least 6 calculations except plain arithmetic calculations. And use these methods in sub class.

Ans 4:

1) Servlet Code(Base class):

package anil;

import javax.servlet.*;

import java.io.IOException;

import java.io.PrintWriter;

import javax.servlet.ServletException;

import javax.servlet.annotation.WebServlet;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import javax.servlet.http.*;

import javax.servlet.jsp.HttpJspPage;

import java.io.*;

import java.util.*;

/**

*

* @author Anil-PC

*/

@WebServlet(name = "calculate", urlPatterns = {"/anil"})

public abstract class calculate extends HttpServlet implements HttpJspPage

{

private ServletConfig config;

int a,b,c;

final public void init(ServletConfig config)

throws ServletException {

this.config = config;

jspInit();

}

final public ServletConfig getServletConfig() {

return config;

}

final public void service(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

_jspService(request, response);

}

abstract public void _jspService(HttpServletRequest request,

HttpServletResponse response)

throws ServletException, IOException;

final public void destroy() {

jspDestroy();

}

public int areasquare(HttpServletRequest request) {

a=Integer.parseInt(request.getParameter("t1"));

return a*a;

}

public int rectangle(HttpServletRequest request) {

b=Integer.parseInt(request.getParameter("t2"));

c=Integer.parseInt(request.getParameter("t3"));

int r;

r=1/2(b*c)

return b ;

}

public int circle(HttpServletRequest request) {

a=Integer.parseInt(request.getParameter("t1"));

int r;

r=3.14*a*a;

return a;

}

public double division(HttpServletRequest request) {

a=Integer.parseInt(request.getParameter("t1"));

b=Integer.parseInt(request.getParameter("t2"));

return a/b;

}

public double moduls(HttpServletRequest request) {

a=Integer.parseInt(request.getParameter("t1"));

b=Integer.parseInt(request.getParameter("t2"));

int d=a%b;

return d;

}

public String getServletInfo() {

return new String("Anil");

}

}

2) Form code:

[pic]

3) form process(Derived class):

Operation that are used :

1) Area of square

2) Area of rectangle

3) Area of circle

4) Division

5) Modulus

Q:5 Discuss Working, features, advantages and disadvantage of Tow-tier and Three Tier Database Access Models.

Working:

Two tier architecture means:
Client server application. Client acts as Front End and Server acts as Backend like databases.
The two-tier architecture is like client server application. The direct communication takes place between client and server. There is no intermediate between client and server.
Two tier architectures consist of three components distributed in two layers: client (requester of services) and server (provider of services). The three components are: 1) User System Interface (such as session, text input, dialog, and display management services) 2) Processing Management (such as process development, process enactment, process monitoring, and process resource services) 3) Database Management (such as data and file services)
So, in client application the client writes the program for saving the record in SQL Server and thereby saving the data in the database.

[pic]

Three tier Architecture Means:
Three tier architecure means N tier architecture like Yahoo , gmail, and or Web Applications. Having Number of Users or Customers or Clients.

[pic]

Three tier architecture having three layers. They are 1. Client layer 2. Business layer 3. Presentation layer
Client layer:
Here we design the form using textbox, label,button,etc.

Business layer:
Business tier provides the business services. This tier contains the business logic and the business data. All the business logic is centralised into this tier as opposed to 2-tier systems where the business logic is scattered between the front end and the backend. The benefit of having a centralised business tier is that same business logic can support different types of clients like browser, WAP, other stand-alone applications etc.
| |
| |

Presentation layer:
Presentation tier encapsulates the presentation logic required to serve clients. A Servlet or JSP in the presentation tier intercepts client requests, manages logons, sessions, accesses the business services, and finally constructs a response, which gets delivered to client.

Advantages and disadvantages of three-tier:

1) The three tier software architecture emerged to overcome the limitations of the two tier architecture.

2) The third tier is between the user interface and the data management components. This middle tier provides process management where business logic and rules are executed and can accommodate hundreds of users by providing functions such as queuing, application execution, and database staging.

3) The three tier architecture is used when an effective distributed client/server design is needed that provides increased performance, flexibility, maintainability, reusability, and scalability, while hiding the complexity of distributed processing from the user.

4) The three tier architecture is used when an effective distributed client/server design is needed that provides increased performance, flexibility, maintainability, reusability, and scalability, while hiding the complexity of distributed processing from the user.

5) A three tier distributed client/server architecture includes a user system interface top tier where user services reside.

Advantages and disadvantages of two-tier:

1) The application is expected to support a limited number of users (e.g. no more than a few hundred)

2) The application is networked and databases are "local" (i.e. not over WAN or Internet)

3) A normal level of security is required (data is not overly sensitive)

4) Data access from outside applications is minimal

5) The most important limitation of the two-tier architecture is that it is not scalable, because each client requires its own database session. The two tier design will scale-up to service 100 users on a network

6) Availability The assurance that a service/resource is always accessible. This aspect of a system is often coupled with measures of its performance. (time available) / (time possible) Example – 201 seconds down/week. 7) Capacity The ability to run a number of jobs per unit time. 8) Extensibility The ability to economically modify or add functionality. 9) Flexibility The ability to support architectural and hardware configuration changes.The ability to change architecture to meet new requirements in a cost-efficient manner.

Similar Documents

Premium Essay

Hello

...hi For other uses, see Hello (disambiguation). "Hallo" redirects here. For other uses, see Hallo (disambiguation). Hello is a salutation or greeting in the English language. It is attested in writing as early as the 1860s.[1] Contents   [hide]  * 1 First use * 2 Etymology * 2.1 Telephone * 2.2 Hullo * 2.3 Hallo and hollo * 2.4 Cognates * 3 "Hello, World" computer program * 4 The Apple DOS HELLO program * 5 Perception of "Hello" in other nations * 6 See also * 7 References * 8 External links ------------------------------------------------- First use Hello, with that spelling, was used in publications as early as 1833. These include an 1833 American book called The Sketches and Eccentricities of Col. David Crockett, of West Tennessee,[2] which was reprinted that same year in The London Literary Gazette.[3] The word was extensively used in literature by the 1860s.[4] ------------------------------------------------- Etymology According to the Oxford English Dictionary, hello is an alteration of hallo, hollo,[5] which came from Old High German "halâ, holâ, emphatic imperative of halôn, holôn to fetch, used especially in hailing a ferryman."[6] It also connects the development of hello to the influence of an earlier form, holla, whose origin is in the French holà (roughly, 'whoa there!', from French là 'there').[7] As in addition to hello,halloo,[8] hallo, hollo, hullo and (rarely) hillo also exist as variants...

Words: 698 - Pages: 3

Premium Essay

Hello Kitty and Dear Daniel - Why They Appeal to Such Broad Segments in Asia.

...Happy Meal promotion by McDonalds in Singapore in 2000 where McD’s customers could buy a Hello Kitty or Dear Daniel doll for $2.60 Singapore dollars caused such a frenzy (and a ruckus too) that it has caught the interest of both the media, global marketers and academics alike. In the end, this Hello Kitty McToy promotion increased the interest and sales for McDonalds; but with a different consumer; and not the intended target group - the prepubescent girls and boys! The reasons for this unexpected and overwhelming appeal for this McToy campaign in Singapore and the rest of Asia can be postulated to the following. They are however divided into two categories – the first covering the Asiatic region in general; and secondly, specifically to the Singapore market only: A) Across Asia: i. The Growth, Charge and Impact of the Kawaii Concept: Kawaii is a key concept that characterizes the modern Japanese culture. Literary translated as “cute” in English or figuratively as “things that are desired”, this culture originated with the 15 to 18 year old girls in Japan. Soon, marketers and advertisers in the fashion, publishing and the cute-little-gadgets industries recognizing the wide potential and appeal of this niche segment began to leverage on it. As this market segment is typified by the characteristic “not how much they spend” but “it’s that they all buy the same things”, hot items (like Hello Kitty) when caught by the wave can easily reach 100% market penetration in weeks! In...

Words: 1349 - Pages: 6

Premium Essay

Wahooo

...meep blah blooop meep meep merrp merp hello hello hello hello heloo heloo hello hello hello hello hello hello hello my name I hello my name is hello my name is hello my name s hello my name is hello Helen erin jack fan fran san fran sisco Italy new york las angeles hello I hate English this is not fun yes it is not fun this sucks a lot yes it does I do not like this at all this smells like farts yes it does cuz English is a piece of poo and I hate it so much I would rather do math than this is hate this thank god im almost done with English this year meep blah blooop meep meep merrp merp hello hello hello hello heloo heloo hello hello hello hello hello hello hello my name I hello my name is hello my name is hello my name s hello my name is hello Helen erin jack fan fran san fran sisco Italy new york las angeles hello I hate English this is not fun yes it is not fun this sucks a lot yes it does I do not like this at all this smells like farts yes it does cuz English is a piece of poo and I hate it so much I would rather do math than this is hate this thank god im almost done with English this year meep blah blooop meep meep merrp merp hello hello hello hello heloo heloo hello hello hello hello hello hello hello my name I hello my name is hello my name is hello my name s hello my name is hello Helen erin jack fan fran san fran sisco Italy new york las angeles hello I hate English this is not fun yes it is not fun this sucks a lot yes it does I do not like this at all...

Words: 595 - Pages: 3

Free Essay

Sanrio Proyect

...franchisee’s stores with licensing or wholesale, we can say that the power of supplier brand its low inside the Sanrio factories around the world but high for the different stores that sell Sanrio Inc. products. The company is not limited to character promotion through their products but also through publishing and movie productions. The company also partners with various food establishments of which it also shares franchises. Sanrio has rights to Peanuts characters in Japan and owns an animatronics establishment known as the Kokoro Company, Ltd. whose most popular android is known as Actroid. Taiwan's second largest airlines, Eva Air, decided in October 2005 to use the Hello Kitty brand on flight routes between Taipei, Tokyo and Fukuoka. By paying Sanrio a franchisee fee, Eva Air has dedicated an entire Airbus A300-200 to the Hello Kitty brand and its cutie-like universe. The Power of Buyers The power of buyers is high. Since Sanrio Inc. produces its owns products, the potential buyers are franchisee stores. Inside these ones the main buyers are women from all ages and also men that buy items for women or for...

Words: 642 - Pages: 3

Premium Essay

Arts2213 Literature Review

...Japanese popular culture has been around for many years and is the leading wave of Asian popular culture. It includes a variety of media such as manga, anime, film and music. Japanese popular culture is also portrayed through physical forms such as products, celebrities, personalities, maid cafes and may others. SMAP is a Jpop boy band with immense popularity from Japan and is one form of Japanese popular culture. Darling-Wolf suggests that SMAP's popularity is due to its careful construction of appeal and masculinity. SMAP is not well-known for their talents in singing, but rather for depicting Japanese personalities. Darling-Wolf refers to SMAP members as 'life-sized' pop idols (Aoyagi) who personifies a typical Japanese boy or girl which allows audiences to relate to them well. This is supported by Yano's research which highlights that fans form emotional bonds and connections with celebrities due to their charisma and personalities. Darling-Wolf that SMAP is popular is due to its intertextuality from appearing in TV shows, movies, talk shows and many more media forms which allows fans to feel a proximity or closeness. Intertextuality allows SMAP to be able to portray their personalities better and reach out to more audiences, which enables them to connect with their audience. Darling-Wolf argues that SMAP's fame is highly due to its constructed appeal of masculinity, which creates the 'perfect female fantasy'. SMAP members portray pluralities of masculinities which involve...

Words: 1243 - Pages: 5

Premium Essay

Mar Comm

...1. Introduction In 2014, Hello Kitty will be celebrating its 40th birthday. And to celebrate this milestone, on 18th April 2014, McDonald’s Singapore announced that they will once again collaborate with Sanrio to launch a set of six Hello Kitty dolls named as Hello Kitty Bubbly World. In this latest series of collaboration, Hello Kitty will be dressed up as six of her friends. And they are, ‘Pompompurin’, ‘Osaru No Monichi’, ‘My Melody’, ‘Kerokerokeroppi’, ‘Bad Badtz-Maru’, and ‘Tuxedo Sam’. And furthermore, it is also announced that Singapore will be the first in the world to launch the Hello Kitty Bubbly World. 1.1 Target Audience In this new collaboration, the target audiences are, the toy collectors and fans of Hello Kitty. 1.2 Main Objective The main objective of this new collaboration is not only to celebrate Hello Kitty’s 40th Anniversary, but it is also aim to push the sales of McDonald’s Singapore. In doing so, both Sanrio and McDonald’s have employed the co-branding strategy. However, unlike previous years, where the plush toys are made available over the counter and delivery, for the first time, McDonald’s Singapore will introduce the online order system, partnering Singpost. In doing so, McDonald’s Singapore aim to decrease the amount of people queuing overnight for the plush toys and also the fracas that happened in the previous collaboration. The aim of this essay is to analyze the marketing communication effort of McDonald’s Singapore. 2. Pre-Launch...

Words: 1984 - Pages: 8

Free Essay

Final Marketing Plan

...MAN105- Principles of Marketing Final Marketing Plan December 12, 2010 Company: Sanrio Co. Ltd. I. Executive summary Hello Kitty was the name of a cartoon cat developed in 1974 by Sanrio Co. Ltd. (Sanrio), a Japanese company that sold character-branded goods in Japan and other parts of the world. Sanrio initially used the character to adorn petty merchandise like coin purses and pencil boxes targeted at small girls. However, after Hello Kitty became hugely popular, Sanrio extended the brand to a variety of other products. Sanrio Company, Ltd., based in Tokyo and with distribution throughout Japan and Southeast Asia, the Americas and Europe. In the Americas today, over 4,000 stores to sell Sanrio character merchandise. This includes Sanrio boutique stores Sanrio merchandise has many different kinds of categories including stationery, school supplies, bags, accessories, room décor, candy, and plush characters. The global toys and games market grew by 2.7% in 2008 to reach a value of $60.8 billion. In 2013, the global toys and games market is forecast to have a value of $69.1 billion, an increase of 13.7% since 2008. Sanrio’s marketing strategy is to raise the sale revenues in the increasing market condition as well as to maintain our loyal customers and attract more male customers; Sanrio will create different kinds of images of products to fit into different range of age, and repackage the old neutral characters such as Badtz-Maru (a male penguin), Keroppi(a frog), Shinkansen...

Words: 3792 - Pages: 16

Free Essay

Interview with Ned Kelly

...Ned Kelly is an infamous bushranger from Australia who is considered by some to be merely a cold-blooded killer and thief, while others consider him to be a hero. What is Ned Kelly is he a villain or hero? This interview will give young Ned another shot to prove himself right. Interviewer: Hello and welcome to news at when, when 1879.we are joined by the famous Ned Kelly himself. How are you Ned? Ned Kelly: Fine, thank you Interviewer: So please tell us Ned where and when you born? Ned Kelly: I was born in a shrub not far off Melbourne. Interviewer: How did you feel when your father died? Ned Kelly: It was a real sad moment knowing that there is absolutely no one to give you money to support the family with seven children and losing a member of the family. Interviewer: What were your emotions when returning from jail in 1874? Ned Kelly: Well there was mixed emotions rushing inside me first I was shocked then scared then sad. I realized that my dear sister had passed away ,my other sister married and my mum on the verge of getting married to some strange man I haven’t met .My world had gone up side down but I had to adapt to the new changes Interviewer: What were your intentions when saving the drowning boy? Ned Kelly: I wasn’t just doing so I would get a good name anyone would do that if they so someone dying. Interviewer: Why did you love horses so much? Ned Kelly: I loved my horses dearly because there were pretty my only friends growing up. Riding them made all...

Words: 461 - Pages: 2

Free Essay

Writing a Profile: My Friend Jenna

...number. I knock with force three times, and wait patiently. After about ten quick seconds, the door flies open and startles me a little. “Hey! Sorry my room is a little bit messy, I was gone all weekend, and I got back not too long ago” Jennah says. I explain to her that I totally understand, as I was gone all weekend too. I look past her a little bit as I am entering her dorm room. It is a little bit plain, and not equipped with much. As I look to my left at her bed, I do notice something that catches my interest: a Hello Kitty bed comforter. “No way! Jennah, I adore your comforter” I say excitedly. “Hello Kitty is the bomb” she agrees. I am not surprised at the fact that she has a comforter with a character popular among young elementary-aged girls. For the week that I’ve known her, she seemed very free-spirited, and young at heart. I observe her outfit and see something I, for some reason, did not notice when I first entered. She was wearing a Hello Kitty t-shirt. Accommodating her shirt was a pair of black cut-off shorts that looked like she may have chopped them into shorts herself. She was also wearing a necklace with a small metal skull, and few black and white rubber bracelets. The two most prominent things about her, however, were the two lip piercings (known as snake bites), and the blue shoulder-length hair. “So yeah, this is my dorm!” she exclaims in a uniquely...

Words: 1255 - Pages: 6

Premium Essay

Hello

...Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you? Hello how are you?...

Words: 1513 - Pages: 7

Premium Essay

Hello

...Hello. Skdjfhkd skjedfhwkeihf weijfo iej r oliejr oihe o ljfoijwefwlejhflkhl ksdhjfohefl f f f f f ff f f f f f f f f f f f f f f f f f f f f f f f f f f Jkhgfaegiu 2cpujr v Ri p3r v43ri pvo4t rvip4ujtoih4oithj ovi4tujh3oi4ujt v 4ihrjoi4jh tvoi43thuo4utjhoi4ujtroi rijgf lq I qo3i4ht oq 34 43rj34 tqj4toi4jflajernolifj 4 rtqlerjq rt q4t Qiuwh3r jriejn rjroemn eojr eorj jf ek iej eojf oiej p u32rj q erj vnurunfumql v ijrfnid r r r r r r r r r r rr Rhqikh4r rjh r 3 rrjru the the the the the the th e e beb ebe be be be be be be gebe bebe eb ebeb c ehy vjbnfbn kqwheruh werbkqer43r\\\\ Thast is all she wrote . Sejhkjehf c rhfieu oihef Just writin ghtis gortri vhjr hqrkth ijto3ihjt Hrfiuhrtnufjrtui frjfurn fhfurnvir fhello hello heloo hello hello hello hello Ejhue r r rh curnfur rjru rthe thet the the the theht eht a a a a a a a a a a a aa a a a a a a a aa a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a aa a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a...

Words: 252 - Pages: 2

Free Essay

Hello

...Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel Hello Hello Hel...

Words: 384 - Pages: 2

Premium Essay

Hello

...Hey hi hello First use Hello, with that spelling, was used in publications as early as 1833. These include an 1833 American book called The Sketches and Eccentricities of Col. David Crockett, of West Tennessee,[2] which was reprinted that same year in The London Literary Gazette.[3] The word was extensively used in literature by the 1860s.[4] Etymology According to the Oxford English Dictionary, hello is an alteration of hallo, hollo,[5] which came from Old High German "halâ, holâ, emphatic imperative of halôn, holôn to fetch, used especially in hailing a ferryman."[6] It also connects the development of hello to the influence of an earlier form, holla, whose origin is in the French holà (roughly, 'whoa there!', from French là 'there').[7] As in addition to hello, halloo,[8] hallo, hollo, hullo and (rarely) hillo also exist as variants or related words, the word can be spelt using any of all five vowels.[citation needed] Telephone The use of hello as a telephone greeting has been credited to Thomas Edison; according to one source, he expressed his surprise with a misheard Hullo.[9] Alexander Graham Bell initially used Ahoy (as used on ships) as a telephone greeting.[10][11] However, in 1877, Edison wrote to T.B.A. David, the president of the Central District and Printing Telegraph Company of Pittsburgh: Friend David, I do not think we shall need a call bell as Hello! can be heard 10 to 20 feet away. What you think? Edison - P.S. first cost of sender & receiver to...

Words: 288 - Pages: 2

Free Essay

Hello

...Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello kjwdkjajkdwdjkdkjdjkawdjawdjkwjkdwakjdajwdjwkdjwkadjdwkjw Hello ...

Words: 729 - Pages: 3

Free Essay

Hello

...Hello world Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to you Hello to...

Words: 275 - Pages: 2