Oracle Pac 2012

27
www.tiwrewal.com Computer Science Knowledge (Basic) Support ID: 14B1D20 Question Number 1 A program uses a queue to visit each of the nodes of a binary tree, starting at its root. After a node is processed its children are added to the the end of the queue. In what order do nodes get processed? Postorder Breadth-first Inorder Preorder Question Number 2 What features must a programming language and its runtime environment provide in order to support automatic memory management? 1. Dynamic memory allocation 2. Explicit deallocation of data 3. Garbage collection 1 and 3, but not 2 1 3 2 Question Number 3 From the following options, select the correct function that is referentially transparent. log(x) now() strcat(str1,gets()) rand(0,1) Question Number 4 Consider an application that requires inserting and deleting data items in a data structure dynamically. From the following options, select an appropriate data structure for this scenario. Stack

Transcript of Oracle Pac 2012

Page 1: Oracle Pac 2012

www.tiwrewal.com

Computer Science Knowledge (Basic)Support ID: 14B1D20Question Number 1A program uses a queue to visit each of the nodes of a binary tree, starting at its root. After anode is processed its children are added to the the end of the queue. In what order do nodes getprocessed?PostorderBreadth-firstInorderPreorderQuestion Number 2What features must a programming language and its runtime environment provide in order tosupport automatic memory management?1. Dynamic memory allocation2. Explicit deallocation of data3. Garbage collection1 and 3, but not 2132Question Number 3From the following options, select the correct function that is referentially transparent.log(x)now()strcat(str1,gets())rand(0,1)

Question Number 4 Consider an application that requires inserting and deleting data items in a data structuredynamically.From the following options, select an appropriate data structure for this scenario.StackQueueArrayLinked ListQuestion Number 5What is the primary advantage of using bytecode interpreters or virtual machines for programexecution?PortabilitySpeedReduced memory useSecurityQuestion Number 6Consider the following scenarios.- An operating system having a list of processes that are waiting to get access of the CPU.

Page 2: Oracle Pac 2012

www.tiwrewal.com

- A list of jobs waiting to access the printer for printing.From the following options, select the ideal data structure that can be used in these scenarios.StackQueueArrayLinked listQuestion Number 7Select the option that correctly describes the order of evaluation in an expression containingoperators from arithmetic, comparison and logical category. Arithmetic → Comparison → LogicalLogical → Arithmetic → ComparisonLogical→ Comparison → ArithmeticComparison → Arithmetic → Logical

Computer Science Knowledge (Basic)Support ID: 14B1D19Question Number 1Select the option that describes a "type" in Object Oriented programming.It defines implementation of an objectIt is an interface, which is a collection of methods that an object responds toIt describes how an object implements the methods in its interfaceIt indicates the state that an object maintainsQuestion Number 2Select the OOP concept described by the following features.A. Defines the abstract characteristics of a thing (object).B. Defines attributes of the thing.C. Defines the behavior of the thing.D. Represents a blueprint describing the nature of the thing.FunctionMethodClassInstanceQuestion Number 3Select the sorting that always has a time complexity O(n2), irrespective of the condition of thearray. Quick SortSelection sortBubble sortMerge sortQuestion Number 4From the following options, select the OOP mechanism, that allows treatment of the derivedclass members just like the members of their parent class.DecouplingEncapsulation

Page 3: Oracle Pac 2012

www.tiwrewal.com

AbstractionPolymorphismQuestion Number 5Select the option that denotes, "runtime is proportional to five times the input size".5O(n)5*O(n)

