- In Synchronous Transmission data is transferred in the form of frames on the other hand in Asynchronous Transmission data is transmitted 1 byte at a time.
- Synchronous Transmission requires a clock signal between the sender and receiver so as to inform the receiver about the new byte. Whereas, in Asynchronous Transmission sender and receiver does not require a clock signal as the data sent here has a parity bit attached to it which indicates the start of the new byte.
- Data transfer rate of Asynchronous Transmission is slower than that of Synchronous Transmission.
- Asynchronous Transmission is simple and economic whereas, Synchronous Transmission is complex and expensive.
- Synchronous Transmission is efficient and has lower overhead as compared to the Asynchronous Transmission.
Developer's Home
Thursday, 12 January 2017
Differences Between Synchronous and Asynchronous Transmission
Monday, 10 December 2012
Wednesday, 11 April 2012
Zend Setup through Command Line
1. You need zf.bat and zf.php files and Zend folder.
2. Create and folder with any name. Inside that folder create two folders (bin & library).
3. Put zf.bat and zf.php file inside the bin folder and put Zend folder inside library folder.
4. Open CMD and go to your php directory under xampp folder.
5. Run the following command, path to 'zf.bat file' create project 'path where you want to create your project'.
6. Your project is ready to use.
2. Create and folder with any name. Inside that folder create two folders (bin & library).
3. Put zf.bat and zf.php file inside the bin folder and put Zend folder inside library folder.
4. Open CMD and go to your php directory under xampp folder.
5. Run the following command, path to 'zf.bat file' create project 'path where you want to create your project'.
6. Your project is ready to use.
Thursday, 24 November 2011
Get the number of days between two dates.
$date1 = date('2011-11-01');
$date2 = date('2011-11-09');
echo (strtotime($date2) - strtotime($date1))/(60*60*24);
8 would be answer
$date2 = date('2011-11-09');
echo (strtotime($date2) - strtotime($date1))/(60*60*24);
8 would be answer
Tuesday, 6 September 2011
Monday, 13 June 2011
Run PHTML file as HTML in Dreamweaver
Go to the folder where the dreamweaver is installed...... (Try to install some other drive where the windows is not installed... due to admin permission problem)
Open Adobe dreamweaver CS3 (or whatever you installed).... and paste crack file (dreamweaver) here (overwrite the older one).
Go to configuration folder....
Then DocumentTypes...... Open MMDocumentTypes file .......... find php5 (it would be on two places).....
Just write ,phtml after php5 in both of the places........
Now you can check.... it will work fine.... :)
Open Adobe dreamweaver CS3 (or whatever you installed).... and paste crack file (dreamweaver) here (overwrite the older one).
Go to configuration folder....
Then DocumentTypes...... Open MMDocumentTypes file .......... find php5 (it would be on two places).....
Just write ,phtml after php5 in both of the places........
Now you can check.... it will work fine.... :)
Subscribe to:
Posts (Atom)