17 May 2014

FON Questions that you can refer....

Q.1 what is the purpose of MAC?
Q.2 list types of connection in classical Ethernet.
Q.3 which algorithm is use for retransmission in ALOHA.
Q.4 difference between ALOHA and EHTERNET.
Q.5 difference between PCF and DCF mode.
Q.6 difference between 802.11 and 802.16.
Q.7 hub v/s switch.
Q.8 what is solution for ALOHA?
Q.9 list types of connection in fast Ethernet.
Q.10 what is routing?
Q.11 static v/s dynamic routing algorithm
Q.12 what is congestion control?
Q.13 difference between congestion detection and avoidance.
Q.14 from which congestion control algorithm take decision?
Q.15 what is jitter?
Q.16 fullform of RED.
Q.17 give disadvantage of count to infinity problem.
Q.18 give solution for count to infinity problem.
Q.19 list step involved in link state routing.
Q.20 list duties of transport layer.
Q.21 define multiplexing.
Q.22 what is process level addressing?
Q.23 what is flow control?
Q.24 what is the use of probe signal in persist timer?
Q.25 difference between symmetric and asymmetric connection close.
Q.26 what is connection establishment timer?
Q.27 FTP v/s CUTE FTP.
Q.28 list short comings from transport layer.
Q.29 what is DNS?
Q.30 define domain name space.
Q.31 list advantages of hierarchy.
Q.32 draw diagram of iterative search and recursive search.
Q.33 give example of CNAME.
Q.34 list types of resource record.
Q.35 difference between pop3 and imap.
Q.36 list component of SMTP.
Q.37 what is the job of message transfer agent (MTA).
Q.38 what is MIME?

7 May 2014

Some WTAD Program Definitions...

The below listed are the Definitions of The program which have to be implemented.
This will be helpful in practical exams or self study.May be Helpful to You...

Definitions:-

1. Design an application that takes input as father’s age and son’s age. The user should be redirected to “myError.jsp”, if any of the age is invalid and also if father’s age is less than or equal to son’s age. Otherwise the user should be redirected to “Welcome.jsp”, where the father’s age at the son’s birth time is shown. 

2. Develop an application that stores personal information of an employee(Minimum 3 employee details) in a Bean. Write a servlet code that takes employee id, return status OK along with the details if the id is valid, or else return the Not found status. Make use of HTTP status codes.

3. Create a form to get name and value for the cookie and provide check boxes  to add a cookie, delete a cookie or delete later (after 10 seconds), perform appropriate action as per user’s choice. 

4. Design a page having link for 3 jsp pages and print the access count by including a file as footer which maintains and prints different access count for each jsp page.

5. Write a servlet to print all the response headers in tabular format either in html or excel depending on user’s choice. 

6. Design a form to accept numerator and denominator from the user and print the factorial of result. Incase exception occurs errorpage.jsp should be displayed with user friendly message.

7. Store student details such as eno, name and marks of 3 subjects in a bean for 3 students, develop a servlet which takes the eno of a student as a request parameter and displays the marksheet for the student. 

8. Develop an JSP application to get student’s roll no. if the marks of the student is between 40 and 50, change the back color of result.jsp to yellow, if the marks is between 50 and 60, change the back color of the same page to green and if marks less than 40 the back color should be red and if marks is above 60 back color should be blue.  

9. Develop a bean application having property student id, student program (MCA/MBA/BE), store data for atleast 3 students. Design a JSP page that will ask student id display student’s information. 

10. Develop a servlet which looks for the username and password, and forwards to a home page in case the cookies are valid and forwards to login page, in case the cookies are not found or the cookies are not valid.

11. Make an HTML form that lets you send a background color and foreground color to  a servlet that display a web page in those colors. If you go straight to the servlet without going through the HTML form, then the servlet use cookies values to provide reasonable default color choices. 

