VUsolutions Transferred to AchiKhasi.com

From December 2011, this blog www.VUsolutions.blogspot.com is transferred to http://achikhasi.com/vu/ . So, you may visit http://achikhasi.com/vu/ for latest study related help.

Back to home VUsolutions

VUsolutions Fans Club [join us for MORE solutions]

VUsolutions on Facebook

CS610 Assignment Solution

Saturday, November 24, 2012 Edit This


The first commercial application of ALOHA channels was launched in 1976 by Comsat General in the Marisat maritime satellite communications system. At about the same time Metcalfe working with a group from DEC, Intel and Xerox (the DIX Group) formulated an open Ethernet standard based on the Alto ALOHA network. Since 1983 ALOHA channels have been adopted for use in all major mobile telephone standards (1G, 2G and 3G) as the control channel and then for a variety of packet data channels integrated into these voice networks (e.g. GPRS and UMTS). ALOHA has also been adopted for use in a variety of protocols used in wired networks, CSMA/CD and CSMA/CA in single channel local area networks and DOCSIS for commercial cable networks.

.......................


Question 1 [5 Marks]
For each Ethernet standard given in the table write each name/value against the titles of the next three columns. 

Ethernet StandardsEthernet NameData RateCable Used
10BaseTTwisted pair Ethernet10 MbpsCategory 5
100BaseTFast Ethernet100 MbpsCategory 5E
1000BaseTGigabit Ethernet1 GbpsCategory 6

Question 2 [10 Marks]
Write appropriate answer against each technology/requirement.

TechnologiesAccess method used
Wireless LANCSMA/CA - Carrier Sense Multiple Access with Collision Avoidance
EthernetCSMA/CD: Carrier Sense Multiple Access / Collision Detection
Ring networksToken Passing
ALOHA-netCSMA/CD , CSMA/CA , DOCSIS
RequirementsThe best cable to be used
For Secure and fast deliveryFiber Optic
To make a network of 15 PC’s with low budgetUTP - Unshielded Twisted Pair
For cable TV networkCoaxial Cable
RequirementsThe best topology
If using Central hubStar Topology
Provide more securityMesh topology is the most secure topology because in mesh topology each device has a dedicated link to others .
If one system disconnect will disturb all networkRing Topology

CS601 VU Assignment 2 Solution Fall 2012

Saturday, November 24, 2012 Edit This
CS601 VU Assignment 2 Solution Fall 2012



CS410 VU Assignment Solution

Saturday, November 24, 2012 Edit This

Question # 2 Solution

Windows Messages

The system passes input to a window procedure in the form of messages. Messages are generated by both the system and applications. The system generates a message at each input event. The message to a window procedure with a set of four parameters:

Window handle system sends a
Message identifier
Two values called message parameters.

Message Types

This section describes the two types of messages:

System-Defined Messages
Application-Defined Messages

System-Defined Messages

The system sends or posts a system-defined message when it communicates with an application. It uses these messages to control the operations of applications and to provide input and other information for applications to process. An application can also send or post system-defined messages. Applications generally use these messages to control the operation of control windows created by using pre-registered window classes.

Each system-defined message has a unique message identifier and a corresponding symbolic constant (defined in the software development kit (SDK) header files) that states the purpose of the message. For example, the WM_PAINT constant requests that a window paint its contents.
Queued Messages

The system can display any number of windows at a time. To route mouse and keyboard input to the appropriate window, the system uses message queues.

The system maintains a single system message queue and one thread-specific message queue for each graphical user interface (GUI) thread. To avoid the overhead of creating a message queue for non–GUI threads, all threads are created initially without a message queue. The system creates a thread-specific message queue only when the thread makes its first call to one of the User or Windows Graphics Device Interface (GDI) functions.

Whenever the user moves the mouse, clicks the mouse buttons, or types on the keyboard, the device driver for the mouse or keyboard converts the input into messages and places them in the system message queue. The system removes the messages, one at a time, from the system message queue, examines them to determine the destination window, and then posts them to the message queue of the thread that created the destination window. A thread's message queue receives all mouse and keyboard messages for the windows created by the thread. The thread removes messages from its queue and directs the system to send them to the appropriate window procedure for processing.

