Question 4
a)
AP,10
collection differ
TOTAL[25MARKS
As a network administrator, design a network diagram for an organization having six
offices in in a different region making sure that users can access all the organization’s
CR,10 b) A technician wants to securely manage several remote network devices. Explain what
should be implemented to securely manage the devices?
EV,5
c) After a company rolls out software updates, Ann, a lab researcher, is no longer able to use lab equipment connected to her PC. The technician contacts the vendor and determines there is an incompatibility with the latest IO drivers. Explain what should the technician perform so that Ann can get back to work as quickly as possible?
Question 3
a) I have no need for security management functions because I am using a dedicated and secure management network. Please comment on this statement
AP,5
2
b) Performance and accounting management are similar, in that both are interested in collecting usage data from the network. Describe an important way in which the use of this data and the requirements for its
AN,10
c)A company has had several virus infections over the past few months. The infections were caused by vulnerabilities in the application versions that are being used. What should an
administrator implement to prevent future outbreaks?
Question 2
a) Explain two factors that can be important to the business success of a third-party
management application vendor that potentially has to compete with a network management offering of a network equipment vendor
AP,5
b) Explain the most important reason for using a dedicated management network instead of a shared one?
Assume that you need to manage a network that contains three different types of
devices. To avoid dependence on a particular vendor, you have two suppliers for each
type of device. Explain some of the ways in which management standards are
important in this situation.
c)
AN,10
AP,10
TOTAL[
Question 1
a) A network technician has been tasked to configure a new network monitoring tool that will examine interface settings throughout various network devices. Explain the protocol needed to be configured on each network device to provide that information in a secure manner AP,5
b) A company has decided to update their usage policy to allow employees to surf the web unrestricted from their work computers. Which policy should the IT security team implement to help protect the network from attack as a result of this new policy
c)
Explain why a management protocol needed between managers and agents, and why
isn't mere connectivity between them sufficient?
Question 2
A) The AIT canteen wants you to write a script for them which would do the following
I) receive records from the user and keep these records into a file, the records must include
ID
Name of meal
Price of meal
Quantity bought today
Sales made for the day
2
Today the sales person wants to make seven entries into the file via the command line interface.
Your script should be able to find to present the sales person with the ability to
Search for a particular meal by ID
Search for a particular meal by name
find out how much money has been made from the sales of a particular
meal
list all records
list all meals and their prices
list a particular meal and its price
B) With a shell script explain how to use case
C) With code explain how the following work
if statements
if else statements
if elif else fi statements
D) Explain the difference between= grep -i "some string" some file and grep -iw "some string" some file
[
Question 1
A) Write a game entirely in shell script which generates an unknown number and prompts the player to enter a number. Your game should receive the number and compare it to the generated number, let your game tell the player whether the number entered is higher than or lower than the hidden number until the player is able guess the number or quit the game, upon guessing the right number the game should congratulate the player for winning and tell the player how many attempts were made before guessing the right number.
B) Write a shell script that uses a function to count the number of files in the present working directory and output their number to the screen.
C)Explain with examples how to make variables available to child processes/shells
D) Many beginners are confused about the difference between the working of touch and of cat, could you please make the difference clear with an example
The Admission to a professional course is done using the following conditions.
a) Marks in Maths> =60
b) Marks in Physics >=50
c) Marks in chemistry >=40
d) Total in all the three subjects >=200 (or) Total in Maths and Physics >=150
Given the marks of three subjects, write a C++ program to process the applications to list the eligible candidates. [Note: Use call by value]
Write a python statement for the following. a) Assigns the product of 10 and 15 to the variable product. b) Subtracts the variable down_payment from the variable total and assigns the result to the variable due. c) Multiplies the variable subtotal by 0.15 and assigns the result to the variable total. d) Prompts the user to enter his or her favorite color and assigns the user’s input to a variable named color. e) Assume the variable sales references a float value 56.3355. Round the value to two decimal points.
Mr. Seth is a Goldsmith. He wants to know the amount of money earned from the sale. On a Normal day. i.c.. Weekday there is a sale of Rs. 10000/- which is fixed. On a weekend, there is an additional sale of Rs. 5000/-, and on a festival day (be it either week day or week
end), there is an additional sale of Rs. 20000/-.
Following are requirements to solve the problem
a. The type of day i.e., weekend or festival day has to be captured. b. Check for the type of day and compute the total amount of sale
c. Display the amount of sale in Rupees.
Write a function to add 2D array using pointer. Return the array using pointer. (call by value)