Searching for "%"

Q:

Study the following line graph and answer the questions based on it.

Number of Vehicles Manufactured by Two companies ove the Years (Number in Thousands)

 

1. What is the difference between the number of vehicles manufactured by Company Y in 2000 and 2001 ?

A. 50000                   B. 42000                   C. 33000                   D. 21000

 

2. What is the difference between the total productions of the two Companies in the given years ?

A. 19000                   B. 22000                   C. 26000                   D. 28000

 

3. What is the average numbers of vehicles manufactured by Company X over the given period ? (rounded off to nearest integer)

A. 119333                 B. 113666                 C. 112778                 D. 111223

 

4. In which of the following years, the difference between the productions of Companies X and Y was the maximum among the given years ?

A. 1997                     B. 1998                     C. 1999                     D. 2000

 

5. The production of Company Y in 2000 was approximately what percent of the production of Company X in the same year ?

A. 173                       B. 164                       C. 132                       D. 97

Answer

1. ANSWERS  : D  


Explanation-   Required difference = (128000 - 107000) = 21000.


 


2. ANSWERS  : C  


Explanation-  From the line-graph it is clear that the productions of Company X in the   years 1997, 1998, 1999, 2000, 2001 and 2002 are 119000, 99000, 141000, 78000, 120000 and 159000 and those of Company Y are 139000, 120000,100000, 128000, 107000 and 148000 respectively. 


Total production of Company X from 1997 to 2002 


= 119000 + 99000 + 141000 + 78000 + 120000 + 159000 


= 716000. 


and total production of Company Y from 1997 to 2002 


= 139000 + 120000 + 100000 + 128000 + 107000 + 148000 


= 742000. 


Difference = (742000 - 716000) = 26000.


 


3. ANSWERS  : A 


Explanation-  Average number of vehicles manufactured by Company X  


16×119000+99000+141000+78000+120000+159000 


 = 119333.


 


4. ANSWERS  : D  


Explanation-   The difference between the productions of Companies X and Y in various years are: 


 For 1997 (139000 - 119000)  = 20000. 


 For 1998 (120000 - 99000)  = 21000. 


 For 1999 (141000 - 100000)  = 41000. 


 For 2000 (128000 - 78000) = 50000. 


 For 2001 (120000 - 107000) = 13000. 


 For 2002 (159000 - 148000) = 11000. 


 Clearly, maximum difference was in 2000.


 


5. ANSWERS  :  B


Explanation  - Required percentage= 12800078000×100 % = 164%

Report Error

View answer Workspace Report Error Discuss

Subject: Line Charts

Q:

The following pie chart shows the amount of subscriptions generated for India Bonds from different categories of investors.

1. In the corporate sector, approximately how many degrees should be there in the central angle ?

A. 120                 B. 121                 C. 122                 D. 123


2. If the investment by NRI's are Rs 4,000 crore, then the investments by corporate houses and FII's tog ether is:

A. 24,000 cr       B. 24,363 cr       C. 25,423 cr       D. 25,643 cr


3. What percentage of the total investment is coming from FII's and NRI's ?

A. 33%                B. 11%                C. 44%                D. 22%


4. If the total investment other than by FII and corporate houses is Rs 335,000 crore, then the investment by NRI's and Offshore funds will be (approximately) ?

A. 274,100         B. 285,600         C. 293,000         D. Cannot be determined


5. If the total investment flows from FII's were to be doubled in the next year and the investment flows from all other sources had remained constant at their existing levels for this year, then what would be the proportion of FII investment in the total investment into India Bonds next year (in US $ millions) ?

A. 40%                B. 50%                C. 60%                D. 70%

Answer

1. ANSWER :   C 


Explanation -   34 x 3.6 = 122.4 (since 1% = 3.6 degrees)  


  


2. ANSWER :  B 


Explanation -   (67/11) x 4000 = 24 363.6364   


 


3. ANSWER :  C


Explanation -  (33 + 11) = 44 


 


4. ANSWER :  A


