Q1:
Data Interpretation > Tabular Data
Hard
Following expenditure was incurred by a company under different heads:
<style> table { border-collapse: collapse; margin: 10px 0; } th, td { border: 1px solid #ccc; text-align: left; padding: 8px; } th { background-color: #f2f2f2; color: #333; } tr:nth-child(even) { background-color: #f9f9f9; } </style> <table border="1"> <thead> <tr> <th>Year</th> <th>Salary</th> <th>Cost of components</th> <th>Power</th> <th>Interest</th> <th>Taxes</th> </tr> </thead> <tbody> <tr> <td>2000</td> <td>288</td> <td>296</td> <td>26.4</td> <td>12.2</td> <td>32.0</td> </tr> <tr> <td>2001</td> <td>299</td> <td>332</td> <td>28.4</td> <td>14.2</td> <td>34.6</td> </tr> <tr> <td>2002</td> <td>298</td> <td>382</td> <td>26.2</td> <td>14.8</td> <td>38.8</td> </tr> <tr> <td>2003</td> <td>305</td> <td>410</td> <td>28.6</td> <td>15.2</td> <td>42.4</td> </tr> <tr> <td>2004</td> <td>316</td> <td>428</td> <td>32.0</td> <td>14.3</td> <td>42.6</td> </tr> </tbody> </table>
What is the approximate ratio between total tax paid and cost of components over all these years?
Correct Answer
Option 3
Correct Answer