Dear Learners,
In this video I have explained about Online resources and ICT tools for self learning:
Dear Learners,
In this video I have explained about Online resources and ICT tools for self learning:
Question 26:
Answer the questions (i) and (ii) after going through the following class: Delhi 2013
class Motor
{
int MotorNo, Track;
public:
Motor(); //Function 1
Motor(int MN); //Function 2
Motor(Motor &M); //Function 3
void Allocate() //Function 4
void Move();
};
void main()
{
Motor M;
:
:
}Аnswer:
Question 27:
Answer the questions (i) and (ii) after going through the following class: Delhi 2012
class Tour
{
int LocationCode;
char Location[20];
float charges;
public:
Tour() //Function 1
{
LocationCode = 1;
strcpy(Location,"PURI");
charges = 1200;
}
void TourPlan(float C) //Function 2
{
cout<<LocationCode<<":"<< Location<<":”<<charges<<endl;
charges += 100;
}
Tour(int LC, char L[], float C) //Function 3
{
LocationCode=LC;
strcpy(Location,L);
charges = C;
}
~Tour() //Function 4
{
cout<<"TourPlan Cancelled"<<endl;
}
};Аnswer:
Question 28:
Answer the questions (i) and (ii) after going through the following class: All India 2012
class Travel
{
int PlaceCode;
char Place[20];
float Charges;
public:
Travel() //Function 1
{
PlaceCode = 1;
strcpy(Place, "DELHI");
Charges = 1000;
}
void TravelPlan(float C) //Function 2
{
cout<<PlaceCode<<":"<<Place<<":"<<Charges<<endl;
}
∼Travel() //Function 3
{
cout<<"TravelPlan Cancelled"<<endl;
}
Travel(int PC, char P[], float C) //Function 4
{
PlaceCode = PC;
strcpy(Place, P):
Charges = C;
}
};Аnswer:
Question 29:
Find the output of the following program: Delhi 2012
#include<iostream.h>
class Train
{
int TNo.TripNo.PersonCount;
public:
Train(int TN = 1)
{
TNo = TN:
TripNo=0;
PersonCount=0;
}
void Trip(int TC=100)
{
TripNo++;
PersonCount+=TC;
}
void Show()
{
cout<<TNo<<":"<<TripNo<<":"<<PersonCount<<endl;
}
};
void main()
{
Train T(10),N;
N.Trip();
T.Show();
N.Trip(70);
N.Trip(40);
N.Show();
T.Show();
}Аnswer:
Output of the given program would be:
10:0:0
1:3:210
10:0:0
Question 30:
Find the output of the following program: All India 2012
#include<iostream.h>
class METRO
{
int Mno,TripNo,PassengerCount;
public:
METR0(int Tmno=1)
{
Mno=Tmno:
TripNo=0;
PassengerCount=0;
}
void Trip(int PC=20)
{
TripNo++;
PassengerCount+=PC;
}
void StatusShow()
{
cout<<Mno<<":"<<TripNo<<":"<<PassengerCount<<endl;
};
void main()
{
METRO M(5),T;
M.Trip();
T.Trip(50);
M.StatusShow();
M.Trip(30);
T.StatusShow();
M.StatusShow();
}Аnswer:
Output of the given program would be:
5:1:20
1:1:50
5:2:50
Question 31:
Rewrite the following program after removing the syntactical errors (if any). Underline each correction. Delhi 2011c
#inc1ude<iostream.h>
#include<stdio.h>
class AUTO
{
char Model[20];
float Price;
AUTO()
{
Price = 0;
strcpy(Model,"NULL");
}
public:
void GetInfo()
{
cin>>Price;
gets(Model);
}
void PutInfo()
{
cout<<setw(10)<<Price<<setw(10)<<Model<,<endl;
}
}
void main()
{
AUTO Car;
Car.GetInfo();
Car.PutInfo();
}Аnswer:
#include<iostream.h>
#include<stdio.h>
#include<string.h>
#inc1ude<iomanip.h>
class AUTO
{
char Model[20];
float Price;
public:
AUTO()
{
Price = 0;
strcpy(Model, "NULL”);
}
void Getlnfo()
{
cin>>Price;
gets(Model);
}
void Putlnfo()
{
cout<<setw(10)<<Price<<setw(10)<<Model<<endl;
}
};
void main()
{
AUTO Car;
Car.Getlnfo();
Car.Putlnfo();
}Question 32:
Answer the questions (i) and (ii) after going through the following class; All India 2010
class Exam
{
int Rno, MaxMarks, MinMarks, Marks;
public:
Exam() //Module 1
{
Rno - 101; MaxMarks = 100;
MinMarks = 40; Marks = 75;
}
Exam(int Prno.int Pmarks) //Module 2
{
Rno = Prno; MaxMarks = 100;
MinMarks = 40; Marks = Pmarks;
}
∼ExamO //Module 3
{
cout<<"Exam over"<<endl;
}
void show() //Module 4
{
cout<<Rno<<":"<<MaxMarks<<":"<<MinMarks<<endl;
cout<<"[MarksGot]"<<Marks<<endl;
}
};Аnswer:
Question 33:
Answer the questions (i) and (ii) after going through the following class: Delhi 2016
class TEST
{
int Regno, Max, Min, Score;
public:
TESTO //function 1
{
Regno = 101; Max = 100;
Min = 40; Score = 75;
}
TEST(int Pregno.int Pscore) //Function 2
{
Regno = Pregno; Max = 100;
Min = 40; Score = Pscore;
}
~TEST() //Function 3
{
cout<<"TEST over"<<endl;
}
void Display() //Function 4
{
cout<<Regno<<":"<<Max<<":"<<Min<<endl;
cout<<"[Score]"<<Score<<endl;
}
};Аnswer:
Question 34:
Answer the questions (i) and (ii) after going through the following class: HOTS; Delhi 2009
class WORK
{
int Workld; char WorkType;
public:
∼WORK() //Function 1
{
cout<<"Un-allocated"<<endl;
}
void status() //Function 2
{
cout<<WorkId<<":"<<WorkType<<endl;
}
WORK() //Function 3
{
Workld = 10; WorkType = 'T';
}
WoRK(WORK &W) //Function 4
{
WorkId = W.WorkId+12;
WorkType = W.WorkType+1;
}
};Аnswer:
Question 35:
Answer the questions (i) and (ii) after going through the following class: Delhi 2009C
class Factory
{
char Name[20];
int Workers;
public:
Factory() //Function 1
{
strcpy(Name, "Default”);
Workers = 0;
}
void Details() //Function 2
{
cout<<Name<<endl<<Workers<<endl;
}
Factory(char*act_Name,int No); //Function 3
Factory(Factory & F); //Function 4
};Аnswer:
Question 36:
Answer the questions (i) and (ii) after going through the following class: All India 2009
class Job
{
int JobId;
char JobType;
public:
∼Job() //Function 1
{
cout<<"Resigned"<<endl;
}
Job() //Function 2
{
JobId = 10; JobType = 'T';
}
void TellMe() //Function 3
{
cout<<JobId<<":"<<JobType<<endl;
}
Job(Job &J) //Function 4
{
JobId = J.JobId+10;
JobType = J.JobType+1;
}
};Аnswer:
Question 37:
Rewrite the following C++ program code after removing the syntax error(s) (if any). Underline each correction. Delhi 2009
#inClude<iostream.h>
#include<stdio.h>
class Employee
{
int EmpId=901;
char EName[20];
public
Employee(){}
void Joining()
{
cin>>EmpId;
gets(EName);
}
void List()
{
cout<<EmpId<<":"<<EName<<endl;
}
};
void main()
{
Employee E;
Joining.E();
E.List();
}Аnswer:
#include<iostream.h>
#include<stdio.h>
class Employee
{
int Empld: //cannot initialise data member here
char EName[20];
public: //: symbol is required after public
Employee(){EmpId = 901;}
void Joining()
{
cin>>EmpId;
gets(EName);
}
void List()
{
cout<<EmpId<<":"<<EName<<endl;
}
};
void main()
{
Employee E;
E.Joining(); //object name is used before members
E.List();
}Question 38:
Rewrite the following program after removing the syntactical error(s) (if any). Underline each correction. All India 2009
#include<iostream.h>
#include<stdio.h>
class MyStudent
{
int StudentId=1001;
char Name[20];
public
MyStudent(){}
void Register()
{
cin>>StudentId;
gets(Name);
}
void Display()
{
cout<<StudentId<<":"<<Name<<endl;
}
};
void Main()
{
Mystudent MS;
Register.MSC();
MS.Display();
}Аnswer:
#include<iostream.h>
#1nclude<stdio.h>
class MyStudent
{
int Studentld;
char Name[20];
public:
MyStudent(){Studentld=1001;}
void Register()
{
cin>>StudentId;
gets(Name);
}
void Display!)
{
cout<<StudentId<<":"<<Name<<endl;
}
};
void main()
{
MyStudent MS;
MS.Reaister();
MS.Display();
}4 Marks Questions
Question 39:
Define a class CABS in C++ with the following specification: Delhi 2014
Data members
Member functions
| Type | PKM |
| ‘A’ | 25 |
| ‘B’ | 20 |
| ‘C | 15 |
Аnswer:
class CABS
{
int CNo;
char Type;
float PKM;
float Dist;
public;
CABS()
{
Type = 'A';
CNo = 1111;
}
void Charges!)
{
if(Type == 'A')
PKM = 25;
else if(Type == 'B')
PKM = 20;
else if(Type == 'C')
PKM = 15;
}
void Register()
{
cout<<"Enter value for CNo:";
cin>>CNo;
cout<<"Enter value for Type:";
cin>>Type;
Charges();
}
void ShowCab()
{
cout<<"Enter the value of Distance:”; cin>>Dist;
cout<<"\nCab Number: "<<CNo;
cout<<"\nType:"<<Type;
cout<<"\nPer Kilometre Charges:"<<PKM;
cout<<"\nAmount:"<<PKM*Dist;
}
};Question 40:
Define a class Tourist in C++ with the following specification: All India 2014
Data members
Member functions
| CType | PerKM |
| A | 20 |
| B | 18 |
| C | 15 |
Аnswer:
class Tourist
{
int CNo;
char CType;
float PerKM;
float Distance;
public:
Tourist()
{
CType = 'A';
CNo = 0000;
}
void CityCharges()
{
if(CType == 'A')
PerKM = 20;
else if(CType == 'B')
PerKM = 18;
else if(CType == 'C')
PerKM = 15;
}
void RegisterCab()
{
cout<<"Enter the Cab Number:";
cin>>CNo;
cout<<"Enter the Cab Type:";
Cin>>CType;
CityCharges();
}
void Display()
{
cout<<"Enter the Distance:";
cin>>Distance;
cout<<"Registered details are\n";
cout<<"Cab Number:"<<CNo<<endl;
cout<<"Cab Type:"<<CType<<endl;
cout<<"Charges per km :"<<PerKM<<endl;
cout<<"Amount:"<<PerKM*Distance<<endl;
}
};Question 41:
Define a class CONTEST in C + + with the following description: All India 2014C
Private Data Members
Eventno – integer
Description – char (30)
Score – integer
qualified – char
Public Member functions
Аnswer:
class CONTEST
{
private:
int Eventno;
char Description[30];
int Score;
char qualified;
public:
CONTEST()
{
Eventno=11;
Description-"School level";
Score-100;
qua1ified='N';
}
void input()
{
cout<<”Enter the event no, description and score";
cin>>Eventno>>Description;
cin>>Score;
}
void Award(int cutoffscore)
{
if(score>cutoffscore)
qualified='Y';
else
qualified='N';
}
void Displaydata()
{
cout<<"Eventno:"<<Eventno;
cout<<endl;
cout<<"Description:";<<Description<<endl;
cout<<"Score:"<<Score<<endl;
cout<<"Qualified:"cout<<qualified<<endl;
}
};Question 42:
Define a class Bus in C++ with the following specifications: HOTS; All India 2013
Data members
Member functions
| Type | PKM |
| ‘O’ | 15* Distance |
| ‘E’ | 20* Distance |
| ‘L’ | 24* Distance |
Аnswer:
class Bus
{
int Busno;
char From[25];
char To[25];
char Type;
float Distance;
float Fare;
public:
Bust()
{
Type = ' '; Fare = 500;
}
void CalcFare()
{
if(Type == ' ')
{
Fare = 15*Distance;
}
else if(Type == 'E')
{
Fare = 20*Distance;
}
else if(Type == 'L')
{
Fare = 24*Distance;
}
}
void Allocated()
{
cout<<"Enter the values for Busno, From, To, Type and Distance";
cin>>Busno;
cin>>From;
cin>>To;
cin>>Type;
cin>>Distance;
Call C Fared();
}
void Show()
{
cout<<"\nBus No:"<<Busno;
cout<<"\nFrom:"<<From;
cout<<"\nTo:"<<To;
cout<<"\nType:"<<Type;
cout<<"\nDistance:"<<Distance;
cout<<"\nFare:"<<Fare;
}
};Question 43:
Define a class Tourist in C++ with the following specification: Delhi 2013
Data members
Member functions
| Type | Charge |
| ‘E’ | 16* Distance |
| ‘A’ | 22* Distance |
| ‘L’ | 30* Distance |
Аnswer:
class Tourist
{
int Carno;
char Origin[20];
char Destination[20];
char Type;
float Distance;
float Charge;
public:
Tourist()
{
Type='E';
Charge=250;
}
void CalcCharge()
{
if(Type=='E')
Charge=16*Distance;
else if(Type=='A')
Charge=22*Distance;
else if(Type='L')
Charge=30*Distance;
}
void Enter()
{
cout<<"Enter Carno, Origin, Type, Destination and Distance";
cin>>Carno;
gets(Origin);
gets(Destination);
cin>>Type>>Distance;
CalcCharge();
}
void Show()
{
cout<<"Car No:"<<Carno;
cout<<"0rigin;"<<0rigin;
cout<<"Destination:"<<Destination;
cout<<"Type:"<<Type;
cout<<" Distance:"<<Distance;
cout<<"Charge:"<<Charge;
}
};
Question 76:
G.R.K International Inc. is planning to connect its Bengaluru Office Setup with its Head Office in Delhi. The Bengaluru Office G.R.K. International Inc. is spread across an area of approx. 1 square kilometres consisting of 3 blocks.
Human Resources, Academics and Administration. You as network expert have to suggest answers to the four queries (i) to (iv) raised by them.

Аnswer:
(i) Human Resources, because it has maximum number of computers.
(iii) Hub/Switch
(iv) Satellites
Question 77:
Expertia Professional Global (EPG) in an online corporate training provider company for IT related courses. The company is setting up their new campus in Mumbai. You as a network expert have to study the physical locations of various buildings and the number of computers to be installed. In the planning phase, provide the best possible answers for the queries (i) to
(iv) raised by them.
Physical Locations of the buildings of EPG

Аnswer:
(i) EPG should install the server in the Faculty Studio Building because it has maximum
(iii) LAN(Local Area Network)
(iv) Satellite
Question 78:
Granuda consultants are setting up a secured network for their office campus at Faridabad for their day-to-day office and Web based activities. They are planning to have connectivity between 3 buildings and the head office situated in Kolkata. Answer the questions (i) to (iv) after going through the building positions in the campus and other details, which are given below:

Аnswer:
(i) The most suitable place to house the server
in building JAMUNA because it has maximum number of computers.
(iii) Switches are needed in every building as they help share bandwidth in every building.
Repeaters may be skipped as per above layout(because distance is less than 100 m) however if building RAVI and building JAMUNA are directly connected, we can place a repeater there as the distance between these two building is more than 100 m.
(iv) Coaxial cable
Question 79:
Workalot consultants are setting up a secured network for their office campus of Gurgaon for their day-to-day office and Web based activities. They are planning to have connectivity between 3 buildings and the head office situated in Mumbai. Answer the questions (i) to (iv) after going through the building positions in the campus and other details, which are given below:

Аnswer:
(i) Building RED is the suitable place to house the server because it has maximum number of computers.
(iii) Switches are needed in every building as they help share bandwidth in every building.
Repeaters may be skipped as per above layout (because distance is less than 100 m) however if building Green and building Red are directly connected, we can place a repeater there as the distance between these two buildings is more than 100 m.
(iv) Coaxial cable
Question 80:
Quick Learn University is setting up its academic blocks at Prayag Nagar and planning to set-up a network. The university has three academic blocks and one human resource centre as shown in the diagram below:

Аnswer:
(i) The most suitable place to install the server is HR Centre because it has maximum number of computers.
(iii) Switch
(iv) Wan as it is another city.
Question 81:
Great Studies University is setting up its academic schools at Sunder Nagar and planning to set-up a network. The university has three academic schools and one administration centre as shown in the diagram:

Аnswer:
(i) The most suitable place to install the server is Admin Centre because it has maximum number of computers.
(iii) Switch device
(iv) WAN as it is outside the city.
Question 82:
Learn Together is an educational NGO. It is setting up its new campus at Jabalpur for its Web-based activities. The campus has four compounds as shown in the diagram below:

Аnswer:
(ii) The most suitable place to house the server is Training Compound because it has maximum number of computers. •
(iii) (a) Repeater As per one layout (shown in (i), the repeater can be avoided as all distances between the compounds are <=100m.
(b) Hub/Switch Training building as it is hosting the server.
(iv) Optical fibre.
Question 83:
‘Vidya for All’ is an educational NGO. It is setting up its new campus at Jaipur for its Web-based activities. The campus has four buildings as shown in the diagram below:

Аnswer:
(ii) The most suitable place to house the server for this NGO is Training Building because it has the maximum number of computers.
(iii) (a) Repeater As per one layout (shown in (i)), the repeater can be avoided as all distances between the compounds are <= 100 m.
(b) Hub Switch Training building as it is hosting the server
(iv) Optical fibre
Question 84:
Freshminds University of India is starting its first campus in Ana Nagar of South India with its centre admission office in Kolkata. The university has three major blocks comprising of Office block, Science block and Commerce block is in 5 km area campus. ”
As a network expert, you need to suggest the network plan as per (i) to (iv) to the authorities keeping in mind the distance and other given parameters
Аnswer:
(ii) The most suitable place to house the server is Science Block because it has maximum number of computers.
(iii) Switch is the device to be installed in each of the block to connect all the computers.
(iv) Satellite connection
Question 85:
Eduminds University of India is starting its campus in a small town Parampur of Central India with its centre admission office in Delhi. The university has three major buildings comprising of admin building academic buildings and research building in 5 km area campus. As a network expert, you need to suggest the network plan as per (i) to (iv) to the authorities keeping in mind the distances and other given parameters.
Аnswer:
(ii) The most suitable place to house the server is Academic Building because it has maximum number of computers.
(iii) Switch is to be installed in each of building to connect all the computers.
(iv) Satellite connection
Question 86:
Institute of Distance Learning is located in Pune and is planning to go in for networking of four wings for better interaction. The details are shown below:

Аnswer:
Question 46:
Name any two components required for networking. Delhi 2011C
Аnswer:
Switch/Hub and Repeaters.
Question 47:
What is repeater? Delhi 2011C
Аnswer:
Repeater is an electronic device, that receives a signal and retransmits it at a higher level so that the signal covers longer distance. It’s required if the distance between source and destination is 90 m or more.
Question 48:
What was the role of ARPANET in the computer network? Delhi; All India 2010
Аnswer:
ARPANET (Advanced Research Projects Agency Network). The goal of this project was to connect computers at different universities and US defence.
ARPANET started with a handful of computer but it expanded rapidly.
Question 49:
Which of the following is not an unit for data transfer rate?
Аnswer:
(ii) Abps is not unit for data transfer rate.
Question 50:
What is the difference between trojan horse and virus in terms of computers? Delhi 2010
Аnswer:
Unlike viruses, trojan horse do not replicate themselves but they can be just a lot destructive. One of the most insidious type of trojan is a program that claims to rid your computer of viruses but instead introduce viruses onto your computer.
Question 51:
What term we use for a software/ hardware device, which is used to block, unauthorised access while permitting authorised communications. This term is also used for a device or set of devices configured to permit, deny, encrypt, decrypt, or proxy all (in and out) computer traffic between different security domains based upon a set of rules and other criteria. Delhi; All India 2010
Аnswer:
Firewall
Question 52:
Write the full forms of the following:
Аnswer:
Question 53:
Which of the following is not an unit for data transfer rate?
Аnswer:
(iii) Sbps
Question 54:
What is the difference between virus and worm in the computer? All India 2010
Аnswer:
The main difference between virus and worm is the method by which they reproduce and spread. A virus is dependent upon a boot sector and the transfer of files between machines to spread, while a worm can run completely independently and spread itself through network connections.
Question 55:
Write the full form of the following:
Аnswer:
Question 56:
Name any two common web browsers. All India 2010
Аnswer:
Google Chrome and Internet Explorer.
Question 57:
What is protocol? Which protocol is used to search information from Internet using an Internet browser? Delhi 2009
Аnswer:
Protocol is a set of rules that two or more computers must follow in order to communicate on network. HTTP (HyperText Transfer protocol) is used for searching information from Internet using Internet browser.
Question 58:
Name two switching techniques used to transfer data between two terminals (computers). Delhi; All India 2009
Аnswer:
Switching techniques used to transfer data between two terminals :
Question 59 :
Expand the following abbreviations
Аnswer:
Question 60:
What is protocol? Which protocol is used to copy a file from/to a remotely server ? All India 2009
Аnswer:
Protocol is a set of rules that two or more computers should follow in order to communicate on network. FTP (File Transfer Protocol) is used to copy a file from/to a remotely located server.
Question 61:
Expand the following terminologies
Аnswer:
Question 62:
Distinguish between Website and Web browser. Delhi 2009 (c)
Аnswer:
Website is a collection of related Web pages served from a single Web domain while Web browser is a software that is used to access and display the Web pages.
Question 63:
What is firewall? Delhi 2009 (C)
Аnswer:
Firewall is a security system that prevents an unauthorised access to a private network. Firewalls can be implemented in both hardware and software or combination of both.
2 Marks Questions
Question 64:
Differentiate between communication using Optical Fibre and Ethernet Cable in context of wired medium of communication technologies. All India 2017
Аnswer:
Differences between Optical Fibre and Ethernet Cable are as follows :
Question 65:
Janish Khanna used a pen drive to copy files from his friend’s laptop to his office computer. Soon his computer started abnormal functioning. Sometimes it would restart by itself and sometimes it would stop different applications running on it. Which of the following options out of (i) to (iv), would have caused the malfunctioning of the computer? Justify
the reason for your chosen option: All India 2017
Аnswer:
(i) Computer virus
Reason Computer virus can spread through external media such as CDs, pen drive etc. It is designed to infect the host program and gain control over the system without the owner’s knowledge.
Question 66:
Ms. Raveena Sen is an IT expert and a freelancer. She recently used her skills to access the Admin password for the network server of Super Dooper Technology Ltd. and provided confidential data of the organisation to its CEO, informing him about the vulnerability of their network security. Out of the following options (i) to (iv), which one most appropriately defines Ms. Sen? All India 2017
Justify the reason for your chosen option:
Аnswer:
(ii) Cracker
Reason Crackers are generally responsible for breaking into networks, cracking passwords in websites and programs and generally causing havoc through the Internet.
Question 67:
Write any two differences between twisted pair and coaxial pair cable. All India (C)2014
Аnswer:
Two differences between twisted pair and coaxial pair cable are as follows :
Question 68:
Give the full form of the following terms :
Аnswer:
4 Marks Questions
Question 69:
Hi Standard Tech Training Ltd. is a Mumbai based organisation which is expanding its office set-up to Chennai. At Chennai office compound, they are planning to have 3 different blocks for Admin, Training and Accounts related activities. Each block has a number of computers, which are required to be connected in a network for communication, data and resource sharing.
As a network consultant, you have to suggest the best network related solutions for them for issues/problems raised by them in (i) to (iv), as per the distances between various blocks/locations and other given parameters.
Аnswer:
(i) Training Block is the most appropriate block/location to house the SERVER in the CHENNAI office to get the best and effective connectivity because it has maximum number of computers.
(iii) Suggested device is firewall. And it will be placed where all messages are entering or leaving the entire network of the CHENNAI office.
(iv) Device: WiFi card
Protocol: TCP/IP
Question 70:
Uplifting Skills Hub India is a knowledge and skill community which has an aim to uplift the standard of knowledge and skills in the society. It is planning to set-up its training centers in multiple towns and villages pan India with its head offices in the nearest cities. They have created a model of their network with a city, a town and 3 villages as follows. As a network consultant, you have to suggest the best network related solutions for their issues/problems raised in (i) to (iv) keeping in mind the distances between various locations and other given parameters.
NOTE : In Villages, there are community centers, in which one room has been given as training center to this organisation to install computers.
The organisation has got financial support from the government and top IT companies.
Аnswer:
(i) B_TOWN is the most appropriate location of the server inside the B_HUB because it has maximum number of computers.
Ethernet cable is the best wired medium to connect the various locations within the B HUB.
(iii) Switch
(iv) Telnet
Question 71:
Intelligent Hub India is a knowledge community aimed to uplift the standard of skills and knowledge in the society. It is planning to set-up its training centers in multiple towns and villages pan India with its head offices in the nearest cities.
They have created a model of their network with a city, a town and 3 villages as follows.
As a network consultant, you have to suggest the best network related solutions for their issues/problems raised in (i) to (iv), keeping in mind the distance between various locations and other given parameters.
NOTE In Villages, there are community centers, in which one room has been given as training center to this organisation to install computers. The organisation has got financial support from the government and top IT companies.
Аnswer:
(i) YTOWN is the most appropriate location of the server inside the YHUB because it has maximum number of computers.
Ethernet cable is the best wired medium to connect the various locations within the YHUB.
(iii) Switch
(iv) Telnet
Question 72:
Perfect Edu Services Ltd. is an educational organisation. It is planning to set-up its India campus at Chennai-with its head office at Delhi. The chennai campus has 4 main buildings-ADMIN, ENGINEERING, BUSINESS and MEDIA.
You as a network expert have to suggest the best network related solutions for their problems raised in
(i) to (iv), keeping in mind the distance between the buildings and other given parameters.
Аnswer:
(i) ADMIN is the most appropriate location of the server inside the CHENNAI campus because it has maximum number of computers.
(iii) Firewall
(iv) (c) Video Conferencing
Question 73:
Xcelencia Edu Services Ltd. is an educational organisation. It is planning to set-up its India campus at Hyderabad with its head office at Delhi. The Hyderabad campus has 4 main buildings -ADMIN, SCIENCE, BUSINESS and ARTS. You as a network expert have to suggest the best network related solutions for their problems raised in (i) to (iv), keeping in mind the distances between the buildings and other given parameters.
Аnswer:
(i) ADMIN is the most appropriate location of the server inside the HYDERABAD campus because it has maximum number of computers.
(iii) Firewall
(iv) Videoconferencing
Question 74:
Trine Tech Corporation (TTC) is a professional consultancy company. The company is planning to set-up their new offices in India with its hub at .Hyderabad. As a network adviser, you have to understand their requirement and suggest them the best available solutions. Their queries are mentioned as (i) to (iv) below.
Physical locations of the blocks of TTC
Аnswer:
(i) TTC should install its server in Finance Block because it has maximum number of computers.
(iii) Satellite Link
(iv) Switch
Question 75:
Tech Up Corporation (TUC) is a professional consultancy company. The company is planning to set-up their new offices in India with its hub at Hyderabad. As a network adviser, you have to understand their requirement and suggest to them the best available solutions. Their queries are mentioned as (i) and (iv) below. You have to understand their requirement and suggest to them the best available solutions. Their queries are mentioned as (i) and (iv) below.
Аnswer:
(i) TUC should install its server in Human Resource Block as it is having maximum number of computers.
(iii) Satellite Link
(iv) Swatch