12. Write a JSP page to create “header.jsp” having company name and “footer.jsp” having copyright information. Include header.jsp and footer.jsp to si.jsp which asks user to input Principal amount , Rate of interest and no. of years and calculate Simple Interest based on inputted values and display output in si.jsp.

MVC Definitions:-


1. Develop MVC architecture that asks user to enter Employee ID and information such as Employee ID, Employee Name , Basic Salary, DA (50% OF Basic sal.), HRA (15% of Basic Sal.), Gross Sal. ( BS + DA + HRA), IT (10% of  GS), Net Salary (GS-IT). (Use bean to store static collection of data of the employees (employee id, name, basic salary).

2. Develop MVC architecture that asks user to enter Student enrollment number and display message “Scholar student” in red color  if percentage above 60% ,  If percentage is below
60% then display message “Average Student” along with information such as Student Name ,Enrollment no., Marks of 3 subjects, Total and percentage.  (Use bean to store static collection of data of the student like  eno, name, marks of 3 subjects).

3. Develop MVC architecture that asks user to enter account number and display message “Regular Customer” in red color if balance is less than 5000,  if balance is above 5000 then display “Elite Customer” in green color along with account holder information such as Customer Name, Account no., Balance.  (Use bean to store static collection of data of the
customers).

3 May 2014

Some FON Programming Definitions That may be Useful....

  1. Write a C Program which demonstrates byte-stuffing framing technique, where sender reads data from file, stuffs necessary details and send it to receiver. Both sender and receiver are capable enough to handle multiple/combination occurrences of flag/escape sequences. Receiver display original message after de – stuffing if required. For sender/receiver communication use IPC mechanism FIFO/Named Pipes in Linux/Unix environment.

  2. Write a C Program which demonstrates character-count technique, where sender reads a string from a file and sends it to receiver along with the count of characters of the string in a single frame. Receiver must display the original message along with the length received. Assume that communication channel is noiseless. For sender/receiver communication use IPC mechanism FIFO or Named Pipes in Linux/Unix environment.

  3. Write a C Program which implements checksum technique. Sender reads data from file then appends checksum information and send it to receiver. Receiver must display the original message after checking the checksum information. For sender/receiver communication use IPC mechanism FIFO/Named Pipes in Linux/Unix environment. Use bit-wise operator only whenever necessary.

  4. Write a C Program which simulates stop-n-wait protocol. Sender sends a frame of data and then waits for positive ACK from receiver. Receiver must display original message received via channel. The data to be sent to the receiver is read from a file by the sender. Assume that communication channel is noiseless. For sender/receiver communication use IPC mechanism FIFO or Named Pipes in Linux/Unix environment.

  5. Write a C Program which simulates simplex protocol. Sender side is going to send data (any number/character) as soon as it receives a ‘send request’ from network layer. Receiver must display original message received via channel. Assume that communication channel is noiseless. There is no need to implement timer/ Lost-ACK logic. Implement channel using the IPC mechanism FIFO or Named Pipes in Linux/Unix so that both the programs are able to communicate. The data to be sent is read from an existing file and not to be taken as input from the user.

  6. Write a C program to read data from file. Sender generates Hamming Code for given data using bitwise operators only. Hamming code is send to receiver via named pipes. Receiver should correct the error if any and display the appropriate output. Implement channel using the IPC mechanism FIFO or Named Pipes in Linux/Unix so that both the programs are able to communicate.

  7. Demonstrate bit-stuffing techniques using C program. Sender stuffs 0 after five consecutive occurrences of 1. Receiver must identify this situation and display original message. Message to send is to read from file. Implement channel using the IPC mechanism FIFO or Named Pipes in Linux/Unix so that both the programs are able to communicate. Use bit-wise operators to perform the stuffing operation.
Reference:-
 Last Year GTU Practicle Paper

Comments

© 2013-2016 ITTechnocrates. All rights resevered. Developed by Bhavya Mehta