Skip to main content

Internet and Intranet - CT 754

University questions of Internet and intranet: 

 Subject: Internet and Intranet-2079 CHAITRA 
Attempt All questions. 

 1.How does the IANA help for internet management in this world? Explain with some examples. compare the optical backbone with marine cables.[4+4]

 2.Explain along with a well-illustrated diagram the difference between IPV4 and IPV6 header in terms of routing and fragmentation.[8] 

 3.HTTP is stateless. Justify this statement. What are the features of HTTP 2.0? [4+4] 

 4.Do Ajax applications always deliver a better experience than traditional Web Applications? Explain in brief. Explain the superior features of Laravel framework. [4+4] 

 5.How does CARP method help for load balancing? Explain with a suitable example. How can a firewall protect the IT infrastructure inside your organization? [6+4] 

 6.Differentiate between the internet, intranet and extranet on the basis of benefits and drawbacks. How does CMS help in intranet system development? [5+4] 

 7.What do you think is the most challenging part of VOIP? Explain in brief. Compare H323 with SIP for VOIP communication. [4+4]  

8.Suppose Government purchase an IP 180.5.6.32/16 from APNIC and you have a chance to be an IT consultant for network management in city. Design the redundant/loop free intranet logical and physical network for city which has proposed for six sections with two departments (Administration and Operational) block and server room. Server room contains DNS, Email, WEB and Database servers and each department has 10 computers with wireless devices. Propose appropriate tools (L1, L2, L3, Firewalls, WAP), physical links for intranet network and prepare the BOQ. [12]

 9. Write short notes on : (ANY Three) (3*3)
     a. Packet clearing house 
     b. Browser as a rendering engine
     c. FTP d. Quic protocol 
                                                  


                                                                  *****                         

Comments

Popular posts from this blog

Software Process Model(SPM)

  Explain spiral development model with advantages and disadvantages The Spiral Development Model is a risk-driven software development approach that combines iterative and waterfall models. It involves repeated cycles (or spirals) to incrementally refine the software project. Each spiral consists of four major phases: Planning , Risk Analysis , Engineering , and Evaluation .                                                           Fig: Spiral Software development model Phases in the Spiral Model: Planning : Requirements are gathered and objectives are set for the project. Risk Analysis : Risks are identified, analyzed, and mitigation strategies are developed. Develop/Engineering : The actual development and testing of the product take place. Evaluation : Stakeholders/users review the progress and provide feedback, inf...

Solution of NEB model quetions

 solution to model questions are : 

DBMS-SQL

SQL DDL and DML Examples Examples of DDL (Data Definition Language) and DML (Data Manipulation Language) commands in SQL. DDL (Data Definition Language) Examples: 1. Create a new database: CREATE DATABASE SchoolDB;  2. Create a table: CREATE TABLE Students ( StudentID INT PRIMARY KEY, FirstName VARCHAR(50), LastName VARCHAR(50), Age INT );  3. Alter a table to add a new column: ALTER TABLE Students ADD Email VARCHAR(100);  4. Drop a table: DROP TABLE Students;  5. Rename a table: ALTER TABLE OldTableName RENAME TO NewTableName;  DML (Data Manipulation Language) Examples: 1. Insert data into a table:  INSERT INTO Students (StudentID, FirstName, LastName, Age) VALUES (1, 'John', 'Doe', 20);  2. Update data in a table: UPDATE Students SET Age = 21 WHERE StudentID = 1;  3. Delete data from a table: DELETE FROM Students WHERE StudentID = 1;  4. Select data from a table: SELECT * FROM Students;  5. Select data with conditions: SELECT FirstName...