O(n5)O(5n)Support ID: 14B1D1CQuestion Number 6Select the option that shows the correct matching between the function types and the Big Odescriptions.I Constant 1 O(log n)II Logarithmic 2 O(1)III Linear 3 O(n)IV Quadratic 4 O(n3)V Cubic 5 O(2n)VI Exponential 6 O(n2)(I,2),(II,1),(III,3),(IV,6),(V,4),(VI,5) (I,5),(II,6),(III,2),(IV,1),(V,4),(VI,3)(I,1),(II,2),(III,3),(IV,4),(V,5),(VI,6)(I,3),(II,5),(III,4),(IV,6),(V,2),(VI,I)Question Number 1Which one of the following is NOT a referential integrity issue in a relational database where theDEPT column of the EMPLOYEE table is designated as a foreign key into the DEPARTMENTtable?Updating the value of DEPT in a row of EMPLOYEE with a value that is not the primarykey of any of the rows in DEPARTMENTInserting a new row into DEPARTMENT with a primary key that is not the value of theDEPT column of any row in EMPLOYEEDeleting a row of DEPARTMENTInserting a new row into EMPLOYEE with a DEPT whose value is not the primary key ofany of the rows in DEPARTMENTQuestion Number 2ABC Housekeeping Forces are responsible for maintaining a building that comprises of 100floors. The maintenance company decides to use a database to schedule work for its employeesand also check the status of the work. When an assigned housekeeper does NOT report for work,an alternate resource is allotted to complete the job.The Housekeeping database in its current form is given below.HousekeeperHouseKeeperIDHouseKeeperNameHouseKeeperSSNSupervisorIDSupervisor

Page 4: Oracle Pac 2012

www.tiwrewal.com

SupervisorIDSupervisorNameSupervisorSSNFloorFloorNoFloorName TransactionFloorNoDutyDateHouseKeeperIDWorkStatusAlternateTransactionFloorNoDutyDateAlternateHIDAlternateWorkStSelect the option that correctly lists the foreign keys for the different entities. Note that the entitynames are given in bold.Housekeeper – HousekeeperSSNSupervisor – SupervisorSSNTransaction – HousekeeperIDAlternateTransaction – AlternateHIDHousekeeper – SupervisorIDTransaction – HousekeeperIDAlternateTransaction – AlternateHIDHousekeeper – SupervisorIDSupervisor – HousekeeperIDTransaction – HousekeeperIDAlternateTransaction – AlternateHIDHousekeeper – HousekeeperIDSupervisor – SupervisorIDFloor – FloorNo or FloorNameTransaction – FloorNoAlternateTransaction – FloorNoQuestion Number 3Select the option that represents the definition of network database model.Represents the entire information content of the database in only one wayOrganizes the data in the form of a tree of records, with each record having one parentrecord and many children recordsAllows each record to have multiple parent and child records, thereby forming a latticestructureAttempts to bring closer interactivity between database administrators and applicationprogrammersSupport ID: 14B1D10

Page 5: Oracle Pac 2012

www.tiwrewal.com

Question Number 4ABC Housekeeping Forces are responsible for maintaining a building that comprises of 100floors. The maintenance company decides to use a database to schedule work for its employeesand also check the status of the work. When an assigned housekeeper does NOT report for work,an alternate resource is allotted to complete the job.The Housekeeping database in its current form is given below.HousekeeperHouseKeeperIDHouseKeeperNameHouseKeeperSSNSupervisorIDSupervisorSupervisorIDSupervisorNameSupervisorSSNFloorFloorNoFloorNameTransactionFloorNoDutyDateHouseKeeperIDWorkStatusAlternateTransactionFloorNoDutyDateAlternateHIDAlternateWorkStSelect the option that correctly lists the composite primary keys for the various entities. Note thatthe entity names are given in bold.Transaction – FloorNo, DutyDate, HouseKeeperIDAlternateTransaction – FloorNo, DutyDate, AlternateHIDHousekeeper – HousekeeperIDSupervisor – SupervisorIDFloor – FloorNoTransaction – FloorNoAlternateTransaction – FloorNo Housekeeper – HousekeeperIDSupervisor – SupervisorIDFloor – FloorNoTransaction – FloorNo, DutyDate, HouseKeeperIDAlternateTransaction – FloorNo, DutyDate, AlternateHIDHousekeeper – HousekeeperSSNSupervisor – SupervisorSSNFloor – FloorNo

Page 6: Oracle Pac 2012

www.tiwrewal.com