With the exception of the WM_PAINT message, the system always posts messages at the end of a message queue. This ensures that a window receives its input messages in the proper first in, first out (FIFO) sequence. The WM_PAINT message, however, is kept in the queue and is forwarded to the window procedure only when the queue contains no other messages. Multiple WM_PAINT messages for the same window are combined into a single WM_PAINT message, consolidating all invalid parts of the client area into a single area. Combining WM_PAINT messages reduces the number of times a window must redraw the contents of its client area.

The system posts a message to a thread's message queue by filling an MSG structure and then copying it to the message queue.

A thread can post a message to its own message queue or to the queue of another thread by using the PostMessage or PostThreadMessage function.

An application can remove a message from its queue by using the GetMessage function.To examine a message without removing it from its queue, an application can use the PeekMessage function. This function fills MSG with information about the message.

After removing a message from its queue, an application can use the DispatchMessage function to direct the system to send the message to a window procedure for processing. DispatchMessage takes a pointer to MSG that was filled by a previous call to the GetMessage or PeekMessage function. DispatchMessage passes the window handle, the message identifier, and the two message parameters to the window procedure, but it does not pass the time the message was posted or mouse cursor position. An application can retrieve this information by calling the GetMessageTime and GetMessagePos functions while processing a message.

A thread can use the WaitMessage function to yield control to other threads when it has no messages in its message queue. The function suspends the thread and does not return until a new message is placed in the thread's message queue.

You can call the SetMessageExtraInfo function to associate a value with the current thread's message queue. Then call the GetMessageExtraInfo function to get the value associated with the last message retrieved by the GetMessage or PeekMessage function.
Nonqueued Messages

Nonqueued messages are sent immediately to the destination window procedure, bypassing the system message queue and thread message queue. The system typically sends nonqueued messages to notify a window of events that affect it. For example, when the user activates a new application window, the system sends the window a series of messages, including WM_ACTIVATE, WM_SETFOCUS, and WM_SETCURSOR. These messages notify the window that it has been activated, that keyboard input is being directed to the window, and that the mouse cursor has been moved within the borders of the window. Nonqueued messages can also result when an application calls certain system functions. For example, the system sends the WM_WINDOWPOSCHANGED message after an application uses the SetWindowPos function to move a window.

Some functions that send nonqueued messages are BroadcastSystemMessage, BroadcastSystemMessageEx, SendMessage, SendMessageTimeout, and SendNotifyMessage.



Question # 3

We will make window application in four steps:

In first step, we will register a windows class.
In second step, we will create a window
In third step, we will make a message loop and message handling procedure
In our fourth step, we will write WinMain function and will make the application running.

“Pointer is a kind of variable whose value is a memory address, typically of another variable”.

int *p;
int i = 3;
p = &i;
In this piece of code, we have taken a pointer to integer denoted by “*p”. In second statement, an integer is declared and initialized by ‘3’. The next step is the most important one. Here we are passing the “Address” of the integer “i” in the pointer. Since pointers hold the variable addresses; so now the pointer “p” contains the address of the integer “i” which has a value of 3.

Pointer Advantages

This allows a function to “return” more than a single value (we are not really returning more than a single variable, but we are able to directly modify the values that are in main, from within a function).
This allows us to refer to larger data structures with just a single pointer. This cuts back on creating multiple copies of a structure, which consumes both memory and time.
This also opens the door to dynamic memory allocation.
Use pointers when you want efficient results.


To develop plug-ins of existing software use pointers as much as you can.
Take extreme care while manipulating arrays with pointers.
Many bugs in large programmes arise due to pointers so only use pointers when necessary.
Make sure to initialize pointers with some valid value.
Don’t try to modify the contents of constant pointers.
Be sure that the data types of pointer variable and the pointed variable are same.
Do not assign system area addresses to pointer
Use function pointer only where it is required

Back to home VUsolutions

Shaadi.com: Just create ur account & find ur partner or EARN money, its reall & EASY

VUsolutions Followers (Join NOW and Get Extra Benefits)

Install LATEST toolbar having lot of features - GET solutions on Desktop

toolbar powered by Conduit
Caliplus 300x250 NoFlam VitoLiv 468x60 GlucoLo