Skip to main content

Posts

Showing posts from April, 2021

Apple Event 2021

 
   (MI) – PRACTICAL LIST 1 Write an 8085 assembly language program for exchanging two 8-bit numbers stored in memory locations 2050h and 2051h. 2 Write an 8085 assembly language program to add two 8-bit numbers stored in memory locations 2050h and 2051h. Store result in location 2052h 3 Write an 8085 assembly language program to subtract two 8-bit numbers stored in memory location 2050h from 2051h.Store result in location 2052h. 4 Write an 8085 assembly language program to add two 16-bit numbers stored in memory. 5 Write an 8085 assembly language program to add two decimal numbers using DAA instruction. 6 Write an 8085 assembly language program to find the minimum from two 8-bit numbers. 7 Write an 8085 assembly language program to get the minimum from block of N 8-bit numbers. 8 Write an 8085 assembly language program to add block of 8-bit numbers. 9 Write an 8085 assembly language program to copy block of five numbers starting from memory location 2001h to location starting from 3001

Advance JAVA Practical

(AJ) – PRACTICAL LIST 1 Write a TCP Client-Server program to get the Date & Time details from Server on the Client request. 2 Write a UDP Client-Server program in which the Client sends any string and Server responds with Reverse string 3 Write a client server program using TCP where client sends a string and server checks whether that string is palindrome or not and responds with appropriate message. 4 Write a client-server program using UDP socket. Client send list of N numbers to server and server respond the sum of N numbers. 5 Write a client-server program using UDP socket. Client send the list of N strings and server responds the concatenation of those strings. 6 Create chat application using either TCP or UDP protocol. 7 Consider Bank table with attributes AccountNo, CustomerName, Balance, Phone and Address. Write a database application which allows insertion, updation and deletion of records in Bank table. Print values of all customers whose balance is greater than 20,000.

WP Practical

Prac 1 Aim : Implement basic HTML tags to learn HTML Code : <html> <head> <title>prac1</title> </head> <body> <form> name:<input type="text" name="name"><br> Gender:male <input type="radio" name="g" value="male"><br> female <input type="radio" name="g" value="female"><br> city : <select> <option>ahmedabad</option> <option>mumbai</option> <option>surat</option> <option>mehsana</option> </select> </form> <hr> <ol type="i"> <li>abc</li> <li>xyz</li> <li>mno</li> </ol> <br> <ul type="disc"> <li>abc</li> <li>xyz</li> <li>mno</li> </ul> <p>this is p tag</p><br> <b>this is b tag</b><br> <i>this is i tag<

Contact Form

Name

Email *

Message *