Transaction – FloorNo, DutyDate, HouseKeeperIDAlternateTransaction – FloorNo, DutyDate, AlternateHIDQuestion Number 5Select the option that correctly describes the database replication concept where two or morereplicas synchronize each other through a transaction identifier.Master-SlaveQuorumMultimasterMultimasterslaveQuestion Number 6ABC Housekeeping Forces are responsible for maintaining a building that comprises of 100floors. The maintenance company decides to use a database to schedule work for its employeesand also check the status of the work. When an assigned housekeeper does NOT report for work,an alternate resource is allotted to complete the job.The Housekeeping database in its current form is given below.HousekeeperHouseKeeperIDHouseKeeperNameHouseKeeperSSNSupervisorIDSupervisorSupervisorIDSupervisorNameSupervisorSSN FloorFloorNoFloorNameTransactionFloorNoDutyDateHouseKeeperIDWorkStatusAlternateTransactionFloorNoDutyDateAlternateHIDAlternateWorkStSelect the option that correctly lists the single field primary keys for the various entities. Notethat the entity names are given in bold.Housekeeper – HousekeeperIDSupervisor – SupervisorIDFloor – FloorNoTransaction – FloorNoAlternateTransaction – AlternateHIDHousekeeper – HousekeeperID

Page 7: Oracle Pac 2012

www.tiwrewal.com

Supervisor – SupervisorIDFloor – FloorNoTransaction – FloorNoAlternateTransaction – FloorNoHousekeeper – HousekeeperIDSupervisor – SupervisorIDTransaction – FloorNoAlternateTransaction – FloorNoHousekeeper – HousekeeperIDSupervisor – SupervisorIDFloor – FloorNoQuestion Number 7Select the option that represents the ‘I’ in ACID rules.The completed transactions cannot be aborted laterEither all the statements in a transaction must be executed, or none of them should beexecuted Any two simultaneous transactions cannot obstruct each otherEach transaction must maintain the integrity constraints of the database

Software Engineering AptitudeSupport ID: 14B1294Question Number 1A number when divided by 602 leaves a remainder 36. What remainder would be obtained bydividing the same number by 14?10684Question Number 2A train 110 m long is moving at 132 km/hr. How long will it take to cross a platform 165 mlong?5 s7.5 s7.5 min10 sQuestion Number 3The present ratio of ages of A and B is 4:5. After 15 years , the ratio will change to 11:13. Whatis the sum of their present ages ?70 years90 years100 years80 years Question Number 4The roots of the equation 3x2 + 7x – 2 = 0 are __________.

Page 8: Oracle Pac 2012

www.tiwrewal.com

imaginaryreal and irrationalequal and rationalreal and naturalQuestion Number 5I was asked to increase the numerator of a fraction by 50% and the denominator by 25%. But Iincreased the numerator of a fraction by 25% and the denominator by 50%. The percentage errorin the result will be:35.3525.530.5533.05Question Number 6A bag contains 4 red and 8 white balls. Another bag contains 7 red and 3 white balls. A bag ispicked and a ball is selected randomly from that bag. The probability that it is a red ball is__________.29/6023/6031/6037/60Question Number 7In a 100 m race, A beats B by 5 m and C by 15 m. By how many metres would B beat C in a raceof 3800 m?20 m400 m 190 m200 mQuestion Number 8Pipe A alone can fill a tank in 12 hours and pipe B alone can empty it in 18 hours. How muchtime is required to fill the tank, if both the pipes are working together ?28 hours24 hours36 hours32 hoursQuestion Number 9If US $ 1 becomes US $ 1 0 in 50 years at simple interest, the rate percent annum is__________.18%24%20%15%Question Number 10The ratio of the ages of Amanda and her brother Anton is 3 : 4. The ratio of the ages of Antonand his mother is 2 : 9. What is the ratio of the ages of Amanda and her mother?6 : 11 : 3

Page 9: Oracle Pac 2012

www.tiwrewal.com

