A user arrives at a railway station that she has never visited before, carrying a PDA that is capable of wireless networking. Suggest how the user could be provided with information about the local services and amenities at that station, without entering the station’s name or attributes. What technical challenges must be overcome?

What will be an ideal response?


The user must be able to acquire the address of locally relevant information as automatically as possible. One
method is for the local wireless network to provide the URL of web pages about the locality over a local
wireless network.
For this to work: (1) the user must run a program on her device that listens for these URLs, and which gives
the user sufficient control that she is not swamped by unwanted URLs of the places she passes through; and
(2) the means of propagating the URL (e.g. infrared or an 802.11 wireless LAN) should have a reach that
corresponds to the physical spread of the place itself.

Computer Science & Information Technology

You might also like to view...

Documents written in SGML must be used on devices running the Unix operating system.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

There are many techniques for adding color to a black-and-white image to create a "colorized" effect.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

If the HTML form game has a text field named point in it, what is the proper way to set the text associated with point to 10?

a) game.point = "10" b) game.point.text = "10" c) game.point.caption = "10" d) game.point.value = "10"

Computer Science & Information Technology

What is the output of the following code?int *p;int x;x = 76;p = &x;*p = 43;cout << x << ", " << *p << endl;

A. 76, 76 B. 76, 43 C. 43, 76 D. 43, 43

Computer Science & Information Technology