Searching for "inline"

Q:

Which HTML attribute is used to define inline styles?

 

A) <header> B) <strong>
C) <style> D) <alt>
 
Answer & Explanation Answer: C) <style>

Explanation:

The style attribute specifies an inline style for an element. The style attribute will override any style set globally,

 

e.g. styles specified in the <style> tag or in an external style sheet.

 

Report Error

View Answer Report Error Discuss

Filed Under: Web Technology
Exam Prep: Bank Exams

Q:

Replace each letter for a unique digit so that the equation is correct

Answer

(1+9+6+8+3) x (1+9+6+8+3) x (1+9+6+8+3) = 19683

Report Error

View answer Workspace Report Error Discuss

Subject: Math Puzzles Exam Prep: Bank Exams , AIEEE
Job Role: Bank Clerk

Q:

Study the given bar graph and pie chart to answer the following questions.

The bar graph shows the production (in thousand tonnes) of Wheat, Rice and Maize in different states.

The pie-chart shows the percentage of agricultural land in the given six states.

Productivity = 

1.The productivity of which state is the maximum ?

1. Bihar       2. Haryana     3. Punjab     4. UP       5. MP

 

2.The production of which state is the maximum ?

1. Bihar       2. MP         3. Haryana       4. UP       5. Punjab

 

3.The prodution of wheat in punjab is what per cent more than the production of Maize in odisha ?

1. 350%       2. 250%       3. 300%       4. 200%       5. 400%

 

4.What is the ratio of the production of Rice in Bihar to the production of Wheat in Haryana ?

1. 2:3           2. 3:2           3. 2:1           4. 1:1             5. 1:2

 

5.If MP exports 40% of Rice at the rate of Rs.30 per kg and UP exports 30% of Rice at the rate of Rs.32 per kg, then what is the ratio of the income from the exports ?

1. 65:48       2. 31:42       3. 43:54       4. 57:62       5. 1:2

Answer

1. Answer : 2


Explanation : Productivity = Total production/area of Agr.land 


Productivity of UP = [ (35000+30000+25000) / (30/100) ] = 300000  


Productivity of MP = [ (30000+37500+27500) / (25/100) ] = 380000  


Productivity of Bihar = [ (22500+27500+25000) / (20/100) ] = 375000 


Productivity of Odisha = [ (22500+15000+10000) / (5/100) ]= 950000  


Productivity of Haryana = [ (30000+25000+35000) / (8/100) ] = 1125000  


Productivity of Punjab = [ (40000+35000+30000) / (12/100) ] = 875000 


The Productivity of Haryana is the maximum.  


 


 


2. Answer : 5  


Explanation : Production of Punjab is maximum = 105000 tonnes 


 


 


3. Answer : 3 


Explanation : Production of Wheat in Punjab = 40000 tones


Production of Maize in Odisha = 10000 tones


Required % = (40000 - 10000)/100 = 300% 


 


 


4. Answer : 4 


Explanation : The ratio of prodution of Rice in Bihar to the production of Wheat in Haryana = 25000 tonnes : 25000 tonnes = 1 : 1  


 


 


5. Answer : 1  


Explanation : Income of MP from export of 40% of Rice at the rate of Rs.30 per kg = Rs.39crore


Income of UP from export of 30% of Rice at the rate of Rs.32 per kg = Rs.28.8 crore 


Required ratio = 39 : 28.8 = 390 : 288 = 65 : 48

Report Error

View answer Workspace Report Error Discuss

Subject: Bar Charts Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

Q:

What are the difference between in-stream procedure and inline procedure in JCL ?

Answer

An in-stream PROC is defined right in the jcl stream and doesn't reside in the proclib. This is an older technique associated with punched cards but it is still in use with setup and installation programs from vendors.


for the in-line perform instead of:


perform add-paragraph until switch = 'y'


you can code


perform until switch = 'y'


body of code


end-perform


body of code is the code from add-paragraph appearing in-line (ie right in the perform) instead of in a separate paragraph (out of line code)

Report Error

View answer Workspace Report Error Discuss

Q:

In this question ,there is a word writen in capital letter, with one letter underlined. For each letter in that word there is a code written. That code is denoted by either 1 , 2, 3, 4 or 5 notin the same order. you have to find out the exact code for the underlined letter in the word. The number of that code is the answer.

1. N    2. G    3. P    4. F    5. C

Answer

Answer : 5


 


 


 


Explanation : Given that, For each letter in the word (FLIES) there is a code written and also that code is denoted by either 1 , 2, 3, 4 or 5 


 


Apply the below code, It exactly matches the Given Condition


 


Letters at odd- numbered places shift three positions backward and letters at even-numbered places shift two positions forward as in English alphabet.


 



 


Here, Odd- Numbered Places F, I , S shift three positions backward in English Alphabet.


 


Even- Numbered Places L, E shift two positions forward in English Alphabet.


 


 


 


Therefore, exact code for the underline letter (F) is C.


 


 


 


So the Answer is 5.

Report Error

View answer Workspace Report Error Discuss

Q:

The value of

 is:

Answer

2n+2n22x2n - 2n = 2n1 + 122n(2-1) = 32

Report Error

View answer Workspace Report Error Discuss

Subject: Numbers Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

Q:

The total number of prime factors in the expansion

Answer

 


2211 x 75 x 112=> 222 x 75 x 112


 Total number of prime factors is (22+5+2) = 29

Report Error

View answer Workspace Report Error Discuss

Subject: Numbers Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

Q:

What are the advantages of the external over inline style methods?

Answer

- External Style Sheets are useful as it keeps the style and content separately and doesn’t allow it to mix with each other. It can control the styles for multiple documents, whereas inline style mixes the content with the style and make the code messier.


- External style sheet allows the creation of various classes in a structured way, whereas inline style sheet can’t create or control class elements.


- External style sheet can use selector and grouping methods to apply styles, whereas inline styles can’t use selector and grouping methods.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology