Syllabus, M.Tech

JNTUH M.Tech 2017-2018 (R17) Detailed Syllabus Internet Technologies and Services Lab

Internet Technologies and Services Lab Detailed Syllabus for Computer Science and Engineering M.Tech first year second sem is covered here. This gives the details about credits, number of hours and other details along with reference books for the course.

The detailed syllabus for Internet Technologies and Services Lab M.Tech 2017-2018 (R17) first year second sem is as follows.

M.Tech. I Year II Sem.

Course Objectives:

  • Write syntactically correct HTTP messages and describe the semantics of common HTTP methods and header fields
  • Discuss differences between URIs, URNs, and URLs, and demonstrate a detailed understanding of http-scheme URLs, both relative and absolute
  • Describe the actions, including those related to the cache, performed by a browser in the process of visiting a Web address
  • Install a web server and perform basic administrative procedures, such as tuning communication parameters, denying access to certain domains, and interpreting an access log
  • Write a valid standards-conformant HTML document involving a variety of element types, including hyperlinks, images, lists, tables, and forms
  • Use CSS to implement a variety of presentation effects in HTML and XML documents, including explicit positioning of elements
  • Demonstrate techniques for improving the accessibility of an HTML document

List of Sample Problems:

  • Internet Technologies
  1. Develop static pages (using Only HTML) of an online Book store. The pages should resemble: www.amazon.com the website should consist the following pages.
    Home page, Registration and user Login
    User Profile Page, Books catalog
    Shopping Cart, Payment By credit card
    Order Conformation
  2.  Validate the Registration, user login, user profile and payment by credit card pages using JavaScript.
  3.  Create and save an XML document at the server, which contains 10 users information. Write a program, which takes User Id as an input and returns the user details by taking the user information from the XML document.
  4. Install TOMCAT web server. Convert the static web pages of assignments 2 into dynamic web pages using Servlets and cookies. Hint: Users information (user id, password, credit card number) would be stored in web.xml. Each user should have a separate Shopping Cart.
  5. Redo the previous task using JSP by converting the static web pages of assignments 2 into dynamic web pages. Create a database with user information and books information. The books catalogue should be dynamically loaded from the database. Follow the MVC architecture while doing the website.
  6. Implement the “Hello World!” program using JSP Struts Framework.
  • Additional Assignment Problems

Write an HTML page including any required Javascript that takes a number from one text field in the range of 0 to 999 and shows it in another text field in words. If the number is out of range, it should show “out of range” and if it is not a number, it should show “not a number” message in the result box.

Write a java swing application that takes a text file name as input and counts the characters, words and lines in the file. Words are separated with white space characters and lines are separated with new line character.

Write a simple calculator servlet that takes two numbers and an operator (+, -, /, * and %) from an HTML page and returns the result page with the operation performed on the operands. It should check in a database if the same expression is already computed and if so, just return the value from database. Use MySQL or PostgreSQL.

Write an HTML page that contains a list of 5 countries. When the user selects a country, its capital should be printed next to the list. Add CSS to customize the properties of the font of the capital (color, bold and font size).

Write a servlet that takes name and age from an HTML page. If the age is less than 18, it should send a page with “Hello , you are not authorized to visit this site” message, where  should be replaced with the entered name. Otherwise it should send “Welcome to this site” message.

Write a calculator program in HTML that performs basic arithmetic operations (+, -, /, * and %). Use CSS to change the foreground and background color of the values, buttons and result display area separately. Validate the input strings using JavaScript regular expressions. Handle any special cases like division with zero reasonably. The screen may look similar to the following:

Write a Java program that creates a calculator GUI, as shown in figure. Extra components may be added for convenience:

The Color Scheme may be Black on White or Blue on Yellow (selectable) and accordingly all components colors must be changed. The values can be either entered or increased or decreased by a step of 10. The operators are +, -, / and * (selectable). Once any change takes place, the result must be automatically computed by the program