1 : 63 : 1Question Number 1An airline assumes that on average each passenger weighs x pounds. It also assumes that 80% ofpassengers will have luggage which on average weighs y pounds. In addition to passengers, eachairplane carries freight and the airline assumes that each container weighs z pounds. How would you calculate the expected weight of a plane scheduled to carry P passengers and F containers offreight.0.8Px + Py + Fz0.8(Px + Py) + FzP(x + .8y)FzP(x + .8y) + FzQuestion Number 2At a salad bar, the cost of a meal is a fixed amount of $X, plus $Y per item selected from a menuof extra items. Six friends eat at the salad bar, selecting 17 extra items. Only four of them pay theentire bill by splitting it equally. The amount to be paid by each person paying the bill is__________.X + Y(6X + 17Y) / 4(6X+6Y) / 4(6X + 17Y) / 6Question Number 3This problem contains a question and two statements labeled A & B giving certain data. Youhave to select the correct answer from 1 to 4 depending on the sufficiency of the data given inthe two statements to answer the question as follows:1. If the question can be answered by using one of the statements alone but cannot be answeredby using the other statement alone.2. If the question can be answered by using either statement alone.3. If the question can be answered by using both statements together but cannot be answered byusing either statement alone.4. If the question cannot be answered even by using both the statements together.What is the speed of a train?A. It takes 15 seconds to cross a stationary observerB. It takes 30 seconds to cross a 900m platform12 34Question Number 4An article is sold after giving discounts of D1% and D2% on the marked price $MRP. What isthe profit percentage earned by the article on its cost price $CP?100*( (1 – 0.01D1) (1-0.01D2) * CP – MRP ) / CP100 * ( (1 – 0.01D1) (1 – 0.01D2) * CP – MRP ) / MRP100 * ( (1 – 0.01D1) (1 – 0.01D2) * MRP – CP ) / CP

Page 10: Oracle Pac 2012

www.tiwrewal.com

100 * ( (1 – 0.01D1) (1 – 0.01D2) * MRP – CP ) / MRPQuestion Number 5The problem below contains a question and two statements labeled A and B that give datapertaining to the question. Determine whether the information given in statements A and B issufficient to answer the question, and select the correct answer from options 1-4.1. The question can be answered by using one of the statements alone but not the other.2. The question can be answered by using either statement alone.3. The question can be answered by using both the statements together, but not by using eitherstatement alone.4. Neither of the statements, individually or jointly, provides sufficient data to answer thequestion.A set of three bags has to be selected from five bags B1, B2, B3, B4 and B5. Is B2 selected?A. If B1 is selected, B5 cannot be selectedB. If B4 is selected, B3 cannot be selected1234 Question Number 6Starting from T on the first day of a week (which is Day 1, an odd day), every odd day thetemperature drops by 1 degree from the previous day. Every even day, the temperature increasesby 2 degrees from the previous day. The average daily temperature for the week is__________.T+15T+15/77T+15(T+2*3-2)/7Question Number 7This problem contains a question and two statements labeled A & B giving certain data. Youhave to select the correct answer from 1 to 4 depending on the sufficiency of the data given inthe two statements to answer the question as follows:1. If the question can be answered by using one of the statements alone but cannot be answeredby using the other statement alone.2. If the question can be answered by using either statement alone.3. If the question can be answered by using both statements together but cannot be answered byusing either statement alone.4. If the question cannot be answered even by using both the statements together.What is the change in Xeno’s score from test 1 to test 2?A. In the first test he scored 50%B. In the second test he scored 65 points1234Question Number 8A shopkeeper marks up the price of an article over his cost price CP by 150%. He then offers a

Page 11: Oracle Pac 2012

www.tiwrewal.com

discount of D% on it. When the article is still unsold, he offers a second discount of 20% on it.Finally he has to offer a third discount of X% and then the item is sold at a profit of P. P isrepresented by __________. CP*1.5(1-D)(0.8)(1-X) – CPCP*2.5(1-D)(0.8)(1-X) – CPCP*1.5(1-D/100)(0.8)(1-X/100) – CPCP*2.5(1-D/100)(0.8)(1-X/100) – CPQuestion Number 9The problem below contains a question and two statements labeled A and B that give datapertaining to the question. Determine whether the information given in statements A and B issufficient to answer the question, and select the correct answer from options 1-4.1. The question can be answered by using one of the statements alone but not the other.2. The question can be answered by using either statement alone.3. The question can be answered by using both the statements together.4. Neither of the statements, individually or jointly, provides sufficient data to answer thequestion.Is Andy at least three times as efficient as Barry?A. Andy and Barry working together do a task in half the time that Cody takes to do it.B. Andy working alone takes less than a third of the time taken by Barry and Cody workingtogether on a task1234Question Number 10The problem below contains a question and two statements labeled A and B that give datapertaining to the question. Determine whether the information given in statements A and B issufficient to answer the question, and select the correct answer from the given options.By what percentage are Jane’s savings more than Mary’s?A. Jane’s income is 40% more than Mary’s B. Mary’s expenditure is 20% less than Jane’sThe question can be answered by using one of the statements alone but not the otherThe question can be answered by using either statement aloneThe question can be answered by using both the statements together, but not by using eitherstatement aloneNeither of the statements, individually or jointly, provides sufficient data to answer thequestionQuestion Number 1Based on the data in the following table, answer the question below it.Which one of the following is the correct combination of Name of Visitor and Address?Dennis V. Richie – 326-LM, Dara Singh Colony, Jaypur , Rajshthan.Francis J. D’costa – 2363, Parva Colony, Baug Lane, Pune, India.Alexander Garcia – 64-236-D, Ash Lane, Abhi Sector, Hrishdham, U.P.23-Minota, ABCL Hills, LA, U.S. – Jonathan M. More

