Which of the following is used to specify the beginning of a table’s row? (a) <table> -Technology

1 Answer

Answer :

(b) <tr> tag indicates the beginning of a table’s row.

Related questions

Description : The tag is used to specify the individual table data in a table. (a) (b) -Technology

Last Answer : (b)The tag is used to specify the individual table data in a table.

Description : The attribute used to specify the background color of a table is (a) color (b) bgtable -Technology

Last Answer : (d) bgcolor is used to specify the background color of a table.

Description : The tag is used to specify the………..part of the table. -Technology

Last Answer : The tag is used to specify the headerpart of the table.

Description : ‘tag is used to specify the column heading in a table. -Technology

Last Answer : True tag is used to specify the column heading in a table.

Description : Write down the steps to insert a new row into the table. -Technology

Last Answer : Insert a RecordSteps to insert a record in a Datasheet View are as follows:Step 1 When you create a table, a new blank record automatically appears in the second row of the table or If you enter ... into the fields.Step 3 When you have finished adding records in the datasheet, save it and close it.

Description : The rowspan attribute with < table > tag is used to merge more than one cells row wise. -Technology

Last Answer : True The rowspan attribute merges the cells row wise in a table.

Description : Table row tag can accept one attribute. -Technology

Last Answer : False The tag can accept many attributes.

Description : Why should you specify a background color, if you are using an image for the actual background of your page? -Technology

Last Answer : (b) We have to use background color because if in any case image is not displayed then at least background color will be shown on that place.

Description : topmargin is used to specify the distance between the top of the document and top of the browser window. -Technology

Last Answer : True topmargin is an attribute of the tag, which is used to specify the distance between the top of the document and top of the browser window.

Description : Which attribute is used to specify the location of an image file in the tag? Explain. -Technology

Last Answer : The attribute you need to get an image to display on a Web page is the src attribute.In the src attribute of the tag, you can specify the path of the image that you want to add to the ... image somewhere else on the same server, or an image stored on another server.The syntax for src attribute is

Description : …………. attribute is used to specify the location of an image file. (a) alt (b) src -Technology

Last Answer : (b) src attribute is used to specify the location of an image file.

Description : Why is it important to specify width and height attribute in tag? -Technology

Last Answer : (d) Helps the browser to load the Web page faster.

Description : The align attribute of the tag is used to specify the text that is to be displayed -Technology

Last Answer : False alt attribute is used to specify the text that is to be displayed in case the browser which does not support graphics.

Description : It is not important to specify an integer value as the width of the border of an image. -Technology

Last Answer : False Width takes an integer values that are in pixels.

Description : Name the different filename extensions and specify, when they are used? -Technology

Last Answer : Some common filename extensions are as follows:1. .docx – MS-Word document2. .rtf – WordPad document3. .txt – Notepad text file4. .eml – E-mail file5. .xlsx – MS-Excel file6. .htm – HTML file (Web page)7. .html – HTML file (Web page)8. .pptx – MS-PowerPoint presentation

Description : DTD definition is used along with XML to specify -Technology

Last Answer : (c) DTD definition is used along with XML to specify the structure of XML document.

Description : ………………. is a special effect that allows to specify how to navigate from one slide to other. -Technology

Last Answer : Transition is a special effect that allows to specify how to navigate from one slide to other.

Description : To specify the number of decimal places in a cell the ……………… tab of the Format cells dialog is used. -Technology

Last Answer : To specify the number of decimal places in a cell the Fill series tab of the Format cells dialog is used.

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 : Database is made up of all the following components except (a) tables (b) queries -Technology

Last Answer : (d) A database is made up of tables, queries, and forms.

Description : A database that contains tables linked by common fields is called a (a) Centralized database (b) Flat file database -Technology

Last Answer : (c) Relational database stores data in the form of tables which are linked by common fields.

Description : A report allows you to represent data retrieved from one or more tables so that, it can be analysed and printed if required. -Technology

Last Answer : True When you want to print those records which are fetched from your database then, reports are more useful for this purpose.

Description : In a MS_Access database, which component is not present? (a) Formula Bar (b) Tables -Technology

Last Answer : (a) MS-Access contains various components, i.e. Tables, Queries, Forms, Reports, Macros and Modules.

Description : The different objects supported by MS_Access are tables, queries, ………… and reports. -Technology

Last Answer : The different objects supported by MS-Access are tables, queries, forms, and reports.

Description : Which tag is used to add columns in the tables? (a) (b) -Technology

Last Answer : (b) is used to add columns in the tables.

Description : Which tags divide HTML tables in multiple section? -Technology

Last Answer : , and

Description : Define cell padding and cell spacing with respect to tables in HTML. -Technology

