Identify the topology shown below. Write 2 advantages of this topology. -Technology

1 Answer

Answer :

Star Topology Two advantages of star topology are as follows :1. Easy to detect faults and remove It.2. Failure to single system will not bring down the entire network.

Related questions

Description : Mention any two main advantages of star topology over bus topology. -Technology

Last Answer : (i)It has centralized control.(ii) Fault diagnosis is easy.

Description : Write the HTML code to generate the following table on a Web page with the contents and alignment exactly as shown below: -Technology

Last Answer : The HTML code is

Description : In a Bank’s database, there are two tables ‘Customer’ and ‘Transaction’ as shown below. Write a query to display customer’s name who has -Technology

Last Answer : (i) Select cust_name from customer c,transaction t where c.Acc_No=t.Acc_No and Transaction_Type= 'Debit';(ii)Select cust_name, t.* from customer c, transaction t where c.Acc_No=t.Acc_No;(iii) ... total amount of all type of transactions, it will only display the total of credit transactions only.

Description : Write a code to plot the speed of a passenger train as shown in the figure given below: -Technology

Last Answer : import matplotlib.pyplot as pltimport numpy as npx = np.arange(1, 5)plt.plot(x, x*1.5, label='Normal')plt.plot(x, x*3.0, label='Fast')plt.plot(x, x/3.0, label='Slow')plt.legend()plt.show()

Description : Which of the following is not a network topology : Star, Mesh , Tree, Bug , Bus -Technology

Last Answer : Answer : Bug

Description : Mr. Suman, a programmer in New Era Programming World has designed a registration page for a hobby club as shown below: -Technology

Last Answer : (i) int x=c1.getSelectedIndex();int fee=0;if(x==0)fee=1000;else if(x==1)fee=1500;else if(x==2)fee=2000;else if(x==3)fee=2500;t2.setText(''+fee);(ii) double disc=0;int fee=Integer.parseInt(t2. ... (t2.getText());double net=fee-disc;t4.setText(''+net);(iv) System.exit(0);(v) c1.addItem('Reading');

Description : In a Bank’s database, there are two tables ‘Customer’ and ‘Transaction’ as shown below. -Technology

Last Answer : (i)Acc_No, Cust_Phone(ii)All the columns having capability to become Primary Key are known as Candidate Keys.(iii)Acc_No(iv)Trans_Id

Description : Identify input/output devices from the clues given below: (a) Transfers typed or handw -Technology

Last Answer : (a) Scanner(b) Barcode reader(c) Optical Mark Recognition (OMR)(d) Magnetic Ink Character Recognition (MIGR)(e) Printer (f) Speaker

Description : Carefully study the Web page given below. Identify 10 tags (structural as well as formatting tags) that have been utilized -Technology

Last Answer : 1. to specify the title of the Web page.2. contains all the content that is to be displayed on the Web page and all the various formatting and structural tag.3. used to create an unordered ... anchor tag. Use the href attribute to provide the reference of the Web page that you want to hyperlink.

Description : Carefully study the Web page given below. Identify 10 tags (structural as well as formatting tags) that have been utilized in creating this -Technology

Last Answer : 1. to specify title of the Web page.2. contains all the text content that is to be displayed on Web page and all the various formatting and structural tag.3. defines the most important and biggest ... provide caption to the table.9. used to create a table row.10. used to define data cells.

Description : Write the HTML code to generate the following table with the contents exactly in the same format as shown within the table: -Technology

Last Answer : The HTML code is

Description : Identify the likely organisms (1), (2), (3) and (4) in the food web shown below. Hawks Snakes Lion Foxes Garden lizard Grass- (4) Sparrow hopper Vegetation seeds (2) Owls Mice (1) (3) (1) ( ... a) Deer Rabbit Frog Rat (b) Dog Squirrel Bat Deer (c) Rat Dog Tortoise Crow (d) Squirrel Cat Rat Pigeon

Last Answer : (a) Deer Rabbit Frog Rat

Description : Identify the molecules (A) and (B) shown below and select the right option giving their source and use. (a) (A) Cocaine Erythroxylum Accelerates coca the transport of dopamine (b ... - Atropa Produces noid belladonna hallucinations (d) (A) Morphine Papaver Sedative and somniferum pain killer

Last Answer : (d) (A) Morphine Papaver Sedative and somniferum pain killer

Description : A micro-interaction has been designed for a menu' icon. On clicking this icon, it changes into a different icon representing back', depicted by an arrow. On another click it changes back to the menu icon. Shown below are 13 key-frames of ... 4, 13 D. 1, 4, 9, 3, 5, 6, 8, 12, 2, 10, 11, 7, 13

Last Answer : C

Description : A glass cube with 27 equal compartments is filled with water. There are a few red balls floating inside the compartments. Three views of the cube are shown below. Identify the red ball(s) that is/are represented incorrectly in the top view. 

Last Answer : B

Description : Identify the error(s) in the following HTML code. Also, write the correct code. -Technology

Last Answer : The error in the code is that in place of color attribute there should be bgcolor.The correct code is

Description : Identify the errors and write the correct HTML code 1. -Technology

Last Answer : 1. 2.

Description : Identify error(s) in the following HTML code. Also, write the correct code. type=“a” start=“d”> -Technology

Last Answer : tag’s attributes should be placed in between . In the list, the start attribute must be set to a numeric value and type attribute specifies ‘A’, ‘a’, T ‘i’ or ‘1’. So, the correct code is

Description : Identify the errors in the following HTML code and write the correct code with each correction underlined. -Technology

Last Answer : Error 1 The tag must be within element.Error 2 bgcolor attribute of body element supports a color like red, green or its color value.Error 3 tag needs a source attribute src to place an ... element must be closed not bgcolor attribute.The correct code is as follows:IMAGESHERE IS MY IMAGE FILE

Description : It is desired to connect five computers that are joined at a single point called central node. i) Draw the setup. ii) Name the topology. iii) State two advantages and disadvantages of this topology.