Page 12: Oracle Pac 2012

www.tiwrewal.com

Question Number 2Based on the data in the following table, answer the question below it. In the following question, in the first column the correct or incorrect part names are given and inthe second column correct or incorrect part numbers are given. Find the options which gives onlythe correct combination/s of the part number and part name as per the table.I. Ponds Face Powder Sandal 200 gm A. PKD-46314-BFTFC-332/PLII. Ponds Cold Cream Blue 150 gm B. PLV-41778-GNMBD-741/RDIII. Johnson Baby Shampoo 50 ml C. AWF-12484-LEDCG-135/VCIV. Johnson Baby Powder 200 gm D. KHJ-69947-FGTRD-487/GAV. Johnson Baby Bath Soap big E. PDF-43218-GHKNM-761/SK

II-A, IV-BI-C, III-EI-C, V-DIV-A, V-DQuestion Number 3Based on the data in the following table, answer the question below it. Which one of the following is the incorrect combination of 'Vehicle Number' and 'DrivingLicence Number'?MH-04-1996/25642 – HA-06-TRL-1224MH-04-1997/32562 – KE-09-TSD-9595MH-04-2005/12365 – MH-04-MRP-5050MH-04-2001/14586 – AP-06-ALF-2363Question Number 4Based on the data in the following table, answer the question below it: The correct details for the customer “Bellamy, Tracey” are:1827 Canis Heights Drive, Gardena, CA 90427 04-14-521827 Canis Heights Drive, Gardena, CA 90247 04-14-521827 Canis Heights Drive, Gardena, CA 90247 04-41-521827 Canis Heights Drive, Gardana, CA 90247 04-14-52Question Number 5Based on the data in the following table, answer the question below it. Which one of the following is NOT a valid Part Code?1050-PP5510-1063-C1050-PS5261-1002-A1060-PQ5643-1000-B1000-PS5051-1034-CSupport ID: 14B12FFQuestion Number 6Based on the data in the following table, answer the question below it. Which one of the following is the correct address of 'Gracious Morgan'?64-236-D, Ash Lane, Abhi Sector, Hrishdaam, U.P.64-236-D, Ash Lane, Abhi Sector, Hrishdham, U.P.

Page 13: Oracle Pac 2012

www.tiwrewal.com

64-236-G, Ash Lane, Abhi Sector, Hrishdham, U.P.64-263-D, Ash Lane, Abhi Sector, Hrishdham, U.P.Question Number 7Based on the data in the following table, answer the question below it: Which of the following details is not correct?Sims, Deborah 503-514-1623 8/13/1945Eames, Michael 402-710-8236 5/14/1941Cannon, Vernon 951-514-8412 9/30/1953Howery, Felecia 610-828-6835 9/16/1965Question Number 8Based on the data in the following table, answer the question below it. The correct details of the customer “Begay, David” are __________.$16,776.78 227-87-9226/AAA/190$16,776.78 227-87-9266/AAA/190$16,776.78 227-78-9266/AAA/190$16,776.78 227-87-9266/AAA/910Question Number 9Based on the data in the following table, answer the question below it. In the following question, in the first column the correct or incorrect part names are given and inthe second column correct or incorrect part numbers are given. Find the options, which givesonly the incorrect combination/s of the part number and part name as per the table.I. Rado Watch Diamond - Gold Belt Model 15PP A. RF6-BDHID-86653-PLR/99II. Philips Electric Iron Automatic Model 21AK B. CD8-JFKDN-48396-PPLK/56III. Bajaj Ceiling Fan Coolair Brown Model 14BB C. WER-SOD56F-15489-ODO/26IV. Titan Watch Aqua Golden belt Model 25EC D. CD8-JFDKN-48395-PPLK/56V. Monica Electric Iron Semi Auto Model 24JL E. HFG-OSJKD-145286-FJG/55