Last Answer : CELLSPACING controls the space between table cells and CELLPADDING sets the amount of space between the contents of the cell and the cell wall.

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 : 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 : 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 : How many rows and column will be there in the Cartesian product of the above given tables. Also mention the degree and cardinality -Technology

Last Answer : Cartesian Product:Number of Rows: 20Number of Columns: 9Degree: 9Cardinality: 20

Description : Consider the following tables PATIENT and TEST and answer the questions that follow : -Technology

Last Answer : Primary key in PATIENT and TEST tables are PCODE and TESTID respectively. Because primary key of a relational table uniquely identifies each record.Foreign key in PATIENT table is TESTID whose value is derived from the primary key (TESTID) of another table (TEST).

Description : Consider the tables given below. Salesperson -Technology

Last Answer : (i) Primary, Foreign(ii) Salespersons cannot be set as the primary key in the table Orders because table Orders has already primary key and one table cannot have more than one primary key column.

Description : HTML tag for row is (a) (b) -Technology

Last Answer : (b) HTML tag for row is .

Description : A cell is an intersection of a row and a column. -Technology

Last Answer : True A cell is an intersection of a row and a column.

Description : The tag (column setting) have higher priority than tag (row setting). -Technology

Last Answer : True The tag (column setting) have higher priority than tag (row setting).

Description : Soham has clicked on the cell residing at the intersection of first row and ninth column. What will be the address of the selected cell? -Technology

Last Answer : First row and ninth column address will be II.

Description : First row and ninth column address will be II. -Technology

Last Answer : There are two methods of adding a new worksheet iasm Excel workbook; Insert worksheet tab at the bor >m and Insert button on cells group under Home tab.

Description : A cell range starting from first row, first column to fourth row and fifth column be can be represented as -Technology

Last Answer : (a) [A1: E4] because row count starts from 1 and column count starts from A andfirst we write the starting cell address.

Description : Address of the cell at 10th column and 30th row is ……………… -Technology

Last Answer : Address of the cell at the 10th column and 30th row is J30.

Description : Write a small python code to drop a row from data frame labeled as 0. -Technology

Last Answer : # Drop rows with label 0df = df.drop(0)print(df )

Description : Name SQL Single Row functions (for each of the following) that 1. returns a number. -Technology

Last Answer : (i) ASCII () function returns a number.(ii) LCASE () function returns lowercase letters .(iii) DAYNAME () function returns names of days.(iv) DAYOFWEEK () function returns weekday number

Description : State any two differences between single row functions and multiple row functions. -Technology

Last Answer : Differences between single row functions and multiple row functions.(i) Single row functions work on one row only whereas multiple row functions group rows(ii) Single row functions return one output per row whereas multiple row functions return only one output for a specified group of rows.

Description : The action ‘STACK(A, B)’ of a robot arm specify to _______________ a) Place block B on Block A b) Place blocks A, B on the table in that order c) Place blocks B, A on the table in that order d) Place block A on block B

Last Answer : d) Place block A on block B

Description : The anchor tag signals the beginning of the text. -Technology

Last Answer : False Anchor tag is used to create hyperlinks not text.

Description : How do you tell the system that a transaction is beginning -Technology

Last Answer : When a transaction begins, Oracle Database assigns the transaction to an available undo data segment to record the undo entities for the new transaction. A transaction ID is not allocated until an ... ID is unique to a transaction and represents the undo segment number, slot and sequence number.

Description : What would you pay for this coffee table and two end tables? What do you think they're worth?

Last Answer : Zaku…I accidentally posted two of the same picture. See “Close up of coffee table” again.

Description : Who is more guilty of using Government handouts, Employees that are not paid a living wage and rely on them just to put food on the table at the end of the week, or employers that don't pay a living wage knowing the employees can access it to put food on their tables at the end of their work week?

Last Answer : Conservatives scream for smaller government, so stop making the lowest income earner depend on it so much, maybe if these people didn’t need it at the end of their week you might just get your wish.

Description : HTML/Tables: My table is on strike!

Last Answer : There's no need to be using tables in that design. Tables for layout is bad practice. Also, wrapping p elements in a span is invalid html.. Inline elements should never contain block elements - only other inline ... case, to be honest.. It's been years since I've tried to use a table like that!

Description : Look at data in Tables 1.3 and 1.4. Is Punjab ahead of Bihar in literacy rate etc. as it is in terms of per capita income ? Table 1.3: Per Capita Income of Select States -SST 10th

Last Answer : We can notice that Infant mortality rate is 25, 12, and 43 in different states named Maharashtra, Kerala, and Bihar respectively. Literacy rate is 82, 94 and 62 in the same states and if we talk ... top in literacy rate and Bihar is very far from these two states if we compare the literacy rate.