Last Answer : i. Setup:  ii. Name of topology: Star topology iii. Advantages of Star Topology 1) As compared to Bus topology it gives far much better performance, signals don't necessarily get ... as well number of nodes which can be added in such topology is depended on capacity of central device.

Description : State two advantages of Mesh topology.

Last Answer : Network Topology refers to layout of a network. Network topology specifically refers to the physical layout of the network especially the locations of the computers & how the cable is run ... to Point Connection: Point-to-point links make fault identification and fault isolation easy.

Description : What is network topology? Explain star and bus topology with its advantages 

Last Answer : Topology of LANs  Networks can be laid out in different ways. The physical layout, or shape of network, or the way in which network connections are made is called a topology. It refers ... computer failure does not bring down the whole network It is more flexible among the remaining topology.

Description : What is an E_mail? Write two advantages of an E_mail. -Technology

Last Answer : E-mail (Electronic mail) is a popular Internet service, which is used for sending or receiving messages electronically over a computer network.The advantages are as follows:1. E-mail is a cost-effective medium of communication.2. Ease of use.

Description : Write any two advantages of using database. -Technology

Last Answer : 1. Can ensure data security.2. Reduces the data redundancy.

Description : Define database management system. Write two advantages of using database management system for school. -Technology

Last Answer : Database Management System (DBMS) is a collection of programs that enable users to create, maintain database and control all the access to the database. The primary goal of the DBMS is to ... centralized location.2. It provides security to the personal information of the school, stored in it.

Description : Write down the advantages of networking for an office. -Technology

Last Answer : Various advantages of networking for an office are as follows:1. Using network we can store our files in many places or computers for data recovery purpose from a disk crash.2.It provides sharing of ... , i.e. they can be centralised and can be accessed by anyone from the central system itself

Description : Write the advantages of using Unicode to represent text. -Technology

Last Answer : Unicode encoding standard provides the basis for processing, storage and interchange of text data in any language in all modern software and information technology protocols.

Description : Write the advantages of using Unicode to represent text. -Technology

Last Answer : Advantages of using Unicode to represent text are as follows :1. Allows for multilingual text using any or all the languages that you desire.2. Text in any language can be exchanged worldwide

Description : Write the HTML code to create the exact table which is given below: ADMNO SNAME NAME DOB -Technology

Last Answer : The HTML code is ADMNO SNAMENAMEDOB1110MANJITRANJIT4-MAR-1998

Description : Write command for the operations (i) to (iii) based on the spreadsheet below: -Technology

Last Answer : 1. At cell F2, type =D2*E2 and then copy this formula using mouse Fill handle onto range F3: F5.2. At cell G2, type =IF(C2=”Consumable”, F2*0.07, F2*0.11) and then copy this formula using mouse Fill handle onto range G3: G5.3. At cell G6, type =SUM(G2: G5).

Description : Write the HTML code to generate the following web page with the given below specifications: -Technology

Last Answer : Income Tax Slabs 2017-18INCOME TAX SLABS 2017-18S.No.Income RangeTax%10-250000NIL2250001-50000010%3500001-100000020%4>100000030%Next Page

Description : With reference to the above given tables, write commands in SQL for (i) and (ii) and output for (iii) below: -Technology