Write a Java Application that will read an XML file that contains personal information (Name, Mobile Number, age and place. It reads the information using SAX parser. After reading the information, it shows two input Text Fields in a window, one for tag name and the other for value. Once these two values are given, it should list all the records in the XML file that match the value of the given field in a text area (result box). For example, if the two text boxes are entered with “name” and “ABCD” then it should show all the records for which name is “ABCD”? An Illustration is given below that takes a mobile number and lists all the records that have the same mobile number.

Consider the following web application for implementation:
The user is first served a login page which takes user’s name and password. After submitting the details the server checks these values against the data from a database and takes the following decisions.
If name and password matches, serves a welcome page with user’s full name.
If name matches and password doesn’t match, then serves “password mismatch” page
If name is not found in the database, serves a registration page, where users full name, present
user name (used to login) and password are collected. Implement this application in:

  1. Pure JSP
  2. Pure Servlets
  3. Struts Framework

Implement a simple arithmetic calculator with +, -, /, *, % and = operations using Struts Framework The number of times the calculator is used should be displayed at the bottom (use session variable).

  • Internet Technologies and Services Lab – Additional Problems
  1. Create a web Service in Java that takes two city names from the user and returns the distance between these
    two from data available from a table in MySql.
  2. Write a java and a C# client which use the above service
  3. Write a Java program that takes a file as input and encrypts it using DES encryption. The program should check if the file exists and its size is not zero.
  4. Write a Java program that generates a key pair and encrypts a given file using RSA algorithm.
  5. Write a Java program that finds digest value of a given string.
    Consider the following xml file for encryption
    abc123 Replace and values with the RSA encrypted values represented with base64 encoding assuming that the public key is available in a file in local directory “pubkey.dat”. Encrypt with AES algorithm with a password ‘secret’. The checksum of all the field values concatenated with a delimiter character ‘+’ will be inserted in the checksum and the xml file is written to encrypted.xml file.
  6. Write an HTML page that gives 3 multiple choice (a,b,c and d) questions from a set of 5 preloaded questions randomly. After each question is answered change the color of the question to either green or blue using CSS.
  7. Finally on clicking OK button that is provided, the score should be displayed as a pop-up window. Use Java Script for dynamic content.
  8. Write an HTML page that has 3 countries on the left side (“USA”, “UK” and “INDIA”) and on the right side of each country, there is a pull-down menu that contains the following entries: (“Select Answer”, “New Delhi”, “Washington” and “London”). The user will match the Countries with their respective capitals by selecting an item from the menu. The user chooses all the three answers (whether right or wrong). Then colors of the countries should be changed either to green or to red depending on the answer. Use CSS for changing color.
  9. Write an HTML Page that can be used for registering the candidates for an entrance test. The fields are: name, age, qualifying examination (diploma or 10+2), stream in qualifying examination. If qualifying examination is “diploma”, the stream can be “Electrical”, “Mechanical” or “Civil”. If the qualifying examination is 10+2, the stream can be “MPC” or “BPC”. Validate the name to accept only characters and spaces.
  10. Write an HTML page that has two selection menus. The first menu contains the states (“AP”, “TN” and “KN”) and depending on the selection the second menu should show the following items: “Hyderabad”, “Vijayawada”, “Kurnool” for AP, “Chennai”, “Salem”, “Madurai” for TN and “Bangalore”, “Bellary”, “Mysore” for KN.
  11. Write an HTML page that has phone buttons 0 to 9 and a text box that shows the dialed number. If 00 is pressed at the beginning, it should be replaced with a + symbol in the text box. If the number is not a valid international number (+ followed by country code and 10 digit phone number) the color of the display should be red and it should turn to green when the number is valid. Consider only “+91, +1 and +44 as valid country codes. Use CSS for defining colors.
  12. Write an HTML page that has a text box for phone number or Name. If a number is entered in the box the name should be displayed next to the number. If 00 is pressed at the beginning, it should be replaced with a + symbol in the text box. If a name is entered in the text box, it should show the number next to the name. If the corresponding value is not found, show it in red and show it in green otherwise. Use CSS for colors. Store at least 5 names and numbers in the script for testing.
  13. A library consists of 10 titles and each title has a given number of books initially. A student can take or return a book by entering his/her HTNo as user ID and a given password. If there are at least two books, the book is issued and the balance is modified accordingly.
  • Use RDBMS and implement it with JSP.
  • Use XML File for data and Implement it with JSP
  • Use RDBMS and implement it with Servlets
  • Use XML File for data and Implement it with Servlets
  1. A Bus Reservation System contains the details of a bus seat plan for 40 seats in 2×2 per row arrangement, where the seats are numbered from 1 to 40 from first row to last row. The customer can visit the website and can reserve a ticket of his choice if available by entering his details (Name, Address, Gender and Age). The customer can cancel the ticket by entering the seat number and his name as entered for reservation.
  • Use RDBMS and implement it with JSP.
  • Use XML File for data and Implement it with JSP
  • Use RDBMS and implement it with Servlets
  • Use XML File for data and Implement it with Servlets.
  1. Implement a simple messaging system with the following details:
    When a student logs in with his/her HTNO and a given password, they should get all the messages posted to him/her giving the ID of sender and the actual message. Each message may be separated with a ruler. There should be a provision for the user to send a message to any number of users by giving the IDs separated with commas in the “To” text box.
  • Use RDBMS and implement it with JSP.
  • Use XML File for data and Implement it with JSP
  • Use RDBMS and implement it with Servlets
  • Use XML File for data and Implement it with Servlets.
  1. There is an image of 600×100 size which can be logically divided into 12 button areas with labels (0-9, +, =).
  2. Write a javascript calculator program that uses this image as input virtual keyboard and three text areas for two input numbers and result of sum of these numbers. Add a CSS that can be used to change the colors of text and background of text areas and the page. The input numbers can be up to 4 digits each. Develop a web application that takes user name and password as input and compares them with those available in an xml user database. If they match, it should display the welcome page that contains the user’s full name and last used date and time retrieved from a client cookie. On logout it stores new time to the cookie and displays a goodbye page. If authentication fails, it should store the attempt number to the client cookie an displays an error page. Add necessary CSS that takes care of the font, color of foreground and background.
  3. A web application has the following specifications:
    The first page (Login page) should have a login screen where the user gives the login name and password. Both fields must be validated on client side for a minimum length of 4 characters, name should be lower case az characters only and password should contain at least one digit. On submitting these values, the server should validate them with a MySQL database and if failed, show the login page along with a message saying “Login Name or Password Mismatch” in Red color below the main heading and above the form. If successful, show a welcome page with the user’s full name (taken from database) and and a link to Logout. On logout, a good bye page is displayed with the total time of usage (Logout time – login time). Specify the Schema details of table and web.xml file contents. Implement it using (a) JSP Pages (b) Servlets (c) Struts
  4. Design a struts based web portal for an international conference with following specifications:
    The welcome page should give the details of the conference and a link to login. If login fails, direct them back for re-login and also provide a link for registration. On successful registration/login, the user will be directed to a page where s/he can see the status (accepted/rejected) of their already submitted papers followed by a form for submitting a doc file to the conference. Provide a logout button on all pages including the home page, once the user logs in. Implement validation framework to check that the user name is in the form of CCDDCC and password is in the form of (CCSDDD) (C for character, S for special character (one of @, #, $, %, ^, & and !) and D for digit)., Database should be accessed through Connection Pool for MySql for user information. Provide scope for internationalization in future. Assume any missing information and mention it first.

For all other M.Tech 1st Year 2nd Sem syllabus go to JNTUH M.Tech Computer Science and Engineering 1st Year 2nd Sem Course Structure for (R17) Batch.

All details and yearly new syllabus will be updated here time to time. Subscribe, like us on facebook and follow us on google plus for all updates.

Do share with friends and in case of questions please feel free drop a comment.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.