Explanation -  Investment other than NRI and corporate houses is 33% = 335000.  Also, investment by offshore funds and NRI's is equal to 27%.


 Hence, (27 x 335000)/33 = 274 090.909


 


5. ANSWER : B


Explanation -  FII's currently account for 33 out of 100.


If their value is doubled and all other investments are kept constant then their new value would be 66 out of 133 = approximately equal to 50%

Report Error

View answer Workspace Report Error Discuss

Subject: Pie Charts

Q:

How to declare select-option as a parameter?

Answer


SELECT-OPTIONS: specify or displayed on the selection screen for the user to enter values.




Parameters    : dname like dept-dname.
Select-options: dname for dept-dname.


Report Error

View answer Workspace Report Error Discuss

Subject: ABAP

Q:

what are the differences between se01 se09 and se10 ?

Answer

SE01 is the main screen of the Change and transport Organizer. From here the administrator can acheive all tasks related to transport requests - such as create, change, view logs, display client/delivery transports, etc. SE09 and SE10 can also be accessed from here. However, not all developers might be granted access to this transaction.

SE09 is the workbench transport requests transaction - here the developers can track changes to all ABAP workbench objects (dictionary, reports, module pools, etc). This is a developer-specific transaction and mostly all developers have access to this transaction.

SE10 is the customizing request display transaction - this displays all the customizing requests in the system. Again, this could be restricted to Business analysts if required, since they would be doing most of the customizing changes in the system.

Report Error

View answer Workspace Report Error Discuss

Subject: ABAP

Q:

What is CTS and what do you know about it?

Answer

The Change and Transport System (CTS) is a tool that helps you to organize development projects in the ABAP Workbench and in Customizing, and then transport the changes between the SAP Systems and clients in your system landscape. This documentation provides you with an overview of how to manage changes with the CTS and essential information on setting up your system and client landscape and deciding on a transport strategy. Read and follow this documentation when planning your development project.

Report Error

View answer Workspace Report Error Discuss

Subject: ABAP

Q:

Difference between transparent tables and pooled tables

Answer

Transparent tables: Transparent tables in the dictionary has a one-to-one relation with the table in database. Its structure corresponds to single database field. Table in the database has the same name as in the dictionary. Transparent table holds application data.



Pooled tables: Pooled tables in the dictionary has a many-to-one relation with the table in database. Table in the database has the different name as in the dictionary. Pooled table are stored in table pool at the database level.

Report Error

View answer Workspace Report Error Discuss

Subject: ABAP

Q:

Which of the following are acceptable names of an ABAP program?

A. ZQSDABAP
B. YMYFIRSTABAPPROGRAM
C. Z”MyFirst ABAP PROGRAM
D. Z==FIRSTABAPPROGRAM
E. THISISMYFIRSTABAPPROGRAMME

Answer

Answer: A, B, E

The name of an ABAP program can be between 1 and 30 characters long.

The following symbols and signs must not be used in program names:
Period (.), comma (,), space ( ), parentheses (), apostrophe (‘), inverted commas ("), equals sign (=), asterisk
(*), accented characters or German umlauts (à, é, ø, ä, ß, and so on), percentage signs (%), or underscores (_).

Report Error

View answer Workspace Report Error Discuss

Subject: ABAP

Q:

What are session method and call transaction method and explain about them?

Answer

Call Transaction Method: In Call Transaction method we call the transaction in BDC program itself. If we want this program is executed by some one else then we need to expose the code to him. Call Transaction Method Works in Foreground. No Display Mode is equal to Background Processing in call transaction method. Call Transaction Method can handle only one Application at a time. In Call Transaction Method no Log File by Default. We have to design Log File by using BDCMSGCOLL. Call Transaction Method Updates the Database Asynchronously. (Note: Asynchronous updation is Faster than Synchronous)
 
Batch Session Method: On the other hand in batch session method we create a session which can be executed at any time by any authorized person without exposing the code of the program. Session Method works in Background and as well as in Foreground. Session Method can handle Multiple Applications at a time. Session Method holds Log File by Default. Session Method Updates the Database Synchronously.

Report Error

View answer Workspace Report Error Discuss

Subject: ABAP