Please select a subject first
Advertisements
Advertisements
A school that has 500 students wants to identify beneficiaries of the merit-cum-means scholarship, achieving more than 75% for two consecutive years and having a family income of less than 5 lakh per annum. Briefly describe data processing steps to be taken to beneficial prepare the list of schools.
Concept: undefined >> undefined
Mention any two main advantages of using a network of computing devices.
Concept: undefined >> undefined
Advertisements
Write down the names of a few commonly used networking devices.
Concept: undefined >> undefined
How is tree topology different from bus topology?
Concept: undefined >> undefined
What do you mean by a modem? Why is it used?
Concept: undefined >> undefined
Explain the following device:
Switch
Concept: undefined >> undefined
Explain the following device:
Repeater
Concept: undefined >> undefined
Explain the following device:
Gateway
Concept: undefined >> undefined
Explain the following device:
Router
Concept: undefined >> undefined
Explain the following device:
NIC
Concept: undefined >> undefined
Which communication mode allows communication in both directions simultaneously?
Concept: undefined >> undefined
______ is a communication methodology designed to deliver both voice and multimedia communications over Internet protocol.
Concept: undefined >> undefined
Which of the following statement(s) would give an error after executing the following code?
S="Welcome to class XII" # Statement 1
print(S) #Statement 2
S="Thank you" # Statement 3
S[0]= '@' # Statement 4
S=S+"Thank you" # Statement 5Concept: undefined >> undefined
Rao has written a code to input a number and check whether it is prime or not. His code is having errors. Rewrite the correct code and underline the corrections made.
def prime():
n=int(input("Enter number to check :: ")
for i in range (2, n//2):
if n%i=0:
print("Number is not prime \n")
break
else:
print("Number is prime \n’)Concept: undefined >> undefined
Quickdev, an IT based firm, located in Delhi is planning to set up network for its four branches within a city with its Marketing department in Kanpur. As a network professional, give solution to the questions, after going through the branches locations and other details which are given below:
| DELHI BRANCH | |
| BRANCH A | BRANCH B |
| BRANCH C | BRANCH D |
| KANPUR BRANCH |
| MARKETING DEPT. |
Distance between various branches is a follows:
| Branch | Distance |
| Branch A to Branch B | 40 m |
| Branch A to Branch C | 80 m |
| Branch A to Branch D | 65 m |
| Branch B to Branch C | 30 m |
| Branch B to Branch D | 35 m |
| Delhi Branch to Kanpur | 300 km |
Number of computers in each of the branches:
| Branch | Number of Computers |
| Branch A | 15 |
| Branch B | 25 |
| Branch C | 40 |
| Branch D | 115 |
- Suggest the most suitable place to install the server for the Delhi branch with a suitable reason.
- Suggest an ideal layout for connecting all these branches within Delhi.
- Which device will you suggest, that should be placed in each of these branches to efficiently connect all the computers within these branches?
- Delhi firm is planning to connect to its Marketing department in Kanpur which is approximately 300 km away. Which type of network out of LAN, WAN, or MAN will be formed? Justify your answer.
- Suggest a protocol that shall be needed to provide help for transferring of files between Delhi and Kanpur branch.
Concept: undefined >> undefined
The modem at the sender’s computer end acts as a ______.
Concept: undefined >> undefined
What is the use of a raise statement? Write a code to accept two numbers and display the quotient. Appropriate exception should be raised if the user enters the second number (denominator) as zero (0).
Concept: undefined >> undefined
Differentiate between readline() and readlines().
Concept: undefined >> undefined
Write the use and syntax for the following method:
read()
Concept: undefined >> undefined
Use assert statement in Question No. 3 to test the division expression in the program.
Concept: undefined >> undefined