II-E, IV-CI-D, IV-AIV-B, V-CII-D, III-BQuestion Number 10Based on the data in the following table, answer the question below it. Which one of the following is the correct part number for "Verbal Aptitude Solution Book 1”?214-SDFRT-15426-LPK/55512-JLKGM-41562-OKM/21124-PLEWR-48562-PDF-45231-DFGHJ-12365-ERT/33Question Number 2Please carefully read the following:The following flowchart represents the process described below. Once you have read the

Page 14: Oracle Pac 2012

www.tiwrewal.com

description of the process, answer the question below the flowchart.In a certain country called Fictitia, the income tax structure is such that:1. If you are married your taxable income is reduced by 10%2. For up to 3 children, you get a tax reduction of $750 for each child3. If you are over 65 or your income is below $15,000 you pay no tax4. Between $15,000 and $40,000 you pay 10% tax and between $40,000 and $100,000 you pay20% tax and above $100,000 you pay 30% tax5. If your income is more than $250,000, you pay a surcharge of 5% on your overall tax What is the value of Cell 4?TAX = 10500 + (TAXABLE_INCOME – 40,000)*0.3TAX = 14500 + (TAXABLE_INCOME – 40,000)*0.3TAX = 10500 + (TAXABLE_INCOME – 100,000)*0.3TAX = 14500 + (TAXABLE_INCOME – 100,000)*0.3Question Number 2Please carefully read the following:The following flowchart represents the process described below. Once you have read thedescription of the process, answer the question below the flowchart.In a certain country called Fictitia, the income tax structure is such that:1. If you are married your taxable income is reduced by 10% 2. For up to 3 children, you get a tax reduction of $750 for each child3. If you are over 65 or your income is below $15,000 you pay no tax4. Between $15,000 and $40,000 you pay 10% tax and between $40,000 and $100,000 you pay20% tax and above $100,000 you pay 30% tax5. If your income is more than $250,000, you pay a surcharge of 5% on your overall taxWhat is the value of Cell 4?TAX = 10500 + (TAXABLE_INCOME – 40,000)*0.3TAX = 14500 + (TAXABLE_INCOME – 40,000)*0.3TAX = 10500 + (TAXABLE_INCOME – 100,000)*0.3TAX = 14500 + (TAXABLE_INCOME – 100,000)*0.3Question Number 3 Please carefully read the following:The following flowchart represents the process described below. Once you have read thedescription of the process, answer the question below the flowchart.In a certain country called Fictitia, the income tax structure is such that:1. If you are married your taxable income is reduced by 10%2. For up to 3 children, you get a tax reduction of $750 for each child3. If you are over 65 or your income is below $15,000 you pay no tax4. Between $15,000 and $40,000 you pay 10% tax and between $40,000 and $100,000 you pay20% tax and above $100,000 you pay 30% tax5. If your income is more than $250,000, you pay a surcharge of 5% on your overall taxWhat is the value of Cell 3? Is TAXABLE_INCOME < $40,000?

Page 15: Oracle Pac 2012

www.tiwrewal.com