Last Answer : (i) select TName, Passenger from Train T, Reservation R where T.TrainId=R.TrainId;(ii) select T.* from Train T, Reservation R where T.TrainId!=R.TrainId;(iii)TrainIdTNameSourceDestination3424Lucknow MailLucknowNew Delhi5400Century ExpressNew DelhiKanpur

Description : Write a python code to create a data frame with appropriate headings from the list given below : -Technology

Last Answer : import pandas as pd# initialize list of listsdata = [['S101', 'Amy', 70], ['S102', 'Bandhi', 69], ['S104','Cathy', 75], ['S105', 'Gundaho', 82]]# Create the pandas DataFramdf = pd.DataFrame(data, columns = ['ID', 'Name', 'Marks'])# printdataframe. print(df )

Description : Write a small python codeto create a dataframewith headings(a and b) from the list given below : [[1,2],[3,4],[5,6],[7,8]] -Technology

Last Answer : import pandas as pddf = pd.DataFrame([[1, 2], [3, 4]], columns = ['a','b'])df2 = pd.DataFrame([[5, 6], [7, 8]], columns = ['a','b'])df = df.append(df2)

Description : Write the code given below using ‘for’ loop instead of ‘while’ loop : -Technology

Last Answer : The given code using ‘for’ loop instead of ‘while’ loop :int ifor (i = 1 ; i < = 5 ; i + +){if (1 * i = = 4)jTextFieldl. setText ( “ “ + i) ;}

Description : Explain topology method used in LAN technology in detail.

Last Answer : LAN Topologies: Network topology is a physical schematic which shows interconnection of the many users. There are four basic topologies as under: (i) Direct Connection or one to all topology ( ... temporarily, inserting the new node and then reestablishing the complete ring path.

Description : Which section is used for text and tags that are shown directly on your Web pages? -Technology

Last Answer : (c) Information in tag is directly displayed on Web pages.

Description : What can you do if you want each slide should be shown for a specific amount of time? -Technology

Last Answer : Setting advance slide to one mouse click is the default and a simple setting. If you want each slide to be shown for a specific amount of time, click automatically after and enter the number of seconds. Click Apply to All slides.

Description : Compute the equivalent resistance of the network shown in A and B? -Technology

Last Answer : 1 is correct

Description : A company in Mega Enterprises has 4 wings of buildings as shown in the diagram : Center to center distances between various Buildings: -Technology

Last Answer : (i) Most suitable layout according to distance is :(ii) Star Topology(iii) Broadband.(iv). (a)Not required. Repeaters may be skipped as per above layout (because distance is less than 100 m)(b)In every wing(v) Radio Waves

Description : Can you identify examples of refugees utilizing technology to maintain contact with the homeland?

Last Answer : answer:@JonnyCeltics you do realize the vast majority of refugees do not have electricity, basic food and water and therefore little or no access to social networking, right? Those speaking ... (Facebook included) after last years quake/tsunami and the resulting nuclear meltdown in northern Honshu.

Description : Identify the software that helps you in sending and receiving an E_mail: (a) MS_Office (b) Internet Explorer -Technology

Last Answer : (c) MS-Outlook is preferred E-mail client which is used for sending or receiving an E-mail.

Description : Identify the columns out of the given three, which should not be present in each of the following tables: -Technology

Last Answer : (i) DateofBirth(ii) Admno(iii) Phonenumber

Description : Primary key is used to …………….. identify the record. -Technology

Last Answer : Primary key is used to uniquelyidentify the record.

Description : Carefully read the following descriptions and identify what is being talked about. 1. It consists of two insulated wires twisted around each other, -Technology

Last Answer : 1. Twisted pair cable2. Crosstalk3. Radiowave4. Wired communication channel5. Resource sharing

Description : Identify the odd term amongst the following. (a) Microwave (b) Radiowave (c) Bluetooth -Technology

Last Answer : (d) Except optical fibre, all are wireless transmission media.

Description : Identify which one is an attribute or a tag? 1. Body 2. Type -Technology

Last Answer : 1. Body – Tag2. Type – Attribute3. Br – Tag4. Link – Attribute5. Face – Attribute

Description : Carefully study the Web page given here. Identify 10 tags -Technology

Last Answer : 1. . It encloses the entire HTML document and tells the browser that it is reading an HTML document and to display as such.2. It encloses the head of the HTML document and it is used to contain ... It is used to insert a horizontal line.10. .. This tag is used to align the text centrally.

Description : Identify the option, which is not a feature covered under device management? (a) Speed (b) Spooling (c) Sharing (d) Programming -Technology

Last Answer : (d) Among given options, programming is not a feature covered under device management.

Description : Identify which of the following is a tag or an attribute ? 1. link 2. table -Technology

Last Answer : 1. link — attribute2. table — tag3. align — attribute4. href— attribute5. br — tag