Is TAXABLE_INCOME > $40,000?Is TAXABLE_INCOME < $250,000?Is TAXABLE_INCOME > $250,000?Question Number 4Please carefully read the following:The following flowchart represents the process described below. Once you have read thedescription of the process, answer the question below the flowchart.In a certain country called Fictitia, the income tax structure is such that:1. If you are married your taxable income is reduced by 10%2. For up to 3 children, you get a tax reduction of $750 for each child3. If you are over 65 or your income is below $15,000 you pay no tax4. Between $15,000 and $40,000 you pay 10% tax and between $40,000 and $100,000 you pay20% tax and above $100,000 you pay 30% tax5. If your income is more than $250,000, you pay a surcharge of 5% on your overall tax What is the value of Cell 1?Are you Single?Are you Married?Is TAXABLE_INCOME > $15,000?Is TAXABLE_INCOME > $250,000?Question Number 5Please carefully read the following:The following flowchart represents the process described below. Once you have read thedescription of the process, answer the question below the flowchart.In a certain country called Fictitia, the income tax structure is such that:1. If you are married your taxable income is reduced by 10% 2. For up to 3 children, you get a tax reduction of $750 for each child3. If you are over 65 or your income is below $15,000 you pay no tax4. Between $15,000 and $40,000 you pay 10% tax and between $40,000 and $100,000 you pay20% tax and above $100,000 you pay 30% tax5. If your income is more than $250,000, you pay a surcharge of 5% on your overall taxWhat is the value of Cell 2?TAXABLE_INCOME = TAXABLE_INCOME- 0.1TAXABLE_INCOME = TAXABLE_INCOME – 0.9TAXABLE_INCOME = TAXABLE_INCOME*0.1TAXABLE_INCOME = TAXABLE_INCOME*0.9

Written English (Basic)Support ID: 14B10DEQuestion Number 1ran off withrun off inran off torun of fromQuestion Number 2

Page 16: Oracle Pac 2012

www.tiwrewal.com

builtbolsteredfinishedboughtQuestion Number 3overturnedoverthrownupsetsolidifiedQuestion Number 4cells into the skincells of the skin cells out of the skincells from the skinQuestion Number 5fall…scrapedfalls…scrapefell…scrapedfell…scrappedQuestion Number 6volatilestrategicunorganizedrandomQuestion Number 7Now and then he stopped __________ to see whether it was properly locked.to get a doorfor trying a doorto try a doorin trying a doorQuestion Number 8has not being steadfasthad been steadfast has not been steadfasthas not being steadfastlyQuestion Number 9fortooffromQuestion Number 10While Megan was playing with her new balloon, __________.it burst

Page 17: Oracle Pac 2012

www.tiwrewal.com

it burstedit is burstit was burstQuestion Number 1rearrangementrearrangingis rearrangingrearrangeQuestion Number 2washas haveisQuestion Number 3The evening altogether __________ for the whole family.was pleasantlywere pleasantlypassed off pleasantlypassing off pleasantlyQuestion Number 4havewerehaswasQuestion Number 5I wouldn't be so fussy as __________.I amI wereyou arewe areQuestion Number 1 DACBDABCABCDACBDQuestion Number 2III, IV, I, and IIIV, I, II, and IIII, III, IV, and IIII, III, IV, and IQuestion Number 3II, III, IV, and IIV, III, II, and I

Page 18: Oracle Pac 2012

www.tiwrewal.com

III, IV, I, and III, III, IV, and II Question Number 4I, IV, III, and IIIV, II, I, and IIIIII, II, I, and IVII, IV, I, and IIISupport ID: 14B10C3Question Number 5CADBABCDBCDACDBAQuestion Number 1Please carefully read the following: The buyer must take responsibility to know what the law isThe buyer must beware that they do not buy a car that they do not wantThe government will not protect a buyer from unscrupulous car salesmenIt is the responsibility of the buyer to ensure that they have not been cheatedQuestion Number 2Please carefully read the following: Checking for rust, tire wear, exhaust colorChecking for rust, tire wear, paint jobChecking for rust, paint job, exhaust colorChecking for paint job, exhaust color, tire tread depthQuestion Number 3Please carefully read the following: ASE certified mechanics are the only mechanics who know what they are doingThey are the only mechanics that can be trustedThey have had more schooling in servicing vehiclesThey are neutral and will perform a fair inspectionQuestion Number 4Please carefully read the following: How many miles it was drive in-stateHow frequently it was washedHow well the owner cared for itIf the car was maintained according to the manufacturer’s recommended scheduleQuestion Number 4Please carefully read the following: How many miles it was drive in-state

Page 19: Oracle Pac 2012

www.tiwrewal.com

How frequently it was washedHow well the owner cared for itIf the car was maintained according to the manufacturer’s recommended scheduleQuestion Number 5Please carefully read the following:Give the buyer advice on which models are the most reliableHelp the buyer locate a vehicle for sale nearbyAdjust the value of the vehicle according to its mileage and cosmetic conditionHelp the buyer sell their current vehicle wherever in the country it has the highest resellvalue