<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss'><id>tag:blogger.com,1999:blog-1578348944402078340</id><updated>2009-10-06T00:25:48.065-07:00</updated><title type='text'>Interview Questions</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>15</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-5329659349057401164</id><published>2007-10-23T05:05:00.001-07:00</published><updated>2007-10-23T05:05:59.205-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server Interview questions II'/><title type='text'>SQL Server Interview questions II</title><content type='html'>&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What are the properties of the Relational tables?&lt;/span&gt;&lt;br /&gt;Relational tables have six properties:&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;   Values are atomic.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;   Column values are of the same kind.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;   Each row is unique.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;   The sequence of columns is insignificant.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;   The sequence of rows is insignificant.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;   Each column must have a unique name.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;     What is De-normalization?&lt;/span&gt;&lt;br /&gt;De-normalization is the process of attempting to optimize the performance of a database by adding redundant data. It is sometimes necessary because current DBMSs implement the relational model poorly. A true relational DBMS would allow for a fully normalized database at the logical level, while providing physical storage of data that is tuned for high performance. De-normalization is a technique to move from higher to lower normal forms of database modeling in order to speed up database access.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;     How to get @@error and @@rowcount at the same time?&lt;br /&gt;&lt;/span&gt;If @@Rowcount is checked after Error checking statement then it will have 0 as the value of @@Recordcount as it would have been reset.&lt;br /&gt;And if @@Recordcount is checked before the error-checking statement then @@Error would get reset. To get @@error and @@rowcount at the same time do both in same statement and store them in local variable. SELECT @RC = @@ROWCOUNT, @ER = @@ERROR&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is Identity?&lt;/span&gt;&lt;br /&gt;Identity (or AutoNumber) is a column that automatically generates numeric values. A start and increment value can be set, but most DBA leave these at 1. A GUID column also generates numbers, the value of this cannot be controled. Identity/GUID columns do not need to be indexed.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;     What is a Scheduled Jobs or What is a Scheduled Tasks? &lt;/span&gt;&lt;br /&gt;&lt;a title="sectionToggle0" name="sectionToggle0"&gt;&lt;/a&gt;Scheduled tasks let user automate processes that run on regular or predictable cycles. User can schedule administrative tasks, such as cube processing, to run during times of slow business activity. User can also determine the order in which tasks run by creating job steps within a SQL Server Agent job. E.g. Back up database, Update Stats of Tables. &lt;a title="sectionToggle0" name="sectionToggle0"&gt;&lt;/a&gt;&lt;a title="sectionToggle0" name="sectionToggle0"&gt;&lt;/a&gt;Job steps give user control over flow of execution. &lt;a title="sectionToggle0" name="sectionToggle0"&gt;&lt;/a&gt; If one job fails, user can configure SQL Server Agent to continue to run the remaining tasks or to stop execution.&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;     What is a table called, if it does not have neither Cluster nor Non-cluster Index? What is it used for?&lt;br /&gt;&lt;/span&gt;Unindexed table or &lt;span style="font-weight: bold; font-style: italic;"&gt;Heap&lt;/span&gt;. Microsoft Press Books and Book On Line (BOL) refers it as Heap.&lt;br /&gt;A heap is a table that does not have a clustered index and, therefore, the pages are not linked by pointers. The IAM pages are the only structures that link the pages in a table together.&lt;br /&gt;Unindexed tables are good for fast storing of data. Many times it is better to drop all indexes from table and than do bulk of inserts and to restore those indexes after that.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is BCP? When does it used? &lt;/span&gt;&lt;br /&gt;BulkCopy is a tool used to copy huge amount of data from tables and views. BCP does not copy the structures same as source to destination.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;     How do you load large data to the SQL server database?&lt;br /&gt;&lt;/span&gt;BulkCopy is a tool used to copy huge amount of data from tables. BULK INSERT command helps to Imports a data file into a database table or view in a user-specified format.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;     Can we rewrite subqueries into simple select statements or with joins? &lt;/span&gt;&lt;br /&gt;Subqueries can often be re-written to use a standard outer join, resulting in faster performance. As we may know, an outer join uses the plus sign (+) operator to tell the database to return all non-matching rows with NULL values. Hence we combine the outer join with a NULL test in the WHERE clause to reproduce the result set without using a sub-query.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;Can SQL Servers linked to other servers like Oracle?&lt;/span&gt;&lt;br /&gt;SQL Server can be lined to any server provided it has OLE-DB provider from Microsoft to allow a link. E.g. Oracle has a OLE-DB provider for oracle that Microsoft provides to add it as linked server to SQL Server group.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;     How to know which index a table is using? &lt;/span&gt;&lt;br /&gt;SELECT table_name,index_name FROM user_constraints&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;How to copy the tables, schema and views from one SQL server to another?&lt;/span&gt;&lt;br /&gt;Microsoft SQL Server 2000 Data Transformation Services (DTS) is a set of graphical tools and programmable objects that lets user extract, transform, and consolidate data from disparate sources into single or multiple destinations.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is Self Join?&lt;/span&gt;&lt;br /&gt;This is a particular case when one table joins to itself, with one or two aliases to avoid confusion. A self join can be of any type, as long as the joined tables are the same. A self join is rather unique in that it involves a relationship with only one table. The common example is when company have a hierarchal reporting structure whereby one member of staff reports to another.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is Cross Join?&lt;/span&gt;&lt;br /&gt;A cross join that does not have a WHERE clause produces the Cartesian product of the tables involved in the join. The size of a Cartesian product result set is the number of rows in the first table multiplied by the number of rows in the second table. The common example is when company wants to combine each product with a pricing table to analyze each product at each price.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;Which virtual table does a trigger use?&lt;/span&gt;&lt;br /&gt;Inserted and Deleted.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;List few advantages of Stored Procedure.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Stored procedure can reduced network traffic and latency, boosting application performance.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Stored procedure execution plans can be reused, staying cached in SQL Server’s memory, reducing server overhead.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Stored procedures help promote code reuse.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Stored procedures can encapsulate logic. You can change stored procedure code without affecting clients.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Stored procedures provide better security to your data.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is DataWarehousing?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;strong&gt;Subject-oriented&lt;/strong&gt;, meaning that the data in the database is organized so that all the data elements relating to the same real-world event or object are linked together;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;strong&gt;Time-variant&lt;/strong&gt;, meaning that the changes to the data in the database are tracked and recorded so that reports can be produced showing changes over time;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;strong&gt;Non-volatile&lt;/strong&gt;, meaning that data in the database is never over-written or deleted, once committed, the data is static, read-only, but retained for future reporting;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;strong&gt;Integrated&lt;/strong&gt;, meaning that the database contains data from most or all of an organization’s operational applications, and that this data is made consistent.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is OLTP(OnLine Transaction Processing)?&lt;/span&gt;&lt;br /&gt;In OLTP - online transaction processing systems relational database design use the discipline of data modeling and generally follow the Codd rules of data normalization in order to ensure absolute data integrity. Using these rules complex information is broken down into its most simple structures (a table) where all of the individual atomic level elements relate to each other and satisfy the normalization rules.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;     How do SQL server 2000 and XML linked? Can XML be used to access data?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;FOR XML (ROW, AUTO, EXPLICIT)&lt;/span&gt;&lt;br /&gt;You can execute SQL queries against existing relational databases to return results as XML rather than standard rowsets. These queries can be executed directly or from within stored procedures. To retrieve XML results, use the FOR XML clause of the SELECT statement and specify an XML mode of RAW, AUTO, or EXPLICIT.&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;OPENXML&lt;/span&gt;&lt;br /&gt;OPENXML is a Transact-SQL keyword that provides a relational/rowset view over an in-memory XML document. OPENXML is a rowset provider similar to a table or a view. OPENXML provides a way to access XML data within the Transact-SQL context by transferring data from an XML document into the relational tables. Thus, OPENXML allows you to manage an XML document and its interaction with the relational environment.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is an execution plan? When would you use it? How would you view the execution plan?&lt;/span&gt;&lt;br /&gt;An execution plan is basically a road map that graphically or textually shows the data retrieval methods chosen by the SQL Server query optimizer for a stored procedure or ad-hoc query and is a very useful tool for a developer to understand the performance characteristics of a query or stored procedure since the plan is the one that SQL Server will place in its cache and use to execute the stored procedure or query. From within Query Analyzer is an option called “Show Execution Plan” (located on the Query drop-down menu). If this option is turned on it will display query execution plan in separate window when query is ran again.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-5329659349057401164?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/5329659349057401164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=5329659349057401164' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/5329659349057401164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/5329659349057401164'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/sql-server-interview-questions-ii.html' title='SQL Server Interview questions II'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-8296437305561887226</id><published>2007-10-23T05:02:00.000-07:00</published><updated>2007-10-23T05:03:56.805-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server Interview questions'/><title type='text'>SQL Server Interview questions</title><content type='html'>&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is SQL Profiler?&lt;/span&gt;&lt;br /&gt;SQL Profiler is a graphical tool that allows system administrators to monitor events in an instance of Microsoft SQL Server. You can capture and save data about each event to a file or SQL Server table to analyze later. For example, you can monitor a production environment to see which stored procedures are hampering performance by executing too slowly.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;Use SQL Profiler to monitor only the events in which you are interested. If traces are becoming too large, you can filter them based on the information you want, so that only a subset of the event data is collected. Monitoring too many events adds overhead to the server and the monitoring process and can cause the trace file or trace table to grow very large, especially when the monitoring process takes place over a long period of time.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is User Defined Functions?&lt;/span&gt;&lt;br /&gt;User-Defined Functions allow to define its own T-SQL functions that can accept 0 or more parameters and return a single scalar data value or a table data type.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What kind of User-Defined Functions can be created?&lt;/span&gt;&lt;br /&gt;There are three types of User-Defined functions in SQL Server 2000 and they are Scalar, Inline Table-Valued and Multi-statement Table-valued.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;em&gt;&lt;span style="font-weight: bold;"&gt;Scalar User-Defined Function&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;A Scalar user-defined function returns one of the scalar data types. Text, ntext, image and timestamp data types are not supported. These are the type of user-defined functions that most developers are used to in other programming languages. You pass in 0 to many parameters and you get a return value.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;em&gt;&lt;span style="font-weight: bold;"&gt;Inline Table-Value User-Defined Function&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;An Inline Table-Value user-defined function returns a table data type and is an exceptional alternative to a view as the user-defined function can pass parameters into a T-SQL select command and in essence provide us with a parameterized, non-updateable view of the underlying tables.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;em&gt;&lt;span style="font-weight: bold;"&gt;Multi-statement Table-Value User-Defined Function&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;A Multi-Statement Table-Value user-defined function returns a table and is also an exceptional alternative to a view as the function can support multiple T-SQL statements to build the final result where the view is limited to a single SELECT statement. Also, the ability to pass parameters into a T-SQL select command or a group of them gives us the capability to in essence create a parameterized, non-updateable view of the data in the underlying tables. Within the create function command you must define the table structure that is being returned. After creating this type of user-defined function, It can be used in the FROM clause of a T-SQL command unlike the behavior found when using a stored procedure which can also return record sets.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;Which TCP/IP port does SQL Server run on? How can it be changed?&lt;/span&gt;&lt;br /&gt;SQL Server runs on port 1433. It can be changed from the Network Utility TCP/IP properties –&gt; Port number.both on client and the server.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt; What are the authentication modes in SQL Server? How can it be changed?&lt;/span&gt;&lt;br /&gt;Windows mode and mixed mode (SQL &amp;amp; Windows).&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;To change authentication mode in SQL Server&lt;/span&gt;&lt;span style="font-family:Verdana;font-size:85%;"&gt; click Start, Programs, Microsoft SQL Server and click SQL Enterprise Manager to run SQL Enterprise Manager from the Microsoft SQL Server program group. Select the server then from the Tools menu select SQL Server Configuration Properties, and choose the Security page.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;Where are SQL server users names and passwords are stored in sql server?&lt;/span&gt;&lt;br /&gt;They get stored in master db in the sysxlogins table.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;Which command using Query Analyzer will give you the version of SQL server and operating system? &lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;pre&gt;&lt;span style="font-size:85%;"&gt;SELECT  SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')&lt;/span&gt;&lt;/pre&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt; What is SQL server agent?&lt;br /&gt;&lt;/span&gt;SQL Server agent plays an important role in the day-to-day tasks of a database administrator (DBA). It is often overlooked as one of the main tools for SQL Server management. Its purpose is to ease the implementation of tasks for the DBA, with its full-function scheduling engine, which allows you to schedule your own jobs and scripts.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt; Can a stored procedure call itself or recursive stored procedure? How many level SP nesting possible?&lt;/span&gt;&lt;br /&gt;Yes. Because Transact-SQL supports recursion, you can write stored procedures that call themselves. Recursion can be defined as a method of problem solving wherein the solution is arrived at by repetitively applying it to subsets of the problem. A common application of recursive logic is to perform numeric computations that lend themselves to repetitive evaluation by the same processing steps. Stored procedures are nested when one stored procedure calls another or executes managed code by referencing a CLR routine, type, or aggregate. You can nest stored procedures and managed code references up to 32 levels.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is @@ERROR?&lt;/span&gt;&lt;br /&gt;The @@ERROR automatic variable returns the error code of the last Transact-SQL statement. If there was no error, @@ERROR returns zero. Because @@ERROR is reset after each Transact-SQL statement, it must be saved to a variable if it is needed to process it further after checking it.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;What is Raiseerror? &lt;/span&gt;&lt;br /&gt;Stored procedures report errors to client applications via the RAISERROR command. RAISERROR doesn’t change the flow of a procedure; it merely displays an error message, sets the @@ERROR automatic variable, and optionally writes the message to the SQL Server error log and the NT application event log.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt; What is log shipping?&lt;/span&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-family:Verdana;font-size:85%;"&gt;Log shipping is the process of automating the backup of database and transaction log files on a production SQL server, and then restoring them onto a standby server. Enterprise Editions only supports log shipping. In log shipping the transactional log file from one server is automatically updated into the backup database on the other server. If one server fails, the other server will have the same db can be used this as the Disaster Recovery plan. The key feature of log shipping is that is will automatically backup transaction logs throughout the day and automatically restore them on the standby server at defined interval.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;     What is the difference between a local and a global variable?&lt;/span&gt;&lt;br /&gt;A &lt;span style="font-style: italic;"&gt;local temporary &lt;/span&gt;table exists only for the duration of a connection or, if defined inside a compound statement, for the duration of the compound statement.&lt;/span&gt;&lt;/p&gt; &lt;span style="font-size:85%;"&gt;A &lt;span style="font-style: italic;"&gt;global temporary&lt;/span&gt; table remains in the database permanently, but the rows exist only within a given connection. When connection are closed, the data in the global temporary table disappears. However, the table definition remains with the database for access when database is opened next time&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-8296437305561887226?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/8296437305561887226/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=8296437305561887226' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/8296437305561887226'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/8296437305561887226'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/sql-server-interview-questions.html' title='SQL Server Interview questions'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-7797304685833522302</id><published>2007-10-06T07:12:00.000-07:00</published><updated>2007-10-06T07:13:32.335-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET Windows Forms Interview Questions'/><title type='text'>.NET Windows Forms Interview Questions</title><content type='html'>&lt;ol start="1" type="1"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;Write a simple Windows      Forms MessageBox statement.&lt;/b&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;pre style="margin-left: 0.25in;"&gt;System.Windows.Forms.MessageBox.Show&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;!--[endif]--&gt;&lt;/pre&gt;&lt;pre style="margin-left: 0.25in;"&gt;&lt;span style=""&gt;  &lt;/span&gt;("Hello, Windows Forms");&lt;/pre&gt;  &lt;ol start="2" type="1"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;a name="more62"&gt;&lt;/a&gt;&lt;b&gt;Can you      write a class without specifying namespace? Which namespace does it belong      to by default?&lt;/b&gt;?&lt;br /&gt;     Yes, you can, then the class belongs to global namespace which has no      name. For commercial products, naturally, you wouldn’t want global      namespace. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;You are designing a GUI      application with a window and several widgets on it. The user then resizes      the app window and sees a lot of grey space, while the widgets stay in      place. What’s the problem?&lt;/b&gt; One should use anchoring for correct      resizing. Otherwise the default property of a widget on a form is      top-left, so it stays at the same location when resized. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;How can you save the      desired properties of Windows Forms application?&lt;/b&gt; .config files in .NET      are supported through the API to allow storing and retrieving information.      They are nothing more than simple XML files, sort of like what .ini files      were before for Win32 apps. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;So how do you retrieve the      customized properties of a .NET application from XML .config file?&lt;/b&gt;      Initialize an instance of AppSettingsReader class. Call the GetValue      method of AppSettingsReader class, passing in the name of the property and      the type expected. Assign the result to the appropriate variable. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;Can you automate this      process?&lt;/b&gt; In Visual Studio yes, use Dynamic Properties for automatic      .config creation, storage and retrieval. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;My progress bar freezes up      and dialog window shows blank, when an intensive background process takes      over&lt;/b&gt;. Yes, you should’ve multi-threaded your GUI, with taskbar and      main form being one thread, and the background process being the other. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;What’s the safest way to      deploy a Windows Forms app?&lt;/b&gt; Web deployment: the user always downloads      the latest version of the code; the program runs within security sandbox,      properly written app will not require additional security privileges. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;Why is it not a good idea      to insert code into InitializeComponent method when working with Visual      Studio?&lt;/b&gt; The designer will likely throw it away; most of the code      inside InitializeComponent is auto-generated. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;What’s the difference      between WindowsDefaultLocation and WindowsDefaultBounds?&lt;/b&gt;      WindowsDefaultLocation tells the form to start up at a location selected      by OS, but with internally specified size. WindowsDefaultBounds delegates      both size and starting position choices to the OS. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;What’s the difference      between Move and LocationChanged? Resize and SizeChanged?&lt;/b&gt; Both methods      do the same, Move and Resize are the names adopted from VB to ease      migration to C#. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;How would you create a      non-rectangular window, let’s say an ellipse?&lt;/b&gt; Create a rectangular      form, set the TransparencyKey property to the same value as BackColor,      which will effectively make the background of the form transparent. Then      set the FormBorderStyle to FormBorderStyle.None, which will remove the      contour and contents of the form. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;How do you create a      separator in the Menu Designer?&lt;/b&gt; A hyphen ‘-’ would do it. Also, an      ampersand ‘&amp;amp;\’ would underline the next letter. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;b&gt;How’s anchoring different      from docking?&lt;/b&gt; Anchoring treats the component as having the absolute      size and adjusts its location relative to the parent form. Docking treats      the component location as absolute and disregards the component size. So      if a status bar must always be at the bottom no matter what, use docking.      If a button should be on the top right, but change its position with the      form being resized, use anchoring. &lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-7797304685833522302?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/7797304685833522302/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=7797304685833522302' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/7797304685833522302'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/7797304685833522302'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/net-windows-forms-interview-questions.html' title='.NET Windows Forms Interview Questions'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-7305654907551670057</id><published>2007-10-06T07:10:00.000-07:00</published><updated>2007-10-06T07:11:28.718-07:00</updated><title type='text'>Interview Questions .Net Remoting</title><content type='html'>&lt;ol start="1" type="1"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s a Windows process? &lt;/b&gt;It’s      an application that’s running and had been allocated memory. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s typical about a      Windows process in regards to memory allocation?&lt;/b&gt;&lt;a name="more71"&gt;&lt;/a&gt;&lt;/span&gt; Each process is      allocated its own block of available RAM space, no process can access      another process’ code or data. If the process crashes, it dies alone      without taking the entire OS or a bunch of other applications down. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Why do you call it a      process? What’s different between process and application in .NET, not      common computer usage, terminology? &lt;/b&gt;A process is an instance of a      running application. An application is an executable on the hard drive or      network. There can be numerous processes launched of the same application      (5 copies of Word running), but 1 process can run just 1 application. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What distributed process      frameworks outside .NET do you know?&lt;/b&gt; Distributed Computing      Environment/Remote Procedure Calls (DEC/RPC), Microsoft Distributed      Component Object Model (DCOM), Common Object Request Broker Architecture      (CORBA), and Java Remote Method Invocation (RMI). &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are possible      implementations of distributed applications in .NET?&lt;/b&gt;&lt;/span&gt; .NET Remoting and      ASP.NET Web Services. If we talk about the Framework Class Library,      noteworthy classes are in System.Runtime.Remoting and System.Web.Services.      &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;When would you use .NET      Remoting and when Web services?&lt;/b&gt; Use remoting for more efficient      exchange of information when you control both ends of the application. Use      Web services for open-protocol-based information exchange when you are      just a client or a server with the other end belonging to someone else. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s a proxy of the      server object in .NET Remoting?&lt;/b&gt; It’s a fake copy of the server object      that resides on the client side and behaves as if it was the server. It      handles the communication between real server object and the client      object. This process is also known as &lt;b&gt;marshaling&lt;/b&gt;. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are remotable objects      in .NET Remoting?&lt;/b&gt; Remotable objects are the objects that can be      marshaled across the application domains. You can marshal by value, where      a deep copy of the object is created and then passed to the receiver. You      can also marshal by reference, where just a reference to an existing      object is passed. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are channels in .NET      Remoting?&lt;/b&gt; Channels represent the objects that transfer the other      serialized objects from one application domain to another and from one      computer to another, as well as one process to another on the same box. A      channel must exist before an object can be transferred. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What security measures      exist for .NET Remoting in System.Runtime.Remoting?&lt;/b&gt; None. Security      should be taken care of at the application level. Cryptography and other      security techniques can be applied at application or server level. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is a formatter?&lt;/b&gt; A      formatter is an object that is responsible for encoding and serializing      data into messages on one end, and deserializing and decoding messages      into data on the other end. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Choosing between HTTP and      TCP for protocols and Binary and SOAP for formatters, what are the      trade-offs?&lt;/b&gt; Binary over TCP is the most effiecient, SOAP over HTTP is      the most interoperable. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s SingleCall      activation mode used for?&lt;/b&gt; If the server object is instantiated for      responding to just one single request, the request should be made in      SingleCall mode. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s Singleton activation      mode?&lt;/b&gt; A single object is instantiated regardless of the number of      clients accessing it. Lifetime of this object is determined by lifetime      lease. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How do you define the      lease of the object? &lt;/b&gt;By implementing ILease interface when writing the      class code. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you configure a .NET      Remoting object via XML file?&lt;/b&gt; Yes, via machine.config and application      level .config file (or web.config in ASP.NET). Application-level XML      settings take precedence over machine.config. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How can you automatically      generate interface for the remotable object in .NET with Microsoft tools?&lt;/b&gt;      Use the Soapsuds tool.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-7305654907551670057?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/7305654907551670057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=7305654907551670057' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/7305654907551670057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/7305654907551670057'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/interview-questions-net-remoting.html' title='Interview Questions .Net Remoting'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-514458228194594821</id><published>2007-10-06T07:07:00.000-07:00</published><updated>2007-10-06T07:09:01.115-07:00</updated><title type='text'>C# Interview Questions</title><content type='html'>&lt;b style=""&gt;&lt;span style="font-size: 16pt;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;  &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 16pt;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;br /&gt;&lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol start="1" type="1"&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the implicit name      of the parameter that gets passed into the class’ set method?&lt;/b&gt; Value,      and its datatype depends on whatever variable we’re changing. &lt;a name="more55"&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How do you inherit from a      class in C#? &lt;/b&gt;Place a colon and then the name of the base class. Notice      that it’s double colon in C++. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Does C# support multiple      inheritance? &lt;/b&gt;No, use interfaces instead. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;When you inherit a      protected class-level variable, who is it available to? &lt;/b&gt;Classes in the      same namespace. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Are private class-level      variables inherited? &lt;/b&gt;Yes, but they are not accessible, so looking at      it you can honestly say that they are not inherited. But they are. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Describe the accessibility      modifier protected internal. &lt;/b&gt;It’s available to derived classes and      classes within the same Assembly (and naturally from the base class it’s      declared in). &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;C# provides a default      constructor for me. I write a constructor that takes a string as a      parameter, but want to keep the no parameter one. How many constructors      should I write? &lt;/b&gt;Two. Once you write at least one constructor, C#      cancels the freebie constructor, and now you have to write one yourself,      even if there’s no implementation in it. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the top .NET class      that everything is derived from? &lt;/b&gt;System.Object. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How’s method overriding      different from overloading? &lt;/b&gt;When overriding, you change the method      behavior for a derived class. Overloading simply involves having a method      with the same name within the class. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What does the keyword      virtual mean in the method definition? &lt;/b&gt;The method can be over-ridden. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you declare the      override method static while the original method is non-static? &lt;/b&gt;No,      you can’t, the signature of the virtual method must remain the same, only      the keyword virtual is changed to keyword override. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you override private      virtual methods? &lt;/b&gt;No, moreover, you cannot access private methods in      inherited classes, have to be protected in the base class to allow any      sort of access. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you prevent your class      from being inherited and becoming a base class for some other classes?&lt;/b&gt;      Yes, that’s what keyword sealed in the class definition is for. The      developer trying to derive from your class will get a message: cannot      inherit from Sealed class WhateverBaseClassName. It’s the same concept as      final class in Java. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you allow class to be      inherited, but prevent the method from being over-ridden? &lt;/b&gt;Yes, just      leave the class public and make the method sealed. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s an abstract class? &lt;/b&gt;A      class that cannot be instantiated. A concept in C++ known as pure virtual      method. A class that must be inherited and have the methods over-ridden.      Essentially, it’s a blueprint for a class without any implementation. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;When do you absolutely      have to declare a class as abstract (as opposed to free-willed educated      choice or decision based on UML diagram)? &lt;/b&gt;When at least one of the      methods in the class is abstract. When the class itself is inherited from      an abstract class, but not all base abstract methods have been      over-ridden. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s an interface class?      &lt;/b&gt;It’s an abstract class with public abstract methods all of which must      be implemented in the inherited classes. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Why can’t you specify the      accessibility modifier for methods inside the interface? &lt;/b&gt;They all must      be public. Therefore, to prevent you from getting the false impression      that you have any freedom of choice, you are not allowed to specify any      accessibility, it’s public by default. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you inherit multiple      interfaces? &lt;/b&gt;Yes, why not. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;And if they have      conflicting method names? &lt;/b&gt;It’s up to you to implement the method      inside your own class, so implementation is left entirely up to you. This      might cause a problem on a higher-level scale if similarly named methods      from different interfaces expect different data, but as far as compiler      cares you’re okay. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the difference      between an interface and abstract class? &lt;/b&gt;In the interface all methods      must be abstract; in the abstract class some methods can be concrete. In      the interface no accessibility modifiers are allowed, which is ok in      abstract classes. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How can you overload a      method? &lt;/b&gt;Different parameter data types, different number of      parameters, different order of parameters. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;If a base class has a      bunch of overloaded constructors, and an inherited class has another bunch      of overloaded constructors, can you enforce a call from an inherited      constructor to an arbitrary base constructor? &lt;/b&gt;Yes, just place a colon,      and then keyword base (parameter list to invoke the appropriate      constructor) in the overloaded constructor definition inside the inherited      class. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the difference      between System.String and System.StringBuilder classes? &lt;/b&gt;System.String      is immutable; System.StringBuilder was designed with the purpose of having      a mutable string where a variety of operations can be performed. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the advantage of      using System.Text.StringBuilder over System.String? &lt;/b&gt;StringBuilder is      more efficient in the cases, where a lot of manipulation is done to the      text. Strings are immutable, so each time it’s being operated on, a new      instance is created. &lt;a name="more57"&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you store multiple      data types in System.Array? &lt;/b&gt;No. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the difference      between the System.Array.CopyTo() and System.Array.Clone()? &lt;/b&gt;The first      one performs a deep copy of the array, the second one is shallow. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How can you sort the      elements of the array in descending order? &lt;/b&gt;By calling Sort() and then      Reverse() methods. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the .NET datatype      that allows the retrieval of data by a unique key? &lt;/b&gt;HashTable. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s class SortedList      underneath? &lt;/b&gt;A sorted HashTable. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Will &lt;i&gt;finally&lt;/i&gt; block      get executed if the exception had not occurred? &lt;/b&gt;Yes. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the C# equivalent      of C++ catch (…), which was a catch-all statement for any possible      exception? &lt;/b&gt;A catch block that catches the exception of type      System.Exception. You can also omit the parameter data type in this case      and just write catch {}. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can multiple catch blocks      be executed? &lt;/b&gt;No, once the proper catch code fires off, the control is      transferred to the finally block (if there are any), and then whatever      follows the finally block. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Why is it a bad idea to      throw your own exceptions? &lt;/b&gt;Well, if at that point you know that an      error has occurred, then why not write the proper code to handle that      error instead of passing a new Exception object to the catch block?      Throwing your own exceptions signifies some design flaws in the project. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s a delegate? &lt;/b&gt;A      delegate object encapsulates a reference to a method. In C++ they were      referred to as function pointers. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s a multicast      delegate? &lt;/b&gt;It’s a delegate that points to and eventually fires off      several methods. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How’s the DLL Hell problem      solved in .NET? &lt;/b&gt;Assembly versioning allows the application to specify      not only the library it needs to run (which was available under Win32),      but also the version of the assembly. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are the ways to      deploy an assembly? &lt;/b&gt;An MSI installer, a CAB archive, and XCOPY      command. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s a satellite      assembly? &lt;/b&gt;When you write a multilingual or multi-cultural application      in .NET, and want to distribute the core application separately from the      localized modules, the localized assemblies that modify the core      application are called satellite assemblies. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What namespaces are      necessary to create a localized application? &lt;/b&gt;System.Globalization,      System.Resources. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the difference      between // comments, /* */ comments and /// comments? &lt;/b&gt;Single-line,      multi-line and XML documentation comments. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How do you generate      documentation from the C# file commented properly with a command-line      compiler? &lt;/b&gt;Compile it with a /doc switch. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the difference      between &lt;c&gt; and &lt;code&gt; XML documentation tag? &lt;/b&gt;Single line      code example and multiple-line code example. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Is XML case-sensitive? &lt;/b&gt;Yes,      so &lt;student&gt; and &lt;student&gt; are different elements. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What debugging tools come      with the .NET SDK? &lt;/b&gt;CorDBG – command-line debugger, and DbgCLR –      graphic debugger. Visual Studio .NET uses the DbgCLR. To use CorDbg, you      must compile the original C# file using the /debug switch. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What does the This window      show in the debugger? &lt;/b&gt;It points to the object that’s pointed to by      this reference. Object’s instance data is shown. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What does assert() do? &lt;/b&gt;In      debug compilation, assert takes in a Boolean condition as a parameter, and      shows the error dialog if the condition is false. The program proceeds      without any interruption if the condition is true. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the difference      between the Debug class and Trace class? Documentation looks the same. &lt;/b&gt;Use      Debug class for debug builds, use Trace class for both debug and release      builds. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Why are there five tracing      levels in System.Diagnostics.TraceSwitcher? &lt;/b&gt;The tracing dumps can be      quite verbose and for some applications that are constantly running you      run the risk of overloading the machine and the hard drive there. Five levels      range from None to Verbose, allowing to fine-tune the tracing activities. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Where is the output of      TextWriterTraceListener redirected? &lt;/b&gt;To the Console or a text file      depending on the parameter passed to the constructor. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How do you debug an      ASP.NET Web application? &lt;/b&gt;Attach the aspnet_wp.exe process to the      DbgClr debugger. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are three test cases      you should go through in unit testing? &lt;/b&gt;Positive test cases (correct      data, correct output), negative test cases (broken or missing data, proper      handling), exception test cases (exceptions are thrown and caught      properly). &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you change the value      of a variable while debugging a C# application? &lt;/b&gt;Yes, if you are      debugging via Visual Studio.NET, just go to Immediate window. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Explain the three services      model (three-tier application). &lt;/b&gt;Presentation (UI), business (logic and      underlying code) and data (from storage or other sources). &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are advantages and      disadvantages of Microsoft-provided data provider classes in ADO.NET? &lt;/b&gt;SQLServer.NET      data provider is high-speed and robust, but requires SQL Server license      purchased from Microsoft. OLE-DB.NET is universal for accessing other      sources, like Oracle, DB2, Microsoft Access and Informix, but it’s a .NET      layer on top of OLE layer, so not the fastest thing in the world. ODBC.NET      is a deprecated layer provided for backward compatibility to ODBC engines.      &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the role of the      DataReader class in ADO.NET connections? &lt;/b&gt;It returns a read-only      dataset from the data source when the command is executed. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the wildcard      character in SQL? Let’s say you want to query database with LIKE for all      employees whose name starts with La. &lt;/b&gt;The wildcard character is %, the      proper query with LIKE would involve ‘La%’. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Explain ACID rule of thumb      for transactions. &lt;/b&gt;Transaction must be Atomic (it is one unit of work      and does not dependent on previous and following transactions), Consistent      (data is either committed or roll back, no “in-between” case where      something has been updated and something hasn’t), Isolated (no transaction      sees the intermediate results of the current transaction), Durable (the      values persist if the data had been committed even if the system crashes      right after). &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What connections does      Microsoft SQL Server support? &lt;/b&gt;Windows Authentication (via Active      Directory) and SQL Server authentication (via Microsoft SQL Server      username and passwords). &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Which one is trusted and      which one is untrusted? &lt;/b&gt;Windows Authentication is trusted because the      username and password are checked with the Active Directory, the SQL      Server authentication is untrusted, since SQL Server is the only verifier      participating in the transaction. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Why would you use      untrusted verificaion? &lt;/b&gt;Web Services might use it, as well as      non-Windows applications. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What does the parameter      Initial Catalog define inside Connection String? &lt;/b&gt;The database name to      connect to. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What’s the data provider      name to connect to Access database? &lt;/b&gt;Microsoft.Access. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What does Dispose method      do with the connection object? &lt;/b&gt;Deletes it from the memory. &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is a pre-requisite      for connection pooling? &lt;/b&gt;Multiple processes must agree that they will      share the same connection, where every parameter is the same, including      the security settings.&lt;/span&gt; &lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-514458228194594821?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/514458228194594821/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=514458228194594821' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/514458228194594821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/514458228194594821'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/c-interview-questions.html' title='C# Interview Questions'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-1304964186376861260</id><published>2007-10-05T02:43:00.000-07:00</published><updated>2007-10-05T02:52:06.323-07:00</updated><title type='text'>SQL Sample Queries II</title><content type='html'>&lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;Table 1 :&lt;/i&gt; &lt;b style=""&gt;DEPT &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;DEPTNO (NOT NULL , NUMBER(2)),&lt;span style=""&gt;  &lt;/span&gt;DNAME (VARCHAR2(14)), &lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;LOC (VARCHAR2(13)&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;Table 2 :&lt;/i&gt; &lt;b style=""&gt;EMP&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;EMPNO (NOT NULL , NUMBER(4)), ENAME (VARCHAR2(10)), &lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;JOB (VARCHAR2(9)), MGR (NUMBER(4)), HIREDATE (DATE), &lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;SAL (NUMBER(7,2)), COMM (NUMBER(7,2)), DEPTNO (NUMBER(2))&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;MGR is the empno of the employee whom the employee reports to. DEPTNO is a foreign key.&lt;/span&gt;&lt;/p&gt;  &lt;span style="font-size:85%;"&gt;&lt;b style="font-family: verdana;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 12pt;"&gt;QUERIES&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;  &lt;p class="MsoBodyText"&gt;1.&lt;span style=""&gt;         &lt;/span&gt;List all the employees who have at least one person reporting to them.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT DISTINCT(A.ENAME) FROM EMP A, EMP B WHERE A.EMPNO = B.MGR;&lt;span style=""&gt;   &lt;/span&gt;or&lt;span style=""&gt;  &lt;/span&gt;SELECT ENAME FROM EMP WHERE EMPNO IN (SELECT MGR FROM EMP);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText2"&gt;&lt;b&gt;2.&lt;span style=""&gt;         &lt;/span&gt;List the employee details if and only if more than 10 employees are present in&lt;/b&gt; department no 10.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM EMP WHERE DEPTNO IN (SELECT DEPTNO FROM EMP GROUP BY DEPTNO HAVING COUNT(EMPNO)&gt;10 AND DEPTNO=10);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;3.&lt;span style=""&gt;         &lt;/span&gt;List the name of the employees with their immediate higher authority.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT A.ENAME "EMPLOYEE", B.ENAME "REPORTS TO" FROM EMP A, EMP B WHERE A.MGR=B.EMPNO;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;4.&lt;span style=""&gt;         &lt;/span&gt;List all the employees who do not manage any one.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM EMP WHERE EMPNO IN ( SELECT EMPNO FROM EMP MINUS SELECT MGR FROM EMP);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5.&lt;span style=""&gt;         &lt;/span&gt;List the employee details whose salary is greater than the lowest salary of an employee belonging to deptno 20.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5.&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM EMP WHERE SAL &gt; ( SELECT MIN(SAL) FROM EMP GROUP BY DEPTNO HAVING DEPTNO=20);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;6.&lt;span style=""&gt;         &lt;/span&gt;List the details of the employee earning more than the highest paid manager.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM EMP WHERE SAL &gt; ( SELECT MAX(SAL) FROM EMP GROUP BY JOB HAVING JOB = 'MANAGER' );&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;7.&lt;span style=""&gt;         &lt;/span&gt;List the highest salary paid for each job.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT JOB, MAX(SAL) FROM EMP GROUP BY JOB;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;8.&lt;span style=""&gt;         &lt;/span&gt;Find the most recently hired employee in each department.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM EMP WHERE (DEPTNO, HIREDATE) IN (SELECT DEPTNO, MAX(HIREDATE) FROM EMP GROUP BY DEPTNO);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;9.&lt;span style=""&gt;         &lt;/span&gt;In which year did most people join the company? Display the year and the number of employees.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT TO_CHAR(HIREDATE,'YYYY') "YEAR", COUNT(EMPNO) "NO. OF EMPLOYEES" FROM EMP GROUP BY TO_CHAR(HIREDATE,'YYYY') HAVING COUNT(EMPNO) = (SELECT MAX(COUNT(EMPNO)) FROM EMP GROUP BY TO_CHAR(HIREDATE,'YYYY'));&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;10.&lt;span style=""&gt;      &lt;/span&gt;Which department has the highest annual remuneration bill?&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT DEPTNO, LPAD(SUM(12*(SAL+NVL(COMM,0))),15) "COMPENSATION" FROM EMP GROUP BY DEPTNO HAVING SUM( 12*(SAL+NVL(COMM,0))) = (SELECT MAX(SUM(12*(SAL+NVL(COMM,0)))) FROM EMP GROUP BY DEPTNO);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;11.&lt;span style=""&gt;      &lt;/span&gt;Write a query to display a ‘*’ against the row of the most recently hired employee.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT ENAME, HIREDATE, LPAD('*',8) "RECENTLY HIRED" FROM EMP WHERE HIREDATE = (SELECT MAX(HIREDATE) FROM EMP) UNION SELECT ENAME NAME, HIREDATE, LPAD(' ',15) "RECENTLY HIRED" FROM EMP WHERE HIREDATE != (SELECT MAX(HIREDATE) FROM EMP);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;12.&lt;span style=""&gt;      &lt;/span&gt;Write a correlated sub-query to list out the employees who earn more than the average salary of their department.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT ENAME,SAL FROM EMP E WHERE SAL &gt; (SELECT AVG(SAL) FROM EMP F WHERE E.DEPTNO = F.DEPTNO);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;13.&lt;span style=""&gt;      &lt;/span&gt;Find the nth maximum salary.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT ENAME, SAL FROM EMP A WHERE &amp;amp;N = (SELECT COUNT (DISTINCT(SAL)) FROM EMP B WHERE A.SAL&lt;=B.SAL);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;14.&lt;span style=""&gt;      &lt;/span&gt;Select the duplicate records (Records, which are inserted, that already exist) in the EMP table.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM EMP A WHERE A.EMPNO IN (SELECT EMPNO FROM EMP GROUP BY EMPNO HAVING COUNT(EMPNO)&gt;1) AND A.ROWID!=MIN (ROWID));&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;15.&lt;span style=""&gt;      &lt;/span&gt;Write a query to list the length of service of the employees (of the form n years and m months).&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;SELECT ENAME "EMPLOYEE",TO_CHAR(TRUNC(MONTHS_BETWEEN(SYSDATE,HIREDATE)/12))||' YEARS '|| TO_CHAR(TRUNC(MOD(MONTHS_BETWEEN (SYSDATE, HIREDATE),12)))||' MONTHS ' "LENGTH OF SERVICE" FROM EMP;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-1304964186376861260?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/1304964186376861260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=1304964186376861260' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/1304964186376861260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/1304964186376861260'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/sql-sample-queries-ii.html' title='SQL Sample Queries II'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-6724928560058265756</id><published>2007-10-05T02:29:00.000-07:00</published><updated>2007-10-05T02:42:50.968-07:00</updated><title type='text'>SQL Queries</title><content type='html'>&lt;p style="font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;I. SCHEMAS &lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;Table 1 :&lt;/i&gt; &lt;b style=""&gt;&lt;i style=""&gt;STUDIES&lt;/i&gt;&lt;/b&gt;&lt;i style=""&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;PNAME&lt;span style=""&gt;  &lt;/span&gt;(VARCHAR),&lt;span style=""&gt;  &lt;/span&gt;SPLACE (VARCHAR),&lt;span style=""&gt;  &lt;/span&gt;COURSE (VARCHAR),&lt;span style=""&gt;  &lt;/span&gt;CCOST (NUMBER)&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;Table 2 : &lt;b style=""&gt;SOFTWARE&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;PNAME (VARCHAR), TITLE (VARCHAR), DEVIN (VARCHAR), SCOST (NUMBER), DCOST (NUMBER), SOLD (NUMBER)&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;Table 3 : &lt;b style=""&gt;PROGRAMMER&lt;/b&gt;&lt;/i&gt;&lt;b style=""&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;PNAME (VARCHAR), DOB (DATE), DOJ (DATE), SEX (CHAR), PROF1 (VARCHAR), PROF2 (VARCHAR), SAL (NUMBER)&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;LEGEND :&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;PNAME – Programmer Name, SPLACE – Study Place, CCOST – Course Cost,&lt;span style=""&gt;  &lt;/span&gt;DEVIN – Developed in, SCOST – Software Cost, DCOST – Development Cost, PROF1 – Proficiency 1 &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;span style="font-size:85%;"&gt;&lt;b style="font-family: verdana;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 12pt;"&gt;QUERIES :&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-family: verdana;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.&lt;span style=""&gt;         &lt;/span&gt;Find out the selling cost average for packages developed in Oracle.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT AVG(SCOST)&lt;span style=""&gt;  &lt;/span&gt;FROM SOFTWARE WHERE DEVIN = 'ORACLE';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2.&lt;span style=""&gt;            &lt;/span&gt;Display the names, ages and experience of all programmers.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT PNAME,TRUNC(MONTHS_BETWEEN(SYSDATE,DOB)/12) "AGE", TRUNC(MONTHS_BETWEEN(SYSDATE,DOJ)/12) "EXPERIENCE" FROM PROGRAMMER;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3.&lt;span style=""&gt;            &lt;/span&gt;Display the names of those who have done the PGDCA course.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT PNAME FROM STUDIES WHERE COURSE = 'PGDCA';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4.&lt;span style=""&gt;         &lt;/span&gt;What is the highest number of copies sold by a package?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT MAX(SOLD) FROM SOFTWARE;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5.&lt;span style=""&gt;            &lt;/span&gt;Display the names and date of birth of all programmers born in April.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT PNAME, DOB FROM PROGRAMMER WHERE DOB LIKE '%APR%'&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;6.&lt;span style=""&gt;            &lt;/span&gt;Display the lowest course fee.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT MIN(CCOST) FROM STUDIES;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;7.&lt;span style=""&gt;         &lt;/span&gt;How many programmers have done the DCA course.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT COUNT(*) FROM STUDIES WHERE COURSE = 'DCA';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;8.&lt;span style=""&gt;         &lt;/span&gt;How much revenue has been earned through the sale of packages developed in C.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT SUM(SCOST*SOLD-DCOST) FROM SOFTWARE GROUP BY DEVIN HAVING DEVIN = 'C';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;9.&lt;span style=""&gt;            &lt;/span&gt;Display the details of software developed by Rakesh.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM SOFTWARE WHERE PNAME = 'RAKESH';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;10.&lt;span style=""&gt;      &lt;/span&gt;How many programmers studied at Pentafour.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM STUDIES WHERE SPLACE = 'PENTAFOUR';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;11.&lt;span style=""&gt;            &lt;/span&gt;Display the details of packages whose sales crossed the 5000 mark.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM SOFTWARE WHERE SCOST*SOLD-DCOST &gt; 5000;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;12.&lt;span style=""&gt;      &lt;/span&gt;Find out the number of copies which should be sold in order to recover the development cost of each package.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT CEIL(DCOST/SCOST) FROM SOFTWARE;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;13.&lt;span style=""&gt;            &lt;/span&gt;Display the details of packages for which the development cost has been recovered.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM SOFTWARE WHERE SCOST*SOLD &gt;= DCOST;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;14.&lt;span style=""&gt;      &lt;/span&gt;What is the price of costliest software developed in VB?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT MAX(SCOST) FROM SOFTWARE GROUP BY DEVIN HAVING DEVIN = 'VB';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;15.&lt;span style=""&gt;      &lt;/span&gt;How many packages were developed in Oracle ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT COUNT(*) FROM SOFTWARE WHERE DEVIN = 'ORACLE';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;16.&lt;span style=""&gt;      &lt;/span&gt;How many programmers studied at PRAGATHI?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT COUNT(*) FROM STUDIES WHERE SPLACE = 'PRAGATHI';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;17.&lt;span style=""&gt;      &lt;/span&gt;How many programmers paid 10000 to 15000 for the course?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT COUNT(*) FROM STUDIES WHERE CCOST BETWEEN 10000 AND 15000;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;18.&lt;span style=""&gt;      &lt;/span&gt;What is the average course fee?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT AVG(CCOST) FROM STUDIES;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;19.&lt;span style=""&gt;            &lt;/span&gt;Display the details of programmers knowing C.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM PROGRAMMER WHERE PROF1 = 'C' OR PROF2 = 'C';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;20.&lt;span style=""&gt;      &lt;/span&gt;How many programmers know either C or Pascal?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM PROGRAMMER WHERE PROF1 IN ('C','PASCAL') OR PROF2 IN ('C','PASCAL');&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;21.&lt;span style=""&gt;      &lt;/span&gt;How many programmers don’t know C and C++?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM PROGRAMMER WHERE PROF1 NOT IN ('C','C++') AND PROF2 NOT IN ('C','C++');&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;22.&lt;span style=""&gt;      &lt;/span&gt;How old is the oldest male programmer?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT TRUNC(MAX(MONTHS_BETWEEN(SYSDATE,DOB)/12)) FROM PROGRAMMER WHERE SEX = 'M';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;23.&lt;span style=""&gt;      &lt;/span&gt;What is the average age of female programmers?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT TRUNC(AVG(MONTHS_BETWEEN(SYSDATE,DOB)/12)) FROM PROGRAMMER WHERE SEX = 'F';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;24.&lt;span style=""&gt;            &lt;/span&gt;Calculate the experience in years for each programmer and display along with&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;b&gt;their names in descending order.&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText2"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT PNAME, TRUNC(MONTHS_BETWEEN(SYSDATE,DOJ)/12) FROM PROGRAMMER ORDER BY PNAME DESC;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;25.&lt;span style=""&gt;      &lt;/span&gt;Who are the programmers who celebrate their birthdays during the current month?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT PNAME FROM PROGRAMMER WHERE TO_CHAR(DOB,'MON') = TO_CHAR(SYSDATE,'MON');&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;26.&lt;span style=""&gt;      &lt;/span&gt;How many female programmers are there?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT COUNT(*) FROM PROGRAMMER WHERE SEX = 'F';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;27.&lt;span style=""&gt;      &lt;/span&gt;What are the languages known by the male programmers?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT DISTINCT(PROF1) FROM PROGRAMMER WHERE SEX = 'M';&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;28.&lt;span style=""&gt;      &lt;/span&gt;What is the average salary?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT AVG(SAL) FROM PROGRAMMER;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;29.&lt;span style=""&gt;      &lt;/span&gt;How many people draw 5000 to 7500?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT COUNT(*) FROM PROGRAMMER WHERE SAL BETWEEN 5000 AND 7500;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;30.&lt;span style=""&gt;            &lt;/span&gt;Display the details of those who don’t know C, C++ or Pascal.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT * FROM PROGRAMMER WHERE PROF1 NOT IN ('C','C++','PASCAL') AND PROF2 NOT IN ('C','C++','PASCAL');&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText"&gt;31.&lt;span style=""&gt;            &lt;/span&gt;Display the costliest package developed by each programmer.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;SELECT PNAME,TITLE,SCOST FROM SOFTWARE WHERE SCOST IN (SELECT MAX(SCOST) FROM SOFTWARE GROUP BY PNAME);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;32.&lt;span style=""&gt;            &lt;/span&gt;Produce the following output for all the male programmers&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Programmer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;&lt;b&gt;Mr. Arvind – has 15 years of experience&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;span style="font-size: 10pt; font-family: Verdana;"&gt;SELECT 'Mr.' || PNAME || ' - has ' || TRUNC(MONTHS_BETWEEN(SYSDATE,DOJ)/12) || ' years of experience' “Programmer” FROM PROGRAMMER WHERE SEX = 'M' UNION SELECT 'Ms.' || PNAME || ' - has ' || TRUNC (MONTHS_BETWEEN (SYSDATE,DOJ)/12) &lt;span style=""&gt; &lt;/span&gt;|| ' years of experience' “Programmer” FROM PROGRAMMER WHERE SEX = 'F';&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-family: verdana;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b style="font-family: verdana;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 12pt;"&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-6724928560058265756?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/6724928560058265756/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=6724928560058265756' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/6724928560058265756'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/6724928560058265756'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/sql-queries.html' title='SQL Queries'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-1535815483292690597</id><published>2007-10-05T02:25:00.000-07:00</published><updated>2007-10-05T02:27:19.526-07:00</updated><title type='text'>SQL Interview Questions I</title><content type='html'>&lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;p align="justify"&gt;1.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;Which is the subset of SQL commands used to manipulate Oracle Database structures, including tables?&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;Data Definition Language (DDL)&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;2.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What operator performs pattern matching?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;LIKE operator&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;3.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What operator tests column for the absence of data?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;IS NULL operator&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;4.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;Which command executes the contents of a specified file?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;START &lt;filename&gt; or @&lt;filename&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;5.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What is the parameter substitution symbol used with INSERT INTO command?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;&amp;amp;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;6.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;Which command displays the SQL command in the SQL buffer, and then executes it?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;RUN&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;7.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What are the wildcards used for pattern matching?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;_ for single character substitution and % for multi-character substitution&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;8.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;State true or false. EXISTS, SOME, ANY are operators in SQL.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;True&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;9.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;State true or false. !=, &lt;&gt;, ^= all denote the same operation.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;True&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;10.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What are the privileges that can be granted on a table by a user to others?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;Insert, update, delete, select, references, index, execute, alter, all&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;11.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What command is used to get back the privileges offered by the GRANT command?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;REVOKE&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;12.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;Which system tables contain information on privileges granted and privileges obtained?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;USER_TAB_PRIVS_MADE, USER_TAB_PRIVS_RECD&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;13.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;Which system table contains information on constraints on all the tables created?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;USER_CONSTRAINTS&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;14.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style=""&gt;      &lt;/span&gt;TRUNCATE TABLE EMP;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;DELETE FROM EMP;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;Will the outputs of the above two commands differ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;Both will result in deleting all the rows in the table EMP.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;15.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What is the difference between TRUNCATE and DELETE commands?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;TRUNCATE is a DDL command whereas DELETE is a DML command. Hence DELETE operation can be rolled back, but TRUNCATE operation cannot be rolled back. WHERE clause can be used with DELETE and not with TRUNCATE.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;16.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What command is used to create a table by copying the structure of another table?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer :&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;CREATE TABLE .. AS SELECT command&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation : &lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;To copy only the structure, the WHERE clause of the SELECT command should contain a FALSE statement as in the following.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;CREATE TABLE NEWTABLE AS SELECT * FROM EXISTINGTABLE WHERE 1=2;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;If the WHERE condition is true, then all the rows or rows satisfying the condition will be copied to the new table.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;17.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What will be the output of the following query?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;" class="MsoBodyText"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;SELECT REPLACE(TRANSLATE(LTRIM(RTRIM('!! ATHEN !!','!'), '!'), 'AN', '**'),'*','TROUBLE') FROM DUAL;&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;TROUBLETHETROUBLE&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;18.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What will be the output of the following query?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;SELECT&lt;span style=""&gt;  &lt;/span&gt;DECODE(TRANSLATE('A','1234567890','1111111111'), '1','YES', 'NO' );&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer :&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;NO&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation :&lt;/i&gt;&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;The query checks whether a given string is a numerical digit.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;19.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What does the following query do?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;SELECT SAL + NVL(COMM,0) FROM EMP;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;This displays the total salary of all employees. The null values in the commission column will be replaced by 0 and added to salary.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;20.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;Which date function is used to find the difference between two dates?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;MONTHS_BETWEEN&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;21.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;Why does the following command give a compilation error?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;DROP TABLE &amp;amp;TABLE_NAME;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;Variable names should start with an alphabet. Here the table name starts with an '&amp;amp;' symbol.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;22.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What is the advantage of specifying WITH GRANT OPTION in the GRANT command?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;The privilege receiver can further grant the privileges he/she has obtained from the owner to any other user.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;23.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What is the use of the DROP option in the ALTER TABLE command?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;It is used to drop constraints specified on the table.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;24.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What is the value of ‘comm’ and ‘sal’ after executing the following query if the initial value of ‘sal’ is 10000?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;UPDATE EMP SET SAL = SAL + 1000, COMM = SAL*0.1;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;sal = 11000, comm = 1000&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;25.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What is the use of DESC in SQL?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer :&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;DESC has two purposes. It is used to describe a schema as well as to retrieve rows from table in descending order.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation :&lt;/i&gt;&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;The query SELECT * FROM EMP ORDER BY ENAME DESC will display the output sorted on ENAME in descending order.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;26.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What is the use of CASCADE CONSTRAINTS?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;When this clause is used with the DROP command, a parent table can be dropped even when a child table exists. &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;27.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;Which function is used to find the largest integer less than or equal to a specific&lt;/span&gt;&lt;/i&gt;&lt;span lang="EN-GB"&gt; &lt;/span&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;value?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt; &lt;/span&gt;FLOOR&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; font-family: verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0in; text-align: justify; text-indent: 0in; font-family: verdana;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;28.&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;What is the output of the following query?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style="" lang="EN-GB"&gt;SELECT TRUNC(1234.5678,-2) FROM DUAL;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;" class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;i style=""&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/i&gt;&lt;span style=""&gt; &lt;/span&gt;1200&lt;/p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-1535815483292690597?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/1535815483292690597/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=1535815483292690597' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/1535815483292690597'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/1535815483292690597'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/sql-interview-questions-i.html' title='SQL Interview Questions I'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-8775814473385855585</id><published>2007-10-05T00:58:00.000-07:00</published><updated>2007-10-05T01:00:29.994-07:00</updated><title type='text'>Aptitude Questions III</title><content type='html'>&lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;p align="justify"&gt;Solve the following and check with the answers given at the end.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText2" style="margin-left: 42pt; text-align: justify; text-indent: -42pt;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.&lt;span style=""&gt;         &lt;/span&gt;It was calculated that 75 men could complete a piece of work in 20 days. When work was scheduled to commence, it was found necessary to send 25 men to another project. How much longer will it take to complete the work?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText2" style="margin-left: 42pt; text-align: justify; text-indent: -42pt;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2.&lt;span style=""&gt;       &lt;/span&gt;A student divided a number by 2/3 when he required to multiply by 3/2. Calculate the percentage of error in his result.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3.&lt;span style=""&gt;       &lt;/span&gt;A dishonest shopkeeper professes to sell pulses at the cost price, but he uses a false weight of 950gm. for a kg. His gain is …%.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4.&lt;span style=""&gt;       &lt;/span&gt;A software engineer has the capability of thinking 100 lines of code in five minutes and can type 100 lines of code in 10 minutes. He takes a break for five minutes after every ten minutes. How many lines of codes will he complete typing after an hour?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5.&lt;span style=""&gt;       &lt;/span&gt;A man was engaged on a job for 30 days on the condition that he would get a wage of Rs. 10 for the day he works, but he have to pay a fine of Rs. 2 for each day of his absence. If he gets Rs. 216 at the end, he was absent for work for ... days.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;6.&lt;span style=""&gt;       &lt;/span&gt;A contractor agreeing to finish a work in 150 days, employed 75 men each working 8 hours daily. After 90 days, only 2/7 of the work was completed. Increasing the number of men by­­ ________ each working now for 10 hours daily, the work can be completed in time.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;7.&lt;span style=""&gt;       &lt;/span&gt;what is a percent of b divided by b percent of a?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;(a) &lt;span style=""&gt;     &lt;/span&gt;a&lt;span style=""&gt;        &lt;/span&gt;(b)&lt;span style=""&gt;      &lt;/span&gt;b&lt;span style=""&gt;        &lt;/span&gt;(c)&lt;span style=""&gt;      &lt;/span&gt;1&lt;span style=""&gt;        &lt;/span&gt;(d)&lt;span style=""&gt;      &lt;/span&gt;10&lt;span style=""&gt;      &lt;/span&gt;(d)&lt;span style=""&gt;      &lt;/span&gt;100&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;8.&lt;span style=""&gt;       &lt;/span&gt;A man bought a horse and a cart. If he sold the horse at 10 % loss and the cart at 20 % gain, he would not lose anything; but if he sold the horse at 5% loss and the cart at 5% gain, he would lose Rs. 10 in the bargain. The amount paid by him was Rs.­­­­_______ for the horse and Rs.________ for the cart.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;9.&lt;span style=""&gt;       &lt;/span&gt;A tennis marker is trying to put together a team of four players for a tennis tournament out of seven available. males - a, b and c; females – m, n, o and p. All players are of equal ability and there must be at least two males in the team. For a team of four, all players must be able to play with each other under the following restrictions:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;b should not play with m,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;c should not play with p, and&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;a should not play with o.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Which of the following statements must be false?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;b and p cannot be selected together&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;c and o cannot be selected together&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;c and n cannot be selected together.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;10-12.&lt;span style=""&gt;      &lt;/span&gt;The following figure depicts three views of a cube. Based on this, answer questions 10-12.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                        &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;6&lt;span style=""&gt;                  &lt;/span&gt;&lt;span style=""&gt;       &lt;/span&gt;5&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shapetype id="_x0000_t16" coordsize="21600,21600" spt="16" adj="5400" path="m@0,0l0@0,,21600@1,21600,21600@2,21600,0xem0@0nfl@1@0,21600,0em@1@0nfl@1,21600e"&gt;  &lt;v:stroke joinstyle="miter"&gt;  &lt;v:formulas&gt;   &lt;v:f eqn="val #0"&gt;   &lt;v:f eqn="sum width 0 #0"&gt;   &lt;v:f eqn="sum height 0 #0"&gt;   &lt;v:f eqn="mid height #0"&gt;   &lt;v:f eqn="prod @1 1 2"&gt;   &lt;v:f eqn="prod @2 1 2"&gt;   &lt;v:f eqn="mid width #0"&gt;  &lt;/v:formulas&gt;  &lt;v:path extrusionok="f" gradientshapeok="t" limo="10800,10800" connecttype="custom" connectlocs="@6,0;@4,@0;0,@3;@4,21600;@1,@3;21600,@5" connectangles="270,270,180,90,0,0" textboxrect="0,@0,@1,21600"&gt;  &lt;v:handles&gt;   &lt;v:h position="topLeft,#0" switch="" yrange="0,21600"&gt;  &lt;/v:handles&gt;  &lt;o:complex ext="view"&gt; &lt;/v:shapetype&gt;&lt;v:shape id="_x0000_s1028" type="#_x0000_t16" style="'position:absolute;" allowincell="f"&gt;  &lt;v:textbox style="'mso-next-textbox:#_x0000_s1028'"&gt;   &lt;![if !mso]&gt;   &lt;table cellpadding="0" cellspacing="0" width="100%"&gt;    &lt;tr&gt;     &lt;td&gt;&lt;![endif]&gt;     &lt;div&gt;     &lt;p class="MsoNormal"&gt;&lt;![if !supportEmptyParas]&gt; &lt;![endif]&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="mso-spacerun: yes"&gt;      &lt;/span&gt;2&lt;/p&gt;     &lt;/div&gt;     &lt;![if !mso]&gt;&lt;/td&gt;    &lt;/tr&gt;   &lt;/table&gt;   &lt;![endif]&gt;&lt;/v:textbox&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 2; left: 0px; margin-left: 110px; margin-top: 18px; width: 90px; height: 60px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image001.gif" alt="Cube:       2" shapes="_x0000_s1028" height="60" width="90" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_s1027" type="#_x0000_t16" style="'position:absolute;left:0;" allowincell="f"&gt;  &lt;v:textbox style="'mso-next-textbox:#_x0000_s1027'"&gt;   &lt;![if !mso]&gt;   &lt;table cellpadding="0" cellspacing="0" width="100%"&gt;    &lt;tr&gt;     &lt;td&gt;&lt;![endif]&gt;     &lt;div&gt;     &lt;p class="MsoNormal"&gt;&lt;![if !supportEmptyParas]&gt; &lt;![endif]&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="mso-spacerun: yes"&gt;     &lt;/span&gt;3&lt;/p&gt;     &lt;/div&gt;     &lt;![if !mso]&gt;&lt;/td&gt;    &lt;/tr&gt;   &lt;/table&gt;   &lt;![endif]&gt;&lt;/v:textbox&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 1; left: 0px; margin-left: 370px; margin-top: 18px; width: 89px; height: 60px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image002.gif" alt="Cube:      3" shapes="_x0000_s1027" height="60" width="89" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_s1026" type="#_x0000_t16" style="'position:absolute;left:0;" allowincell="f"&gt;  &lt;v:textbox style="'mso-next-textbox:#_x0000_s1026'"&gt;   &lt;![if !mso]&gt;   &lt;table cellpadding="0" cellspacing="0" width="100%"&gt;    &lt;tr&gt;     &lt;td&gt;&lt;![endif]&gt;     &lt;div&gt;     &lt;p class="MsoNormal"&gt;&lt;![if !supportEmptyParas]&gt; &lt;![endif]&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="mso-spacerun: yes"&gt;     &lt;/span&gt;2&lt;span style="mso-spacerun: yes"&gt;  &lt;/span&gt;&lt;/p&gt;     &lt;/div&gt;     &lt;![if !mso]&gt;&lt;/td&gt;    &lt;/tr&gt;   &lt;/table&gt;   &lt;![endif]&gt;&lt;/v:textbox&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 0; left: 0px; margin-left: 235px; margin-top: 18px; width: 90px; height: 60px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image003.gif" alt="Cube:      2  " shapes="_x0000_s1026" height="60" width="90" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;&lt;span style=""&gt;     &lt;/span&gt;4&lt;span style=""&gt;   &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                                      &lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;1&lt;span style=""&gt;    &lt;/span&gt;&lt;span style=""&gt;           &lt;/span&gt;22&lt;span style=""&gt;      &lt;/span&gt;3&lt;span style=""&gt;                  &lt;/span&gt;&lt;span style=""&gt;        &lt;/span&gt;6&lt;span style=""&gt;                                      &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;10.&lt;span style=""&gt;     &lt;/span&gt;The number on the face opposite to the face carrying 1 is ­­­­_______ .&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;11.&lt;span style=""&gt;     &lt;/span&gt;The number on the faces adjacent to the face marked 5 are ­­_______ .&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;12.&lt;span style=""&gt;     &lt;/span&gt;Which of the following pairs does not correctly give the numbers on the opposite faces.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(1)&lt;span style=""&gt;      &lt;/span&gt;6,5&lt;span style=""&gt;     &lt;/span&gt;(2)&lt;span style=""&gt;      &lt;/span&gt;4,1&lt;span style=""&gt;     &lt;/span&gt;(3)&lt;span style=""&gt;      &lt;/span&gt;1,3&lt;span style=""&gt;     &lt;/span&gt;(4)&lt;span style=""&gt;      &lt;/span&gt;4,2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;13.&lt;span style=""&gt;     &lt;/span&gt;Five farmers have 7, 9, 11, 13 &amp;amp; 14 apple trees, respectively in their orchards. Last year, each of them discovered that every tree in their own orchard bore exactly the same number of apples. Further, if the third farmer gives one apple to the first, and the fifth gives three to each of the second and the fourth, they would all have exactly the same number of apples. What were the yields per tree in the orchards of the third and fourth farmers?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;14.&lt;span style=""&gt;     &lt;/span&gt;Five boys were climbing a hill. J was following H. R was just ahead of G. K was between G &amp;amp; H. They were climbing up in a column. Who was the second?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;15-18&lt;span style=""&gt;  &lt;/span&gt;John is undecided which of the four novels to buy. He is considering a spy &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;thriller, a Murder mystery, a Gothic romance and a science fiction novel. The books are written by Rothko, Gorky, Burchfield and Hopper, not necessary in that order, and published by Heron, Piegon, Blueja and sparrow, not necessary in that order.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(1) The book by Rothko is published by Sparrow.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(2) The Spy thriller is published by Heron.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify; text-indent: 0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(3) The science fiction novel is by Burchfield and is not published by Blueja.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(4)The Gothic romance is by Hopper.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;15.&lt;span style=""&gt;     &lt;/span&gt;Pigeon publishes ____________.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText2" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;16.&lt;span style=""&gt;     &lt;/span&gt;The novel by Gorky ________________.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;17.&lt;span style=""&gt;     &lt;/span&gt;John ­purchases books by the authors whose names come first and third in alphabetical order. He does not buy the books ­­______.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;18.&lt;span style=""&gt;     &lt;/span&gt;On the basis of the first paragraph and statement (2), (3) and (4) only, it is possible to deduce that&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Rothko wrote the murder mystery or the spy thriller&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Sparrow published the murder mystery or the spy thriller&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;The book by Burchfield is published by Sparrow. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;19. &lt;span style=""&gt;    &lt;/span&gt;If a light flashes every 6 seconds, how many times will it flash in ¾ of an hour?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;20.&lt;span style=""&gt;     &lt;/span&gt;If point P is on line segment AB, then which of the following is always true?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(1) AP = PB&lt;span style=""&gt;   &lt;/span&gt;(2) AP &gt; PB&lt;span style=""&gt;  &lt;/span&gt;(3) PB &gt; AP&lt;span style=""&gt;  &lt;/span&gt;(4) AB &gt; AP&lt;span style=""&gt;  &lt;/span&gt;(5) AB &gt; AP + PB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;21.&lt;span style=""&gt;     &lt;/span&gt;All men are vertebrates. Some mammals are vertebrates. Which of the following conclusions drawn from the above statement is correct.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;All men are mammals&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;All mammals are men&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Some vertebrates are mammals.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;None&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;22.&lt;span style=""&gt;     &lt;/span&gt;Which of the following statements drawn from the given statements are correct?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Given:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;All watches sold in that shop are of high standard. Some of the HMT watches are sold in that shop.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;a)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;All watches of high standard were manufactured by HMT.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;b)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Some of the HMT watches are of high standard.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;c)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;None of the HMT watches is of high standard.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;d)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Some of the HMT watches of high standard are sold in that shop.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;23-27.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Ashland is north of East Liverpool and west of Coshocton.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Bowling green is north of Ashland and west of Fredericktown.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Dover is south and east of Ashland.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;East Liverpool is north of Fredericktown and east of Dover.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Fredericktown is north of Dover and west of Ashland.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;6.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Coshocton is south of Fredericktown and west of Dover.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;23.&lt;span style=""&gt;     &lt;/span&gt;Which of the towns mentioned is furthest of the north – west&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(a) Ashland &lt;span style=""&gt;             &lt;/span&gt;(b) Bowling green&lt;span style=""&gt;               &lt;/span&gt;(c) Coshocton&lt;span style=""&gt;          &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(d) East Liverpool&lt;span style=""&gt;     &lt;/span&gt;(e) Fredericktown&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;24.&lt;span style=""&gt;     &lt;/span&gt;Which of the following must be both north and east of Fredericktown?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(a) Ashland&lt;span style=""&gt;              &lt;/span&gt;(b) Coshocton&lt;span style=""&gt;                   &lt;/span&gt;(c) East Liverpool&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;I a only&lt;span style=""&gt;                   &lt;/span&gt;II b only&lt;span style=""&gt;        &lt;/span&gt;III c only&lt;span style=""&gt;       &lt;/span&gt;IV a &amp;amp; b&lt;span style=""&gt;        &lt;/span&gt;V a &amp;amp; c&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;25.&lt;span style=""&gt;     &lt;/span&gt;Which of the following towns must be situated both south and west of at least one other town?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Ashland only&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;B.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Ashland and Fredericktown&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;C.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Dover and Fredericktown&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;D.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Dover, Coshocton and Fredericktown&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;E.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Coshocton, Dover and East Liverpool.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;26.&lt;span style=""&gt;     &lt;/span&gt;Which of the following statements, if true, would make the information in the numbered statements more specific?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Coshocton is north of Dover.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(b)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;East Liverpool is north of Dover&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(c)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Ashland is east of Bowling green.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(d)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Coshocton is east of Fredericktown&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1.25in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(e)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Bowling green is north of Fredericktown&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;27.&lt;span style=""&gt;     &lt;/span&gt;Which of the numbered statements gives information that can be deduced from one or more of the other statements?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(A) 1&lt;span style=""&gt;            &lt;/span&gt;(B) 2&lt;span style=""&gt;             &lt;/span&gt;(C) 3&lt;span style=""&gt;            &lt;/span&gt;(D) 4&lt;span style=""&gt;            &lt;/span&gt;(E) 6&lt;span style=""&gt;   &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;28.&lt;span style=""&gt;     &lt;/span&gt;Eight friends Harsha, Fakis, Balaji, Eswar, Dhinesh, Chandra, Geetha, and Ahmed are sitting in a circle facing the center. Balaji is sitting between Geetha and Dhinesh. Harsha is third to the left of Balaji and second to the right of Ahmed. Chandra is sitting between Ahmed and Geetha and Balaji and Eshwar are not sitting opposite to each other. Who is third to the left of Dhinesh?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;29.&lt;span style=""&gt;     &lt;/span&gt;If every alternative letter starting from B of the English alphabet is written in small letter, rest all are written in capital letters, how the month&lt;span style=""&gt;  &lt;/span&gt;“ September” be written. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(1)&lt;span style=""&gt;      &lt;/span&gt;SeptEMbEr&lt;span style=""&gt;     &lt;/span&gt;(2)&lt;span style=""&gt;      &lt;/span&gt;SEpTeMBEr&lt;span style=""&gt;    &lt;/span&gt;(3)&lt;span style=""&gt;      &lt;/span&gt;SeptembeR&lt;span style=""&gt;    &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(4)&lt;span style=""&gt;      &lt;/span&gt;SepteMber &lt;span style=""&gt;    &lt;/span&gt;(5)&lt;span style=""&gt;      &lt;/span&gt;None of the above.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;30.&lt;span style=""&gt;     &lt;/span&gt;The length of the side of a square is represented by x+2. The length of the side of an equilateral triangle is 2x. If the square and the equilateral triangle have equal perimeter, then the value of x is _______.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;31.&lt;span style=""&gt;     &lt;/span&gt;It takes Mr. Karthik y hours to complete typing a manuscript. After 2 hours, he was called away. What fractional part of the assignment was left incomplete?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;32.&lt;span style=""&gt;     &lt;/span&gt;Which of the following is larger than 3/5?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(1) &lt;span style=""&gt;     &lt;/span&gt;½&lt;span style=""&gt;       &lt;/span&gt;(2)&lt;span style=""&gt;      &lt;/span&gt;39/50&lt;span style=""&gt;  &lt;/span&gt;(3)&lt;span style=""&gt;      &lt;/span&gt;7/25&lt;span style=""&gt;    &lt;/span&gt;(4)&lt;span style=""&gt;      &lt;/span&gt;3/10&lt;span style=""&gt;    &lt;/span&gt;(5)&lt;span style=""&gt;      &lt;/span&gt;59/100&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;33.&lt;span style=""&gt;     &lt;/span&gt;The number that does not have a reciprocal is ­­­____________.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyTextIndent3"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;34.&lt;span style=""&gt; &lt;/span&gt;There are 3 persons Sudhir, Arvind, and Gauri. Sudhir lent cars to Arvind and Gauri as many as they had already. After some time Arvind gave as many cars to Sudhir and Gauri as many as they have. After sometime Gauri did the same thing. At the end of this transaction each one of them had 24. Find the cars each originally had.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;35.&lt;span style=""&gt;     &lt;/span&gt;A man bought a horse and a cart. If he sold the horse at 10 % loss and the cart at 20 % gain, he would not lose anything; but if he sold the horse at 5% loss and the cart at 5% gain, he would lose Rs. 10 in the bargain. The amount paid by him was Rs.­­­­_______ for the horse and Rs.________ for the cart.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Answers:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.&lt;span style=""&gt;       &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt;&lt;/b&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;30 days.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;            &lt;/span&gt;Explanation:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;i style=""&gt;Before:&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;One day work&lt;span style=""&gt;                    &lt;/span&gt;= &lt;span style=""&gt;       &lt;/span&gt;1 / 20&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;One man’s one day work&lt;span style=""&gt;      &lt;/span&gt;= &lt;span style=""&gt;       &lt;/span&gt;1 / ( 20 * 75)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Now:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;No. Of workers&lt;span style=""&gt;                   &lt;/span&gt;= &lt;span style=""&gt;       &lt;/span&gt;50&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;One day work&lt;span style=""&gt;                    &lt;/span&gt;= &lt;span style=""&gt;       &lt;/span&gt;50 * 1 /&lt;span style=""&gt;  &lt;/span&gt;( 20 * 75)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;The total no. of days required to complete the work = (75 * 20) / 50&lt;span style=""&gt;  &lt;/span&gt;= 30&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2.&lt;span style=""&gt;       &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;0 %&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation:&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Since 3x / 2&lt;span style=""&gt;  &lt;/span&gt;= x / (2 / 3)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3.&lt;span style=""&gt;       &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt;&lt;/b&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5.3 %&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation:&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;He sells 950 grams of pulses and gains 50 grams.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;If he sells 100 grams of pulses then he will gain (50 / 950) *100&lt;span style=""&gt;  &lt;/span&gt;=&lt;span style=""&gt;  &lt;/span&gt;5.26&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4.&lt;span style=""&gt;       &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt;&lt;/b&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;250 lines of codes&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5.&lt;span style=""&gt;       &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;7 days&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;The equation portraying the given problem is:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;&lt;span style=""&gt; &lt;/span&gt;10 *&lt;span style=""&gt;  &lt;/span&gt;x – 2 * (30 – x) =&lt;span style=""&gt;  &lt;/span&gt;216&lt;span style=""&gt;        &lt;/span&gt;where x is the number of working days.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Solving this we get x = 23&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Number of days he was absent was 7 (30-23) days.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;6.&lt;span style=""&gt;       &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;150 men.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;One day’s work &lt;span style=""&gt;                 &lt;/span&gt;=&lt;span style=""&gt;        &lt;/span&gt;2 / (7 * 90)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;One hour’s work&lt;span style=""&gt;                 &lt;/span&gt;=&lt;span style=""&gt;        &lt;/span&gt;2 / (7 * 90 * 8)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;One man’s work&lt;span style=""&gt;                  &lt;/span&gt;=&lt;span style=""&gt;        &lt;/span&gt;2 / (7 * 90 * 8 * 75)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;The remaining work (5/7) has to be completed within 60 days, because the total number of days allotted for the project is 150 days.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;So we get the equation&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;(2 * 10 * x * 60) / (7 * 90 *&lt;span style=""&gt;  &lt;/span&gt;8 * 75)&lt;span style=""&gt;       &lt;/span&gt;=&lt;span style=""&gt;  &lt;/span&gt;5/7&lt;span style=""&gt;  &lt;/span&gt;where x is the number of men working after the 90&lt;sup&gt;th&lt;/sup&gt; day.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;We get x = 225&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Since we have 75 men already, it is enough to add only 150 men.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;7.&lt;span style=""&gt;       &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(c) 1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;a percent of b : (a/100) * b&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;b percent of a : (b/100) * a&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;a percent of b divided by b percent of a : ((a / 100 )*b) /&lt;span style=""&gt;  &lt;/span&gt;(b/100) * a )) = 1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;8.&lt;span style=""&gt;       &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Cost price of horse =&lt;span style=""&gt;  &lt;/span&gt;Rs. 400 &amp;amp; the cost price of cart = 200.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation:-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Let x be the cost price of the horse and y be the cost price of the cart.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;In the first sale there is no loss or profit. (i.e.) The loss obtained is equal to the gain.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Therefore&lt;span style=""&gt;      &lt;/span&gt;(10/100) * x &lt;span style=""&gt; &lt;/span&gt;=&lt;span style=""&gt;  &lt;/span&gt;(20/100) * y&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                                                &lt;/span&gt;X&lt;span style=""&gt;        &lt;/span&gt;=&lt;span style=""&gt;  &lt;/span&gt;2 * y&lt;span style=""&gt;     &lt;/span&gt;-----------------(1)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;In the second sale, he lost Rs. 10. (i.e.) The loss is greater than the profit by Rs. 10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Therefore&lt;span style=""&gt;      &lt;/span&gt;(5 / 100) * x &lt;span style=""&gt; &lt;/span&gt;=&lt;span style=""&gt;  &lt;/span&gt;(5 / 100) * y + 10 -------(2)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Substituting (1) in (2) we get&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                             &lt;/span&gt;(10 / 100) * y &lt;span style=""&gt;         &lt;/span&gt;=&lt;span style=""&gt;  &lt;/span&gt;(5 / 100) * y + 10&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                             &lt;/span&gt;(5 / 100) * y &lt;span style=""&gt; &lt;/span&gt;=&lt;span style=""&gt;  &lt;/span&gt;10&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                             &lt;/span&gt;&lt;b style=""&gt;y = 200&lt;span style=""&gt;          &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;From (1) 2 * 200 = &lt;b style=""&gt;x = 400&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;9.&lt;span style=""&gt;       &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;Explanation:&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Since inclusion of any male player will reject a female from the team. Since there should be four member in the team and only three males are available, the girl, n should included in the team always irrespective of others selection. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;10.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt;&lt;/b&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;11.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1,2,3 &amp;amp; 4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;12.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;B&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;13.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;11 &amp;amp; 9 apples per tree.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;Explanation:&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Let a, b, c, d &amp;amp; e be the total number of apples bored per year in A, B, C, D &amp;amp; E ‘s orchard. Given that &lt;span style=""&gt;   &lt;/span&gt;a + 1 = b + 3 = c – 1 = d + 3 = e – 6&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;But the question is to find the number of apples bored per tree in C and D ‘s orchard. If is enough to consider c – 1 = d + 3.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Since the number of trees in C’s orchard is 11 and that of D’s orchard is 13. Let x and y be the number of apples bored per tree in C &amp;amp; d ‘s orchard respectively.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Therefore 11 x – 1 = 13 y + 3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;By trial and error method, we get the value for x and y as 11 and 9&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;14.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;G.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;Explanation: &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;The order in which they are climbing is R – G – K – H – J&lt;span style=""&gt;     &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;15 – 18&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Answer:&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Novel Name&lt;span style=""&gt;             &lt;/span&gt;Author&lt;span style=""&gt;          &lt;/span&gt;Publisher&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1036" style="'position:absolute;left:0;text-align:left;flip:y;z-index:11'" from="143.1pt,7.5pt" to="179.1pt,21.9pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 10; left: 0px; margin-left: 190px; margin-top: 9px; width: 52px; height: 22px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image004.gif" shapes="_x0000_s1036" height="22" width="52" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1035" style="'position:absolute;left:0;text-align:left;z-index:10'" from="121.5pt,7.5pt" to="179.1pt,21.9pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 9; left: 0px; margin-left: 161px; margin-top: 9px; width: 81px; height: 26px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image005.gif" shapes="_x0000_s1035" height="26" width="81" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1034" style="'position:absolute;left:0;text-align:left;flip:y;z-index:9'" from="207.9pt,7.5pt" to="251.1pt,21.9pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 8; left: 0px; margin-left: 276px; margin-top: 7px; width: 62px; height: 24px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image006.gif" shapes="_x0000_s1034" height="24" width="62" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1030" style="'position:absolute;left:0;text-align:left;z-index:5'" from="215.1pt,7.5pt" to="251.1pt,50.7pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 4; left: 0px; margin-left: 286px; margin-top: 9px; width: 52px; height: 61px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image007.gif" shapes="_x0000_s1030" height="61" width="52" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Spy thriller&lt;span style=""&gt;               &lt;/span&gt;Rathko&lt;span style=""&gt;          &lt;/span&gt;Heron&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1029" style="'position:absolute;left:0;text-align:left;flip:y;z-index:4'" from="222.3pt,7.65pt" to="251.1pt,22.05pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 3; left: 0px; margin-left: 295px; margin-top: 9px; width: 43px; height: 22px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image008.gif" shapes="_x0000_s1029" height="22" width="43" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Murder mystery&lt;span style=""&gt;        &lt;/span&gt;Gorky&lt;span style=""&gt;            &lt;/span&gt;Piegon&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1033" style="'position:absolute;left:0;text-align:left;flip:y;z-index:8'" from="215.1pt,7.8pt" to="251.1pt,22.2pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 7; left: 0px; margin-left: 286px; margin-top: 9px; width: 52px; height: 23px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image009.gif" shapes="_x0000_s1033" height="23" width="52" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1032" style="'position:absolute;left:0;text-align:left;flip:y;z-index:7'" from="135.9pt,7.8pt" to="179.1pt,22.2pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 6; left: 0px; margin-left: 180px; margin-top: 8px; width: 62px; height: 24px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image010.gif" shapes="_x0000_s1032" height="24" width="62" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1031" style="'position:absolute;left:0;text-align:left;z-index:6'" from="143.1pt,7.8pt" to="179.1pt,22.2pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 5; left: 0px; margin-left: 190px; margin-top: 9px; width: 52px; height: 24px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image011.gif" shapes="_x0000_s1031" height="24" width="52" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Gothic romance&lt;span style=""&gt;        &lt;/span&gt;Burchfield&lt;span style=""&gt;      &lt;/span&gt;Blueja&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Science fiction&lt;span style=""&gt;                   &lt;/span&gt;Hopper&lt;span style=""&gt;          &lt;/span&gt;Sparrow&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;Explanation: &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Given&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Novel Name&lt;span style=""&gt;             &lt;/span&gt;Author&lt;span style=""&gt;          &lt;/span&gt;Publisher&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1038" style="'position:absolute;left:0;text-align:left;z-index:13'" from="207.9pt,4.85pt" to="251.1pt,48.05pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 12; left: 0px; margin-left: 276px; margin-top: 5px; width: 62px; height: 61px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image012.gif" shapes="_x0000_s1038" height="61" width="62" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1037" style="'position:absolute;left:0;text-align:left;z-index:12'" from="121.5pt,9.3pt" to="251.1pt,9.3pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 11; left: 0px; margin-left: 161px; margin-top: 6px; width: 177px; height: 14px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image013.gif" shapes="_x0000_s1037" height="14" width="177" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Spy thriller&lt;span style=""&gt;               &lt;/span&gt;Rathko&lt;span style=""&gt;          &lt;/span&gt;Heron&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Murder mystery&lt;span style=""&gt;        &lt;/span&gt;Gorky&lt;span style=""&gt;            &lt;/span&gt;Piegon&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1040" style="'position:absolute;left:0;text-align:left;z-index:15'" from="143.1pt,9.6pt" to="179.1pt,24pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 14; left: 0px; margin-left: 190px; margin-top: 12px; width: 52px; height: 23px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image014.gif" shapes="_x0000_s1040" height="23" width="52" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1039" style="'position:absolute;left:0;text-align:left;flip:y;z-index:14'" from="135.9pt,9.6pt" to="179.1pt,24pt" allowincell="f"&gt;  &lt;v:stroke endarrow="block"&gt; &lt;/v:line&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 13; left: 0px; margin-left: 180px; margin-top: 10px; width: 62px; height: 24px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image015.gif" shapes="_x0000_s1039" height="24" width="62" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Gothic romance&lt;span style=""&gt;        &lt;/span&gt;Burchfield&lt;span style=""&gt;      &lt;/span&gt;Blueja&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Science fiction&lt;span style=""&gt;                   &lt;/span&gt;Hopper&lt;span style=""&gt;          &lt;/span&gt;Sparrow&lt;span style=""&gt;                  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Since Blueja doesn’t publish the novel by Burchfield and Heron publishes the novel spy thriller, Piegon publishes the novel by Burchfield.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Since Hopper writes Gothic romance and Heron publishes the novel spy thriller, Blueja publishes the novel by Hopper.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Since Heron publishes the novel spy thriller and Heron publishes the novel by Gorky, Gorky writes Spy thriller and Rathko writes Murder mystery. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;19.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt;&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;451 times.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;There are 60 minutes in an hour.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;In ¾ of an hour there are (60 * ¾) minutes&lt;span style=""&gt;  &lt;/span&gt;= 45 minutes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;In ¾ of an hour there are (60 * 45) seconds = 2700 seconds.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Light flashed for every 6 seconds.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;In 2700 seconds 2700/6 = 450 times.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;The count start after the first flash, the light will flashes 451 times in ¾ of an hour.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;20.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(4)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation: &lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                                      &lt;/span&gt;P&lt;span style=""&gt;        &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:line id="_x0000_s1041" style="'position:absolute;left:0;text-align:left;z-index:16'" from="85.5pt,.6pt" to="243.9pt,.6pt" allowincell="f"&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: absolute; z-index: 15; left: 0px; margin-left: 113px; margin-top: 0px; width: 214px; height: 3px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image016.gif" shapes="_x0000_s1041" height="3" width="214" /&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;A&lt;span style=""&gt;                                              &lt;/span&gt;B&lt;span style=""&gt;        &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Since p is a point on the line segment AB, AB &gt; AP&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;21.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer: &lt;/i&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;/b&gt;(c)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;22.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt;  &lt;/span&gt;(b) &amp;amp; (d).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                                                                   &lt;/span&gt;Ahmed&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;23 - 27.&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:oval id="_x0000_s1042" style="'position:absolute;left:0;text-align:left;" allowincell="f" filled="f"&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;span style="position: relative; z-index: 16;"&gt;&lt;span style="position: absolute; left: 279px; top: -21px; width: 155px; height: 135px;"&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image017.gif" shapes="_x0000_s1042" height="135" width="155" /&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;b style=""&gt;&lt;span style=""&gt;                                                &lt;/span&gt;&lt;/b&gt;Fakis&lt;span style=""&gt;                                &lt;/span&gt;Chandra&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;28.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;              &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Answer:&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Fakis&lt;span style=""&gt;                                       &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-indent: 0.5in;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation:&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;i style=""&gt;&lt;span style=""&gt;          &lt;/span&gt;Harsha&lt;/i&gt;&lt;span style=""&gt;                             &lt;/span&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;span style=""&gt;       &lt;/span&gt;&lt;i style=""&gt;Geetha&lt;/i&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                                                &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Eswar&lt;span style=""&gt;                               &lt;/span&gt;Balaji&lt;b style=""&gt;&lt;span style=""&gt;    &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                                                                        &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 3in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Dhinesh&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;29.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;              &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Answer:&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(5).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation:&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;            &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Since every alternative letter starting from B of the English alphabet is written in small letter, the letters written in small letter are b, d, f...&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;In the first two answers the letter E is written in both small &amp;amp; capital letters, so they are not the correct answers. But in third and fourth answers the letter is written in small letter instead capital letter, so they are not the answers&lt;b style=""&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;30.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;              &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Answer:&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;x = 4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Since the side of the square is x + 2, its perimeter = 4 (x + 2) = 4x + 8&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Since the side of the equilateral triangle is 2x, its perimeter = 3 * 2x = 6x&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Also, the perimeters of both are equal.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(i.e.)&lt;span style=""&gt;   &lt;/span&gt;4x + 8 = 6x&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(i.e.) &lt;span style=""&gt;  &lt;/span&gt;2x = 8 &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Wingdings;"&gt;&lt;span style=""&gt;è&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; x = 4.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;31.&lt;b style=""&gt; &lt;span style=""&gt;      &lt;/span&gt;&lt;i style=""&gt;Answer:&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;            &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(y – 2) / y.&lt;b style=""&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation:&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;To type a manuscript karthik took y hours.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Therefore his speed in typing&lt;span style=""&gt;  &lt;/span&gt;= 1/y.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;He was called away after 2 hours of typing.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Therefore the work completed = 1/y * 2.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Therefore the remaining work to be completed = 1 – 2/y. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;(i.e.) work to be completed&lt;span style=""&gt;  &lt;/span&gt;= (y-2)/y&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;32.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                        &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(2)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;33.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;              &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Answer:&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;Explanation: &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;One is the only number exists without reciprocal because the reciprocal of one is one itself.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;34.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;              &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Answer:&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;        &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Sudhir had 39 cars, Arvind had 21 cars and Gauri had 12 cars.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;Explanation: &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                                                &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Sudhir&lt;span style=""&gt;           &lt;/span&gt;&lt;span style=""&gt;        &lt;/span&gt;Arvind&lt;span style=""&gt;             &lt;/span&gt;&lt;span style=""&gt;        &lt;/span&gt;Gauri&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Finally&lt;span style=""&gt;                              &lt;/span&gt;24&lt;span style=""&gt;                          &lt;/span&gt;24&lt;span style=""&gt;                          &lt;/span&gt;24&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Before Gauri’s transaction&lt;span style=""&gt;     &lt;/span&gt;12&lt;span style=""&gt;                         &lt;/span&gt;12&lt;span style=""&gt;                          &lt;/span&gt;48&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Before Arvind’s transaction&lt;span style=""&gt;   &lt;/span&gt; 6&lt;span style=""&gt;                          &lt;/span&gt;42&lt;span style=""&gt;                          &lt;/span&gt;24&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Before Sudhir’ s transaction &lt;span style=""&gt; &lt;/span&gt;39&lt;span style=""&gt;                          &lt;/span&gt;21&lt;span style=""&gt;                          &lt;/span&gt;12&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;35.&lt;span style=""&gt;     &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer:&lt;/i&gt; &lt;span style=""&gt;         &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Cost price of horse:&lt;span style=""&gt;  &lt;/span&gt;Rs. 400 &amp;amp; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Cost price of cart:&lt;span style=""&gt;    &lt;/span&gt;Rs. 200&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;Explanation: &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                        &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Let x be the cost of horse &amp;amp; y be the cost of the cart.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;10 % of loss in selling horse = 20 % of gain in selling the cart&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                             &lt;/span&gt;Therefore&lt;span style=""&gt;      &lt;/span&gt;(10 / 100) * x = (20 * 100) * y&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 2.5in; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Wingdings;"&gt;è&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                 &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;x = 2y -----------(1)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5 % of loss in selling the horse is 10 more than the 5 % gain in selling the cart.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Therefore &lt;span style=""&gt;     &lt;/span&gt;(5 / 100) * x - 10 = (5 / 100) * y&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Wingdings;"&gt;&lt;span style=""&gt;è&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;       &lt;/span&gt;5x - 1000&lt;span style=""&gt;      &lt;/span&gt;= &lt;span style=""&gt;       &lt;/span&gt;5y&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Substituting (1)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                             &lt;/span&gt;10y - 1000 = 5y&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                             &lt;/span&gt;5y = 1000&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                             &lt;/span&gt;y = 200&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                             &lt;/span&gt;x = 400&lt;b style=""&gt; &lt;/b&gt;&lt;span style=""&gt;        &lt;/span&gt;from (1)&lt;span style=""&gt;        &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Exercise 2.1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;For the following, find the next term in the series &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.&lt;span style=""&gt;  &lt;/span&gt;6, 24, 60,120, 210&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;a) 336&lt;span style=""&gt;        &lt;/span&gt;b) 366&lt;span style=""&gt;           &lt;/span&gt;c) 330&lt;span style=""&gt;           &lt;/span&gt;d) 660&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : a) 336&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : The series is 1.2.3, 2.3.4, 3.4.5, 4.5.6, 5.6.7, .....&lt;span style=""&gt;    &lt;/span&gt;&lt;span style=""&gt;      &lt;/span&gt;( '.' means product)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2.&lt;span style=""&gt;  &lt;/span&gt;1, 5, 13, 25&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;  &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 41&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;  &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : The series is of the form&lt;span style=""&gt;   &lt;/span&gt;0^2+1^2, 1^2+2^2,...&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3. 0, 5, 8, 17&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 24&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : 1^2-1, 2^2+1, 3^2-1, 4^2+1, 5^2-1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4. 1, 8, 9, 64, 25&lt;span style=""&gt;    &lt;/span&gt;(Hint : Every successive terms are related)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 216&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : 1^2, 2^3, 3^2, 4^3, 5^2, 6^3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5. 8,24,12,36,18,54&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 27&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;6. 71,76,69,74,67,72&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 67&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;7. 5,9,16,29,54&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 103&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : 5*2-1=9; 9*2-2=16; 16*2-3=29; 29*2-4=54; 54*2-5=103&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;8. 1,2,4,10,16,40,64 (Successive terms are related)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 200&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : The series is powers of 2 (2^0,2^1,..).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;All digits are less than 8.&lt;span style=""&gt;  &lt;/span&gt;Every second number is in octal number system. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;128 should follow 64. 128 base 10 = 200 base 8.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Exercise 2.2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Find the odd man out.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1. 3,5,7,12,13,17,19&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;    &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 12 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;    &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : All but 12 are odd numbers&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2. 2,5,10,17,26,37,50,64&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 64&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : 2+3=5; 5+5=10; 10+7=17; 17+9=26; 26+11=37; 37+13=50; 50+15=65;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3. 105,85,60,30,0,-45,-90&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;    &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;    &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : 105-20=85; 85-25=60; 60-30=30; 30-35=-5; -5-40=-45; -45-45=-90;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Exercise 3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Solve the following.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1. What is the number of zeros at the end of the product of the numbers from 1 to 100?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 127&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2. A fast typist can type some matter in 2 hours and a slow typist can type the same in 3 hours. If both type combinely, in how much time will they finish?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 1 hr 12 min&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation :&lt;/i&gt;&lt;/b&gt;&lt;span style=""&gt;    &lt;/span&gt;The fast typist's work done in 1 hr = 1/2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;&lt;span style=""&gt;    &lt;/span&gt;&lt;span style=""&gt;       &lt;/span&gt;The slow typist's work done in 1 hr = 1/3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;&lt;span style=""&gt;           &lt;/span&gt;If they work combinely, work done in 1 hr = 1/2+1/3 = 5/6&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;So, the work will be completed in 6/5 hours. i.e., 1+1/5 hours = 1hr 12 min&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3. Gavaskar's average in his first 50 innings was 50. After the 51st innings, his average was 51. How many runs did he score in his 51st innings. (supposing that he lost his wicket in his 51st innings)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 101&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; :&lt;span style=""&gt;          &lt;/span&gt;Total score after 50 innings = 50*50 = 2500&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Total score after 51 innings = 51*51 = 2601&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;span style=""&gt;                  &lt;/span&gt;So, runs made in the 51st innings = 2601-2500 = 101&lt;span style=""&gt;      &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;If he had not lost his wicket in his 51st innings, he would have scored an unbeaten 50 in his 51st innings.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4. Out of 80 coins, one is counterfeit. What is the minimum number of weighings needed to find out the counterfeit coin?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5. What can you conclude from the statement : All green are blue, all blue are red. ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 51pt; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(i)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                 &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;some blue are green&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 51pt; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(ii)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;some red are green &lt;span style=""&gt;        &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 51pt; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(iii)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;              &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;some green are not red&lt;span style=""&gt;   &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 51pt; text-align: justify; text-indent: -0.5in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(iv)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;             &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;all red are blue&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 55.5pt; text-align: justify; text-indent: -19.5pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;   &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;i or ii but not both &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 55.5pt; text-align: justify; text-indent: -19.5pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(b)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;   &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;i &amp;amp; ii only&lt;span style=""&gt;  &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 55.5pt; text-align: justify; text-indent: -19.5pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(c)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;   &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;iii or iv but not both&lt;span style=""&gt;       &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 55.5pt; text-align: justify; text-indent: -19.5pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(d)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;   &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;iii &amp;amp; iv&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;6. A rectangular plate with length 8 inches, breadth 11 inches and thickness 2 inches is available. What is the length of the circular rod with diameter 8 inches and equal to the volume of the rectangular plate?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 3.5 inches&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : Volume of the circular rod (cylinder) = Volume of the rectangular plate&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;(22/7)*4*4*h = 8*11*2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;h = 7/2 = 3.5&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;7. What is the sum of all numbers between 100 and 1000 which are divisible by 14 ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 35392&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : The number closest to 100 which is greater than 100 and divisible by 14&lt;span style=""&gt;  &lt;/span&gt;is 112, which is the first term of the series which has to be summed.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;span style=""&gt;          &lt;/span&gt;The number closest to 1000 which is less than 1000 and divisible by 14 is 994, which is the last term of the series.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;112 + 126 + .... + 994 = 14(8+9+ ... + 71) = 35392&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;8. If s(a) denotes square root of a, find the value of s(12+s(12+s(12+ ......&lt;span style=""&gt;     &lt;/span&gt;upto infinity.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : Let x = s(12+s(12+s(12+.....&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;We can write&lt;span style=""&gt;  &lt;/span&gt;x = s(12+x). i.e., x^2 = 12 + x. Solving this quadratic equation, we get x = -3 or x=4. Sum cannot be -ve and hence sum = 4.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;9. A cylindrical container has a radius of eight inches with a height of three inches. Compute how many inches should be added to either the radius or height to give the same increase in volume?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 16/3 inches&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : Let x be the amount of increase. The volume will increase by the same amount if the radius increased or the height is increased.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;So, the effect on increasing height is equal to the effect on increasing the radius.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;i.e., (22/7)*8*8*(3+x) = (22/7)*(8+x)*(8+x)*3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;Solving the quadratic equation we get the x = 0 or 16/3. The possible increase would be by 16/3 inches.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;10. With just six weights and a balance scale, you can weigh any unit number of kgs from 1 to 364. What could be the six weights?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 1, 3, 9, 27, 81, 243 (All powers of 3)&lt;span style=""&gt;    &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;11. Diophantus passed one sixth of his life in childhood, one twelfth in youth, and one seventh more as a bachelor; five years after his marriage a son was born who died four years before his father at half his final age. How old is Diophantus?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 84 years&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : x/6 + x/12 + x/7 + 5 + x/2 + 4 = x&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;12 . If time at this moment is 9 P.M., what will be the time 23999999992 hours later?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 1 P.M.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : 24 billion hours later, it would be 9 P.M. and 8 hours before that it would be 1 P.M.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;13. How big will an angle of one and a half degree look through a glass that magnifies things three times?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 1 1/2 degrees&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : The magnifying glass cannot increase the magnitude of an angle.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;14. Divide 45 into four parts such that when 2 is added to the first part, 2 is subtracted from the second part, 2 is multiplied by the third part and the fourth part is divided by two, all result in the same number.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt;: 8, 12, 5, 20&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt;: a + b + c + d =45;&lt;span style=""&gt;    &lt;/span&gt;a+2 = b-2 = 2c = d/2; &lt;span style=""&gt;        &lt;/span&gt;a=b-4; c = (b-2)/2; d = 2(b-2);&lt;span style=""&gt;     &lt;/span&gt;b-4 + b + (b-2)/2 + 2(b-2) = 45;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;15. I drove 60 km at 30 kmph and then an additional 60 km at 50 kmph. Compute my average speed over my 120 km.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : 37 1/2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : Time reqd for the first 60 km = 120 min.; Time reqd for the second 60 km = 72 min.; Total time reqd = 192 min&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;Avg speed = (60*120)/192 = 37 1/2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Questions 16 and 17 are based on the following :&lt;/span&gt;&lt;/i&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;    &lt;/span&gt;Five executives of European Corporation hold a Conference in Rome&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;Mr. A converses in Spanish &amp;amp; Italian&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;Mr. B, a spaniard, knows English also&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;Mr. C knows English and belongs to Italy&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;Mr. D converses in French and Spanish&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;Mr. E , a native of Italy knows French&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;16.&lt;span style=""&gt;   &lt;/span&gt;Which of the following can act as interpreter if Mr. C &amp;amp; Mr. D wish to converse&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;span style=""&gt;       &lt;/span&gt;a) only Mr. A&lt;span style=""&gt;  &lt;/span&gt;b) Only Mr. B&lt;span style=""&gt;  &lt;/span&gt;c) Mr. A &amp;amp; Mr. B&lt;span style=""&gt;       &lt;/span&gt;d) Any of the other three&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; : d) Any of the other three.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; :&lt;span style=""&gt;  &lt;/span&gt;From the data given, we can infer the following.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;A knows Spanish, Italian&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;B&lt;span style=""&gt;  &lt;/span&gt;knows Spanish, English&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;C&lt;span style=""&gt;  &lt;/span&gt;knows Italian, English&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;D&lt;span style=""&gt;  &lt;/span&gt;knows Spanish, French&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                   &lt;/span&gt;E&lt;span style=""&gt;   &lt;/span&gt;knows Italian, French&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;To act as an interpreter between C and D, a person has to know one of the combinations Italian&amp;amp;Spanish, Italian&amp;amp;French, English&amp;amp;Spanish,&lt;span style=""&gt;  &lt;/span&gt;English&amp;amp;French&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A, B, and E know atleast one of the combinations.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;17. If a 6th executive is brought in, to be understood by maximum number of original five he should be fluent in&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;a) English &amp;amp; French&lt;span style=""&gt;   &lt;/span&gt;b) Italian &amp;amp; Spanish&lt;span style=""&gt;   &lt;/span&gt;c) English &amp;amp; French&lt;span style=""&gt;   &lt;/span&gt;d) French &amp;amp; Italian&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Answer&lt;/i&gt;&lt;/b&gt; :&lt;span style=""&gt;  &lt;/span&gt;b) Italian &amp;amp; Spanish&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;b style=""&gt;&lt;i style=""&gt;Explanation&lt;/i&gt;&lt;/b&gt; : No of executives who know&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                             &lt;/span&gt;i) English is 2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;span style=""&gt;                &lt;/span&gt;ii) Spanish is 3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;   &lt;/span&gt;&lt;span style=""&gt;                         &lt;/span&gt;iii) Italian is 3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;                            &lt;/span&gt;iv) French is&lt;span style=""&gt;  &lt;/span&gt;2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Italian &amp;amp; Spanish are spoken by the maximum no of executives. So, if the 6th executive is fluent in Italian &amp;amp; Spanish, he can communicate with all the original five because everybody knows either Spanish or Italian.&lt;span style=""&gt;   &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="18" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;What is the sum of the first 25 natural odd      numbers?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Answer&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; : 625&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify; text-indent: 0.5in;"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Explanation&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; : The sum of the first n natural odd nos is square(n). &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1+3 = 4 = square(2) 1+3+5 = 9 = square(3)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="19" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;The sum of any seven consecutive numbers is      divisible by&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify; text-indent: -0.25in;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;a)&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2&lt;span style=""&gt;  &lt;/span&gt;b) 7&lt;span style=""&gt;  &lt;/span&gt;c) 3&lt;span style=""&gt;  &lt;/span&gt;d) 11&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Exercise 3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b style=""&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Try the following.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="1" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;There are seventy clerks working in a company,      of which 30 are females. Also, 30 clerks are&lt;span style=""&gt;   &lt;/span&gt;married; 24 clerks are above 25 years of age; 19 married      clerks are above 25 years, of which 7 are males; 12 males are above 25      years of age; and 15 males are married. How many bachelor girls are there      and how many of these are above 25?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="2" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A man sailed off from the North Pole. After      covering 2,000 miles in one direction he turned West, sailed 2,000 miles,      turned North and sailed ahead another 2,000 miles till he met his friend.      How far was he from the North Pole and in what direction?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="3" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Here is a series of comments on the ages of      three persons J, R, S by themselves.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;S : The difference between R's age and mine is three years.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;J : R is the youngest.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;R : Either I am 24 years old or J 25 or S 26.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;J : All are above 24 years of age.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;S : I am the eldest if and only if R is not the youngest.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;R : S is elder to me.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;J : I am the eldest.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;R : S is not 27 years old.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;      &lt;/span&gt;S : The sum of my age and J's is two more than twice R's age.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;One of the three had been telling a lie throughout whereas others had spoken the truth. Determine the ages of S,J,R.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="4" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;In a group of five people, what is the      probability of finding two persons with the same month of birth?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="5" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A father and his son go out for a      'walk-and-run' every morning around a track formed by an equilateral      triangle. The father's walking speed is 2 mph and his running speed is 5      mph. The son's walking and running speeds are twice that of his father.      Both start together from one apex of the triangle, the son going clockwise      and the father anti-clockwise. Initially the father runs and the son walks      for a certain period of time.&lt;span style=""&gt;         &lt;/span&gt;Thereafter, as soon as the father starts walking, the son starts      running. Both complete the course in 45 minutes. For how long does the      father run? Where do the two cross each other?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="6" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;The Director of Medical Services was on his      annual visit to the ENT Hospital. While going through the out patients'      records he came across the following data for a particular day :&lt;span style=""&gt;  &lt;/span&gt;" Ear consultations 45; Nose 50;      Throat 70; Ear and Nose 30; Nose and Throat 20; Ear and Throat 30; Ear,      Nose and Throat 10; Total patients 100." Then he came to the      conclusion that the records were bogus. Was he right?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="7" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Amongst Ram, Sham and Gobind are a doctor, a      lawyer and a police officer. They are married to Radha, Gita and Sita (not      in order). Each of the wives have a profession. Gobind's wife is an      artist. Ram is not married to Gita. The lawyer's wife is a teacher. Radha      is married to the police officer. Sita is an expert cook. Who's who?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="8" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;What should come next?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1, 2, 4, 10, 16, 40, 64, &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;i style=""&gt;Questions 9-12 are based on the following :&lt;/i&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Three adults – Roberto, Sarah and Vicky – will be traveling in a van with five children – Freddy, Hillary, Jonathan, Lupe, and Marta. The van has a driver’s seat and one passenger seat in the front, and two benches behind the front seats, one beach behind the other. Each bench has room for exactly three people. Everyone must sit in a seat or on a bench, and seating is subject to the following restrictions: &lt;span style=""&gt;          &lt;/span&gt;&lt;span style=""&gt;    &lt;/span&gt;An adult must sit on each bench.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;    &lt;/span&gt;Either Roberto or Sarah must sit in the driver’s seat.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: 0.5in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt;    &lt;/span&gt;Jonathan must sit immediately beside Marta.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="9" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Of the following, who can sit in the front      passenger seat ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) Jonathan&lt;span style=""&gt;  &lt;/span&gt;(b) Lupe&lt;span style=""&gt;        &lt;/span&gt;(c) Roberto&lt;span style=""&gt;    &lt;/span&gt;(d) Sarah&lt;span style=""&gt;       &lt;/span&gt;(e) Vicky&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.25in;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;10.&lt;span style=""&gt;  &lt;/span&gt;Which of the following groups of three can sit together on a bench? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) Freddy, Jonathan and Marta&lt;span style=""&gt;      &lt;/span&gt;(b) Freddy, Jonathan and Vicky&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(c) Freddy, Sarah and Vicky&lt;span style=""&gt;           &lt;/span&gt;(d) Hillary, Lupe and Sarah&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(e) Lupe, Marta and Roberto&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="11" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;If Freddy sits immediately beside Vicky, which      of the following cannot be true ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;ol style="margin-top: 0in;" start="1" type="a"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Jonathan sits immediately beside Sarah&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Lupe sits immediately beside Vicky&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Hillary sits in the front passenger seat&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Freddy sits on the same bench as Hillary&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Hillary sits on the same bench as Roberto&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="12" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;If Sarah sits on a bench that is behind where      Jonathan is sitting, which of the following must be true ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;ol style="margin-top: 0in;" start="1" type="a"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Hillary sits in a seat or on a bench that is       in front of where Marta is sitting&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Lupe sits in a seat or on a bench that is in       front of where Freddy is sitting&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Freddy sits on the same bench as Hillary&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Lupe sits on the same bench as Sarah&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Marta sits on the same bench as Vicky&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="13" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Make six squares of the same size using twelve      match-sticks. (Hint : You will need an adhesive to arrange the required      figure)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="14" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A farmer has two rectangular fields. The      larger field has twice the length and 4 times the width of the smaller      field. If the smaller field has area K, then the are of the larger field      is greater than the area of the smaller field by what amount?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 6K&lt;span style=""&gt; &lt;/span&gt;(b) 8K&lt;span style=""&gt; &lt;/span&gt;(c) 12K&lt;span style=""&gt;         &lt;/span&gt;(d) 7K&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.5in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="15" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Nine equal circles are enclosed in a square      whose area is 36sq units. Find the area of each circle.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="16" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;There are 9 cards. Arrange them in a 3*3      matrix. Cards are of 4 colors. They are red, yellow, blue, green.      Conditions for arrangement: one red card must be in first row or second      row. 2 green cards should be in 3&lt;sup&gt;rd&lt;/sup&gt; column. Yellow cards must      be in the 3 corners only. Two blue cards must be in the 2nd row. At least      one green card in each row. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="17" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Is z less than w? z and w are real numbers.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(I) z&lt;sup&gt;2&lt;/sup&gt; = 25 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 1in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(II) w = 9&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;To answer the question,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;a) Either I or II is sufficient&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;b) Both I and II are sufficient but neither of them is alone sufficient&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;c) I &amp;amp; II are sufficient&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.75in; text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;d) Both are not sufficient&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="18" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A speaks truth 70% of the time; B speaks truth      80% of the time. What is the probability that both are contradicting each      other?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="19" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;In a family 7 children don't eat spinach, 6      don't eat carrot, 5 don't eat beans, 4 don't eat spinach &amp;amp; carrots, 3      don't eat carrot &amp;amp; beans, 2 don't eat beans &amp;amp; spinach. One doesn't      eat all 3. Find the no. of children.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0in;" start="20" type="1"&gt;&lt;li class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Anna, Bena, Catherina and Diana are at their      monthly business meeting. Their occupations are author, biologist, chemist      and doctor, but not necessarily in that order. Diana just told the      neighbour, who is a biologist that Catherina was on her way with      doughnuts. Anna is sitting across from the doctor and next to the chemist.      The doctor was thinking that Bena was a good name for parent's to choose,      but didn't say anything.&lt;span style=""&gt;  &lt;/span&gt;What is      each person's occupation?&lt;/p&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt; &lt;/span&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-8775814473385855585?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/8775814473385855585/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=8775814473385855585' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/8775814473385855585'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/8775814473385855585'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/aptitude-questions-iii.html' title='Aptitude Questions III'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-3900217776789422933</id><published>2007-10-05T00:56:00.000-07:00</published><updated>2007-10-05T00:57:52.938-07:00</updated><title type='text'>Aptitude Questions II</title><content type='html'>&lt;p align="justify"&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;1.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;If 2x-y=4 then 6x-3y=?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;(a)15&lt;br /&gt;(b)12&lt;br /&gt;(c)18&lt;br /&gt;(d)10&lt;span style="color: maroon;"&gt;&lt;br /&gt;&lt;br /&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;2.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;If x=y=2z and xyz=256 then what is the value of x?&lt;br /&gt;&lt;br /&gt;(a)12&lt;br /&gt;(b)8&lt;br /&gt;(c)16&lt;br /&gt;(d)6&lt;br /&gt;&lt;span style="color: maroon;"&gt;&lt;br /&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;3. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;(1/10)&lt;sup&gt;18&lt;/sup&gt; - (1/10)&lt;sup&gt;20 &lt;/sup&gt;= ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;(a) 99/10&lt;sup&gt;20&lt;br /&gt;&lt;/sup&gt;(b) 99/10&lt;br /&gt;(c) 0.9&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. (a)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;4.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;Pipe A can fill in 20 minutes and Pipe B in 30 mins and Pipe C can empty the same in 40 mins.If all of them work together, find the time taken to fill the tank&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;(a) 17 1/7 mins&lt;br /&gt;(b) 20 mins&lt;br /&gt;(c) 8 mins&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. (a)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;5. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;Thirty men take 20 days to complete a job working 9 hours a day.How many hour a day should 40 men work to complete the job?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;(a) 8 hrs&lt;br /&gt;(b) 7 1/2 hrs&lt;br /&gt;(c) 7 hrs&lt;br /&gt;(d) 9 hrs&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;6. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;Find the smallest number in a GP whose sum is 38 and product 1728&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;(a) 12&lt;br /&gt;(b) 20&lt;br /&gt;(c) 8&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. (c)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;7. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;A boat travels 20 kms upstream in 6 hrs and 18 kms downstream in 4 hrs.Find the speed of the boat in still water and the speed of the water current?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;(a) 1/2 kmph&lt;br /&gt;(b) 7/12 kmph&lt;br /&gt;(c) 5 kmph&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;8. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;A goat is tied to one corner of a square plot of side 12m by a rope 7m long.Find the area it can graze?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;(a) 38.5 sq.m&lt;br /&gt;(b) 155 sq.m&lt;br /&gt;(c) 144 sq.m&lt;br /&gt;(d) 19.25 sq.m&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. (a)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;9.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; Mr. Shah decided to walk down the escalator of a tube station. He found   that if he walks down 26 steps, he requires 30 seconds to reach the bottom. However, if he steps down 34 stairs he would only require 18 seconds to get to the bottom. If the time is measured from the moment the top step begins   to descend to the time he steps off the last step at the bottom, find out the height of the stair way in steps?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans.46 steps.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;10. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;The average age of 10 members of a committee is the same as it was 4 years ago, because an old member has been replaced by a young member. Find how much younger is the new member ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans.40 years.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;11. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;Three containers A, B and C have volumes a, b, and c respectively; and container A is full of water while the other two are empty. If from container A water is poured into container B which becomes 1/3 full, and into container C which becomes 1/2 full, how much water is left in container A?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt;"&gt;12. ABCE is an isosceles trapezoid and ACDE is a rectangle. AB = 10 and EC = 20. What is the length of AE?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. AE = 10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;13.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; In the given figure, PA and PB are tangents to the circle at A and B respectively and   the chord BC is parallel to tangent PA. If AC = 6 cm, and length of the tangent AP   is 9 cm, then what is the length of the chord BC?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. BC = 4 cm.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;15&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; Three cards are drawn at random from an ordinary pack of cards. Find the probability that they will consist of a king, a queen and an ace.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 64/2210.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;16.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; A number of cats got together and decided to kill between them 999919   mice. Every cat killed an equal number of mice. Each cat killed more mice   than there were cats. How many cats do you think there were ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 991.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;17.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; If Log2 x - 5 Log x + 6 = 0, then what would the value / values of x be? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. x = e2 or e3.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;18.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; The square of a two digit number is divided by half the number. After   36 is added to the quotient, this sum is then divided by 2. The digits of the resulting number are the same as those in the original number, but they   are in reverse order. The ten's place of the original number is equal to twice   the difference between its digits. What is the number?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 46&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;19.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;Can you tender a one rupee note in such a manner that there shall be   total 50 coins but none of them would be 2 paise coins.?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 45 one paisa coins, 2 five paise coins, 2 ten paise coins, and 1 twenty-five paise coins.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;20.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;A monkey starts climbing up a tree 20ft. tall. Each hour, it hops 3ft. and slips back 2ft. How much time would it take the monkey to reach the top?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans.18 hours.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;21.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; What is the missing number in this series?   8 2 14 6 11 ? 14 6 18 12&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 9&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;22. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;A certain type of mixture is prepared by mixing brand A at Rs.9 a kg. with brand B at Rs.4 a kg. If the mixture is worth Rs.7 a kg., how many   kgs. of brand A are needed to make 40kgs. of the mixture?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. Brand A needed is 24kgs.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;23. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;A wizard named Nepo says "I am only three times my son's age. My father   is 40 years more than twice my age. Together the three of us are a mere 1240   years old." How old is Nepo?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 360 years old.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;24. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;One dog tells the other that there are two dogs in front of me. The other one also shouts that he too had two behind him. How many are they?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. Three.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;25.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; A man ate 100 bananas in five days, each day eating 6 more than the previous day. How many bananas did he eat on the first day?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. Eight.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;26. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;If it takes five minutes to boil one egg, how long will it take to boil four eggs? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. Five minutes. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;27.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; The minute hand of a clock overtakes the hour hand at intervals of 64   minutes of correct time. How much a day does the clock gain or lose?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 32 8/11 minutes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;28.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; Solve for x and y:   1/x - 1/y = 1/3, 1/x2 + 1/y2 = 5/9.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. x = 3/2 or -3 and y = 3 or -3/2.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;29.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; Daal is now being sold at Rs. 20 a kg. During last month its rate was Rs. 16 per kg. By how much percent should a family reduce its consumption so   as to keep the expenditure fixed? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 20 %.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;30.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; Find the least value of 3x + 4y if x2y3 = 6. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;31.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; Can you find out what day of the week was January 12, 1979?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. Friday.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;32.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; A garrison of 3300 men has provisions for 32 days, when given at a rate of 850 grams per head. At the end of 7 days a reinforcement arrives and it was found that now the provisions will last 8 days less, when given at the rate of 825 grams per head. How, many more men can it feed?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 1700 men.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;33.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; From 5 different green balls, four different blue balls and three   different red balls, how many combinations of balls can be chosen taking at least   one green and one blue ball?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 3720.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;34.&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt; Three pipes, A, B, &amp;amp; C are attached to a tank. A &amp;amp; B can fill it in 20   &amp;amp; 30 minutes respectively while C can empty it in 15 minutes. If A, B &amp;amp; C   are kept open successively for 1 minute each, how soon will the tank be filled?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;Ans. 167 minutes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; color: maroon;"&gt;35. &lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;A person walking 5/6 of his usual rate is 40 minutes late. What is his usual time? &lt;span style="color: maroon;"&gt;Ans. 3 hours 20 minutes.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;36.For a motorist there are three ways going from City A to City C. By way of bridge the distance is 20 miles and toll is $0.75. A tunnel between the two cities is a distance of 10 miles and toll is $1.00 for the vehicle and driver and $0.10 for each passenger. A two-lane highway without toll goes east for 30 miles to city B and then 20 miles in a northwest direction to City C.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Which is the shortest route from B to C&lt;br /&gt;&lt;br /&gt;(a) Directly on toll free highway to City C&lt;br /&gt;(b) The bridge&lt;br /&gt;(c) The Tunnel&lt;br /&gt;(d) The bridge or the tunnel&lt;br /&gt;(e) The bridge only if traffic is heavy on the toll free highway&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. The most economical way of going from City A to City B, in terms of toll and distance is to use the&lt;br /&gt;&lt;br /&gt;(a) tunnel&lt;br /&gt;(b) bridge&lt;br /&gt;(c) bridge or tunnel&lt;br /&gt;(d) toll free highway&lt;br /&gt;(e) bridge and highway&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3. Jim usually drives alone from City C to City A every working day. His firm deducts a percentage of employee pay for lateness. Which factor would most influence his choice of the bridge or the tunnel ?&lt;br /&gt;&lt;br /&gt;(a) Whether his wife goes with him&lt;br /&gt;(b) scenic beauty on the route&lt;br /&gt;(c) Traffic conditions on the road, bridge and tunnel&lt;br /&gt;(d) saving $0.25 in tolls&lt;br /&gt;(e) price of gasoline consumed in covering additional 10 miles on the bridge&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;4. In choosing between the use of the bridge and the tunnel the chief factor(s) would be:&lt;br /&gt;I. Traffic and road conditions&lt;br /&gt;II. Number of passengers in the car&lt;br /&gt;III. Location of one's homes in the center or outskirts of one of the cities&lt;br /&gt;IV. Desire to save $0.25&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) II only&lt;br /&gt;(c) II and III only&lt;br /&gt;(d) III and IV only&lt;br /&gt;(e) I and II only&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;37.The letters A, B, C, D, E, F and G, not necessarily in that order, stand for seven consecutive integers from 1 to 10&lt;br /&gt;D is 3 less than A&lt;br /&gt;B is the middle term&lt;br /&gt;F is as much less than B as C is greater than D&lt;br /&gt;G is greater than F&lt;br /&gt;&lt;br /&gt;1. The fifth integer is&lt;br /&gt;(a) A&lt;br /&gt;(b) C&lt;br /&gt;(c) D&lt;br /&gt;(d) E&lt;br /&gt;(e) F&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. A is as much greater than F as which integer is less than G&lt;br /&gt;(a) A&lt;br /&gt;(b) B&lt;br /&gt;(c) C&lt;br /&gt;(d) D&lt;br /&gt;(e) E&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3. If A = 7, the sum of E and G is&lt;br /&gt;(a) 8&lt;br /&gt;(b) 10&lt;br /&gt;(c) 12&lt;br /&gt;(d) 14&lt;br /&gt;(e) 16&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;4. A - F = ?&lt;br /&gt;(a) 1&lt;br /&gt;(b) 2&lt;br /&gt;(c) 3&lt;br /&gt;(d) 4&lt;br /&gt;(e) Cannot be determined&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;5. An integer T is as much greater than C as C is greater than E. T can be written as A + E. What is D?&lt;br /&gt;(a) 2&lt;br /&gt;(b) 3&lt;br /&gt;(c) 4&lt;br /&gt;(d) 5&lt;br /&gt;(e) Cannot be determined&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;6. The greatest possible value of C is how much greater than the smallest possible value of D?&lt;br /&gt;(a) 2&lt;br /&gt;(b) 3&lt;br /&gt;(c) 4&lt;br /&gt;(d) 5&lt;br /&gt;(e) 6&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;38.&lt;br /&gt;1. All G's are H's&lt;br /&gt;2. All G's are J's or K's&lt;br /&gt;3. All J's and K's are G's&lt;br /&gt;4. All L's are K's&lt;br /&gt;5. All N's are M's&lt;br /&gt;6. No M's are G's&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. If no P's are K's, which of the following must be true?&lt;br /&gt;&lt;br /&gt;(a) All P's are J's&lt;br /&gt;(b) No P is a G&lt;br /&gt;(c) No P is an H&lt;br /&gt;(d) If any P is an H it is a G&lt;br /&gt;(e) If any P is a G it is a J&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. Which of the following can be logically deduced from the conditions stated?&lt;br /&gt;&lt;br /&gt;(a) No M's are H's&lt;br /&gt;(b) No M's that are not N's are H's&lt;br /&gt;(c) No H's are M's&lt;br /&gt;(d) Some M's are H's&lt;br /&gt;(e) All M's are H's&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3. Which of the following is inconsistent with one or more of the conditions?&lt;br /&gt;&lt;br /&gt;(a) All H's are G's&lt;br /&gt;(b) All H's that are not G's are M's&lt;br /&gt;(c) Some H's are both M's and G's&lt;br /&gt;(d) No M's are H's&lt;br /&gt;(e) All M's are H's&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;4. The statement "No L's are J's" is&lt;br /&gt;I. Logically deducible from the conditions stated&lt;br /&gt;II. Consistent with but not deducible from the conditions stated&lt;br /&gt;III. Deducible from the stated conditions together with the additional statement "No J's are K's"&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) II only&lt;br /&gt;(c) III only&lt;br /&gt;(d) II and III only&lt;br /&gt;(e) Neither I, II nor III&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;39.In country X, democratic, conservative and justice parties have fought three civil wars in twenty years. TO restore stability an agreement is reached to rotate the top offices President, Prime Minister and Army Chief among the parties so that each party controls one and only one office at all times. The three top office holders must each have two deputies, one from each of the other parties. Each deputy must choose a staff composed of equally members of his or her chiefs party and member of the third party.&lt;br /&gt;&lt;br /&gt;1. When Justice party holds one of the top offices, which of the following cannot be true&lt;br /&gt;&lt;br /&gt;(a) Some of the staff members within that office are justice party members&lt;br /&gt;(b) Some of the staff members within that office are democratic party members&lt;br /&gt;(c) Two of the deputies within the other offices are justice party members&lt;br /&gt;(d) Two of the deputies within the other offices are conservative party members&lt;br /&gt;(e) Some of the staff members within the other offices are justice party members.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. When the democratic party holds presidency, the staff of the prime minister's deputies are composed&lt;br /&gt;I. One-fourth of democratic party members&lt;br /&gt;II. One-half of justice party members and one-fourth of conservative party members&lt;br /&gt;III. One-half of conservative party members and one-fourth of justice party members.&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) I and II only&lt;br /&gt;(c) II or III but not both&lt;br /&gt;(d) I and II or I and III&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3. Which of the following is allowable under the rules as stated:&lt;br /&gt;&lt;br /&gt;(a) More than half of the staff within a given office belonging to a single party&lt;br /&gt;(b) Half of the staff within a given office belonging to a single party&lt;br /&gt;(c) Any person having a member of the same party as his or her immediate superior&lt;br /&gt;(d) Half the total number of staff members in all three offices belonging to a single party&lt;br /&gt;(e) Half the staff members in a given office belonging to parties different from the party of the top office holder in that office.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;4. The office of the Army Chief passes from Conservative to Justice party. Which of the following must be fired.&lt;br /&gt;&lt;br /&gt;(a) The democratic deputy and all staff members belonging to Justice party&lt;br /&gt;(b) Justice party deputy and all his or hers staff members&lt;br /&gt;(c) Justice party deputy and half of his Conservative staff members in the chief of staff office&lt;br /&gt;(d) The Conservative deputy and all of his or her staff members belonging to Conservative party&lt;br /&gt;(e) No deputies and all staff members belonging to conservative parties.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;40.In recommendations to the board of trustees a tuition increase of $500 per year, the president of the university said "There were no student demonstrations over the previous increases of $300 last year and $200 the year before". If the president's statement is accurate then which of the following can be validly inferred from the information given:&lt;br /&gt;I. Most students in previous years felt that the increases were justified because of increased operating costs.&lt;br /&gt;II. Student apathy was responsible for the failure of students to protest the previous tuition increases.&lt;br /&gt;III. Students are not likely to demonstrate over new tuition increases.&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) II only&lt;br /&gt;(c) I or II but not both&lt;br /&gt;(d) I, II and III&lt;br /&gt;(e) None&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;em&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;41. The office staff of XYZ corporation presently consists of three bookeepers--A, B, C and 5 secretaries D, E, F, G, H. The management is planning to open a new office in another city using 2 bookeepers and 3 secretaries of the present staff . To do so they plan to seperate certain individuals who don't function well together. The following guidelines were established to set up the new office&lt;/span&gt;&lt;/em&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;I. Bookeepers A and C are constantly finding fault with one another and should not be sent together to the new office as a team&lt;br /&gt;II. C and E function well alone but not as a team , they should be seperated&lt;br /&gt;III. D and G have not been on speaking terms and shouldn't go together&lt;br /&gt;IV Since D and F have been competing for promotion they shouldn't be a team&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.If A is to be moved as one of the bookeepers,which of the following cannot be a possible working unit.&lt;br /&gt;&lt;br /&gt;A.ABDEH&lt;br /&gt;B.ABDGH&lt;br /&gt;C.ABEFH&lt;br /&gt;D.ABEGH&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2.If C and F are moved to the new office,how many combinations are possible&lt;br /&gt;&lt;br /&gt;A.1&lt;br /&gt;B.2&lt;br /&gt;C.3&lt;br /&gt;D.4&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.A&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3.If C is sent to the new office,which member of the staff cannot go with C&lt;br /&gt;&lt;br /&gt;A.B&lt;br /&gt;B.D&lt;br /&gt;C.F&lt;br /&gt;D.G&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4.Under the guidelines developed,which of the following must go to the new office&lt;br /&gt;&lt;br /&gt;A.B&lt;br /&gt;B.D&lt;br /&gt;C.E&lt;br /&gt;D.G&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.A&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5.If D goes to the new office,which of the following is/are true&lt;br /&gt;&lt;br /&gt;I.C cannot go&lt;br /&gt;II.A cannot go&lt;br /&gt;III.H must also go&lt;br /&gt;&lt;br /&gt;A.I only&lt;br /&gt;B.II only&lt;br /&gt;C.I and II only&lt;br /&gt;D.I and III only&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.D&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4&lt;em&gt;2.After months of talent searching for an administrative assistant to the president of the college the field of applicants has been narrowed down to 5--A, B, C, D, E .It was announced that the finalist would be chosen after a series of all-day group personal interviews were held.The examining committee agreed upon the following procedure&lt;/em&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;br /&gt;I.The interviews will be held once a week&lt;br /&gt;II.3 candidates will appear at any all-day interview session&lt;br /&gt;III.Each candidate will appear at least once&lt;br /&gt;IV.If it becomes necessary to call applicants for additonal interviews, no more 1 such applicant should be asked to appear the next week&lt;br /&gt;V.Because of a detail in the written applications,it was agreed that whenever candidate B appears, A should also be present.&lt;br /&gt;VI.Because of travel difficulties it was agreed that C will appear for only 1 interview.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.At the first interview the following candidates appear A,B,D.Which of the follwing combinations can be called for the interview to be held next week.&lt;br /&gt;&lt;br /&gt;A.BCD&lt;br /&gt;B.CDE&lt;br /&gt;C.ABE&lt;br /&gt;D.ABC&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2.Which of the following is a possible sequence of combinations for interviews in 2 successive weeks&lt;br /&gt;&lt;br /&gt;A.ABC;BDE&lt;br /&gt;B.ABD;ABE&lt;br /&gt;C.ADE;ABC&lt;br /&gt;D.BDE;ACD&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.C&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3.If A ,B and D appear for the interview and D is called for additional interview the following week,which 2 candidates may be asked to appear with D?&lt;br /&gt;&lt;br /&gt;I. A&lt;br /&gt;II B&lt;br /&gt;III.C&lt;br /&gt;IV.E&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A.I and II&lt;br /&gt;B.I and III only&lt;br /&gt;C.II and III only&lt;br /&gt;D.III and IV only&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.D&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4.Which of the following correctly state(s) the procedure followed by the search committee&lt;br /&gt;&lt;br /&gt;I.After the second interview all applicants have appeared at least once&lt;br /&gt;II.The committee sees each applicant a second time&lt;br /&gt;III.If a third session,it is possible for all applicants to appear at least twice&lt;br /&gt;&lt;br /&gt;A.I only&lt;br /&gt;B.II only&lt;br /&gt;C.III only&lt;br /&gt;D.Both I and II&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.A&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;43&lt;em&gt;. A certain city is served by subway lines A,B and C and numbers 1 2 and 3&lt;/em&gt;&lt;br /&gt;&lt;em&gt;When it snows , morning service on B is delayed&lt;/em&gt;&lt;i&gt;&lt;br /&gt;&lt;em&gt;When it rains or snows , service on A, 2 and 3 are delayed both in the morning and afternoon &lt;/em&gt;&lt;br /&gt;&lt;em&gt;When temp. falls below 30 degrees farenheit afternoon service is cancelled in either the A line or the 3 line,&lt;/em&gt;&lt;br /&gt;&lt;em&gt;but not both.&lt;/em&gt;&lt;br /&gt;&lt;em&gt;When the temperature rises over 90 degrees farenheit, the afternoon service is cancelled in either the line C or the&lt;/em&gt;&lt;br /&gt;&lt;em&gt;3 line but not both.&lt;/em&gt;&lt;br /&gt;&lt;em&gt;When the service on the A line is delayed or cancelled, service on the C line which connects the A line, is delayed.&lt;/em&gt;&lt;br /&gt;&lt;em&gt;When service on the 3 line is cancelled, service on the B line which connects the 3 line is delayed.&lt;/em&gt;&lt;/i&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Q1.  On Jan 10th, with the temperature at 15 degree farenheit, it snows all day. On how many lines will service be&lt;br /&gt;       affected, including both morning and afternoon.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) 2&lt;br /&gt;(B) 3&lt;br /&gt;(C) 4&lt;br /&gt;(D) 5 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. D&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q2. On Aug 15th with the temperature at 97 degrees farenheit it begins to rain at 1 PM. What is the minimum number&lt;br /&gt;      of  lines on which service will be affected?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) 2&lt;br /&gt;(B) 3&lt;br /&gt;(C) 4&lt;br /&gt;(D) 5 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. C&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q3. On which of the following occasions would service be on the greatest number of lines disrupted.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) A snowy afternoon with the temperature at 45 degree farenheit&lt;br /&gt;(B) A snowy morning with the temperature at 45 degree farenheit&lt;br /&gt;(C) A rainy afternoon with the temperature at 45 degree farenheit&lt;br /&gt;(D) A rainy afternoon with the temperature at 95 degree farenheit&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. B&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;4&lt;em&gt;&lt;span style="font-style: normal;"&gt;4. In a certain society, there are two marriage groups, red and brown. No marriage is permitted within a group. On marriage, males become part of their wives groups; women remain in their own group. Children belong to the same group as their parents. Widowers and divorced males revert to the group of their birth. Marriage to more than one person at the same time and marriage to a direct descendant are forbidden&lt;/span&gt;&lt;/em&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Q1. A brown female could have had&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;I. A grandfather born Red&lt;br /&gt;II. A grandmother born Red&lt;br /&gt;III Two grandfathers born Brown&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) I only&lt;br /&gt;(B) III only&lt;br /&gt;(C) I, II and III&lt;br /&gt;(D) I and II only&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. D&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q2. A male born into the brown group may have &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) An uncle in either group&lt;br /&gt;(B) A brown daughter&lt;br /&gt;(C) A brown son&lt;br /&gt;(D) A son-in-law born into red group &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. A&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q3. Which of the following is not permitted under the rules as stated.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) A brown male marrying his father's sister&lt;br /&gt;(B) A red female marrying her mother's brother&lt;br /&gt;(C) A widower marrying his wife's sister&lt;br /&gt;(D) A widow marrying her divorced daughter's ex-husband &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. B&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q4. If widowers and divorced males retained their group they had upon marrying which of the following would be permissible ( Assume that no previous marriage occurred)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) A woman marrying her dead sister's husband&lt;br /&gt;(B) A woman marrying her divorced daughter's ex-husband&lt;br /&gt;(C) A widower marrying his brother's daughter&lt;br /&gt;(D) A woman marrying her mother's brother who is a widower.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. D &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;Q5. I. All G's are H's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;II. All G's are J's or K's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;III All J's and K's are G's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;IV All L's are K's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;V All N's are M's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;VI No M's are G's&lt;/span&gt;&lt;/em&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;45. There are six steps that lead from the first to the second floor. No two people can be on the same step&lt;br /&gt;Mr. A is two steps below Mr. C&lt;br /&gt;Mr. B is a step next to Mr. D&lt;br /&gt;Only one step is vacant ( No one standing on that step )&lt;br /&gt;Denote the first step by step 1 and second step by step 2 etc. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1. If Mr. A is on the first step, Which of the following is true?&lt;br /&gt;(a) Mr. B is on the second step&lt;br /&gt;(b) Mr. C is on the fourth step.&lt;br /&gt;(c) A person Mr. E, could be on the third step&lt;br /&gt;(d) Mr. D is on higher step than Mr. C. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (d)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2. If Mr. E was on the third step &amp;amp; Mr. B was on a higher step than Mr. E which step must be vacant&lt;br /&gt;(a) step 1&lt;br /&gt;(b) step 2&lt;br /&gt;(c) step 4&lt;br /&gt;(d) step 5&lt;br /&gt;(e) step 6 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (a)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3. If Mr. B was on step 1, which step could A be on?&lt;br /&gt;(a) 2&amp;amp;e only&lt;br /&gt;(b) 3&amp;amp;5 only&lt;br /&gt;(c) 3&amp;amp;4 only&lt;br /&gt;(d) 4&amp;amp;5 only&lt;br /&gt;(e) 2&amp;amp;4 only &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (c)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4. If there were two steps between the step that A was standing and the step that B was standing on, and A was on a higher step than D , A must be on step &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 2&lt;br /&gt;(b) 3&lt;br /&gt;(c) 4&lt;br /&gt;(d) 5&lt;br /&gt;(e) 6  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (c)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;5. Which of the following is false&lt;br /&gt;&lt;br /&gt;i. B&amp;amp;D can be both on odd-numbered steps in one configuration&lt;br /&gt;ii. In a particular configuration A and C must either both an odd numbered steps or both an even-numbered steps&lt;br /&gt;iii. A person E can be on a step next to the vacant step. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) i only&lt;br /&gt;(b) ii only&lt;br /&gt;(c) iii only&lt;br /&gt;(d) both i and iii&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (c) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;46. Six swimmers A, B, C, D, E, F compete in a race. The outcome is as follows.&lt;br /&gt;i. B does not win.&lt;br /&gt;ii. Only two swimmers separate E &amp;amp; D&lt;br /&gt;iii. A is behind D &amp;amp; E&lt;br /&gt;iv. B is ahead of E , with one swimmer intervening&lt;br /&gt;v. F is a head of D &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1. Who stood fifth in the race ?&lt;br /&gt;(a) A&lt;br /&gt;(b) B&lt;br /&gt;(c) C&lt;br /&gt;(d) D&lt;br /&gt;(e) E &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (e) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2. How many swimmers seperate A and F ?&lt;br /&gt;(a) 1&lt;br /&gt;(b) 2&lt;br /&gt;(c) 3&lt;br /&gt;(d) 4&lt;br /&gt;(e) cannot be determined &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (d)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3. The swimmer between C &amp;amp; E is&lt;br /&gt;(a) none&lt;br /&gt;(b) F&lt;br /&gt;(c) D&lt;br /&gt;(d) B&lt;br /&gt;(e) A  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (a)&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;br /&gt;4. If the end of the race, swimmer D is disqualified by the Judges then swimmer B finishes in which place&lt;br /&gt;(a) 1&lt;br /&gt;(b) 2&lt;br /&gt;(c) 3&lt;br /&gt;(d) 4&lt;br /&gt;(e) 5  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (b) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;47. Five houses lettered A,B,C,D, &amp;amp; E are built in a row next to each other. The houses are lined up in the order A,B,C,D, &amp;amp; E. Each of the five houses has a colored chimney. The roof and chimney of each housemust be painted as follows.&lt;br /&gt;i. The roof must be painted either green,red ,or yellow.&lt;br /&gt;ii. The chimney must be painted either white, black, or red.&lt;br /&gt;iii. No house may have the same color chimney as the color of roof.&lt;br /&gt;iv. No house may use any of the same colors that the every next house uses.&lt;br /&gt;v. House E has a green roof.&lt;br /&gt;vi. House B has a red roof and a black chimney &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1. Which of the following is true ?&lt;br /&gt;(a) At least two houses have black chimney.&lt;br /&gt;(b) At least two houses have red roofs.&lt;br /&gt;(c) At least two houses have white chimneys&lt;br /&gt;(d) At least two houses have green roofs&lt;br /&gt;(e) At least two houses have yellow roofs &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (c) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2. Which must be false ?&lt;br /&gt;(a) House A has a yellow roof&lt;br /&gt;(b) House A &amp;amp; C have different color chimney&lt;br /&gt;(c) House D has a black chimney&lt;br /&gt;(d) House E has a white chimney&lt;br /&gt;(e) House B&amp;amp;D have the same color roof. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (b) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3. If house C has a yellow roof. Which must be true.&lt;br /&gt;(a) House E has a white chimney&lt;br /&gt;(b) House E has a black chimney&lt;br /&gt;(c) House E has a red chimney&lt;br /&gt;(d) House D has a red chimney&lt;br /&gt;(e) House C has a black chimney &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (a) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4. Which possible combinations of roof &amp;amp; chimney can house&lt;br /&gt;I. A red roof 7 a black chimney&lt;br /&gt;II. A yellow roof &amp;amp; a red chimney&lt;br /&gt;III. A yellow roof &amp;amp; a black chimney&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) II only&lt;br /&gt;(c) III only&lt;br /&gt;(d) I &amp;amp; II only&lt;br /&gt;(e) I&amp;amp;II&amp;amp;III &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (e)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;48. Find x+2y&lt;br /&gt;(i). x+y=10&lt;br /&gt;(ii). 2x+4y=20&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (b)&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;br /&gt;49. Is angle BAC is a right angle&lt;br /&gt;(i) AB=2BC&lt;br /&gt;(2) BC=1.5AC&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (e)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;50. Is x greater than y&lt;br /&gt;(i) x=2k&lt;br /&gt;(ii) k=2y &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (e)&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-3900217776789422933?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/3900217776789422933/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=3900217776789422933' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/3900217776789422933'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/3900217776789422933'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/aptitude-questions-ii.html' title='Aptitude Questions II'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-5930806184939453042</id><published>2007-10-05T00:54:00.000-07:00</published><updated>2007-10-05T00:56:00.208-07:00</updated><title type='text'>Aptitude Questions</title><content type='html'>&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;p align="justify"&gt;1.One of the following is my secret word:AIM  DUE  MOD  OAT  TIE.With the list in front of you, if I were to tell you any one of my secret word, then you would be able to tell me the number of vowels in my secret word.Which is my secret word?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;Ans.TIE&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;2.In the following figure:A  B  C&lt;br /&gt;                                              D&lt;br /&gt;                                              E   F  G&lt;br /&gt;                                                       H&lt;br /&gt;                                                       I&lt;br /&gt;Each of the digits 1, 2, 3, 4, 5, 6, 7, 8, and 9 is:&lt;br /&gt;a)Represented by a different letter in the figure above.&lt;br /&gt;b)Positioned in the figure above so that each of A + B + C,C + D +E,E + F + G, and G + H + I is equal to 13.&lt;br /&gt;Which digit does E represent?&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans.E is 4&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3.One of Mr. Horton,his wife,their son,and Mr. Horton's mother is a doctor and another is a lawyer.&lt;br /&gt;a)If the doctor is younger than the lawyer, then the doctor and the lawyer are not blood relatives.&lt;br /&gt;b)If the doctor is a woman, then the doctor and the lawyer are blood relatives.&lt;br /&gt;c)If the lawyer is a man, then the doctor is a man.&lt;br /&gt;Whose occupation you know?&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans.Mr. Horton:he is the doctor.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4.Here is a picture of two cubes:&lt;br /&gt;                                                &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shapetype id="_x0000_t75" coordsize="21600,21600" spt="75" preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"&gt;  &lt;v:stroke joinstyle="miter"&gt;  &lt;v:formulas&gt;   &lt;v:f eqn="if lineDrawn pixelLineWidth 0"&gt;   &lt;v:f eqn="sum @0 1 0"&gt;   &lt;v:f eqn="sum 0 0 @1"&gt;   &lt;v:f eqn="prod @2 1 2"&gt;   &lt;v:f eqn="prod @3 21600 pixelWidth"&gt;   &lt;v:f eqn="prod @3 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @0 0 1"&gt;   &lt;v:f eqn="prod @6 1 2"&gt;   &lt;v:f eqn="prod @7 21600 pixelWidth"&gt;   &lt;v:f eqn="sum @8 21600 0"&gt;   &lt;v:f eqn="prod @7 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @10 21600 0"&gt;  &lt;/v:formulas&gt;  &lt;v:path extrusionok="f" gradientshapeok="t" connecttype="rect"&gt;  &lt;o:lock ext="edit" aspectratio="t"&gt; &lt;/v:shapetype&gt;&lt;v:shape id="_x0000_i1025" type="#_x0000_t75" alt="aztec.gif (1732 bytes)" style="'width:163.5pt;height:76.5pt'"&gt;  &lt;v:imagedata src="file:///C:/DOCUME~1/sankar/LOCALS~1/Temp/msoclip1/01/clip_image001.gif" href="file:///C:/Documents%20and%20Settings/Saravanan/Desktop/question%20paper/New%20Folder/Aztec%20Sample%20Paper%20by%20Vyom%20Technologies_files/AZTEC.gif"&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;img src="file:///C:/DOCUME%7E1/sankar/LOCALS%7E1/Temp/msoclip1/01/clip_image001.gif" alt="aztec.gif (1732 bytes)" shapes="_x0000_i1025" height="102" width="218" /&gt;&lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;         &lt;br /&gt;  a)The two cubes are exactly alike.&lt;br /&gt;  b)The hidden faces indicated by the dots have the same alphabet on them.&lt;br /&gt;Which alphabet-q, r, w, or k is on the faces indicated by the dots?&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans.q&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5.In the following figure:&lt;br /&gt;                                    A              D&lt;br /&gt;                                    B      G     E&lt;br /&gt;                                    C             F&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Each of the seven digits from 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9 is:&lt;br /&gt;  a)Represented by a different letter in the figure above.&lt;br /&gt;  b)Positioned in the figure above so that A*B*C,B*G*E, and D*E*F are equal.&lt;br /&gt;Which digit does G represent?&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans.G represents the digit 2.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;6.Mr. and Mrs. Aye and Mr. and Mrs. Bee competed in a chess tournament.Of the three games played:&lt;br /&gt;  a)In only the first game werethe two players married to each other.&lt;br /&gt;  b)The men won two games and the women won one game.&lt;br /&gt;  c)The Ayes won more games than the Bees.&lt;br /&gt;  d)Anyone who lost game did not play the subsequent game.&lt;br /&gt;Who did not lose a game?&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans.Mrs.Bee did not lose a game.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;7.Three piles of chips--pile I consists one chip, pile II consists of chips, and pile III consists of three chips--are to be used in game played by Anita and Brinda.The game requires:&lt;br /&gt;  a)That each player in turn take only one chip or all chips from just one pile.&lt;br /&gt;  b)That the player who has to take the last chip loses.&lt;br /&gt;  c)That Anita now have her turn.&lt;br /&gt;From which pile should Anita draw in order to win?&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans.Pile II&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 12pt;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;8.Of Abdul, Binoy, and Chandini:&lt;br /&gt;  a)Each member belongs to the Tee family whose members always tell the truth or to the El family whose members        always lie.&lt;br /&gt;  b)Abdul says ''Either I belong or Binoy belongs to a different family from the other two."&lt;br /&gt;     Whose family do you name of?&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans.Binoy's family--El.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;9.In a class composed of x girls and y boys what part of the class is composed of girls&lt;br /&gt;&lt;br /&gt;A.y/(x + y)&lt;br /&gt;B.x/xy&lt;br /&gt;C.x/(x + y)&lt;br /&gt;D.y/xy&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.C&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10.What is the maximum number of half-pint bottles of cream that can be filled with a 4-gallon can of cream(2 pt.=1 qt. and 4 qt.=1 gal)&lt;br /&gt;&lt;br /&gt;A.16&lt;br /&gt;B.24&lt;br /&gt;C.30&lt;br /&gt;D.64&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.D&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11.If the operation,^ is defined by the equation x ^ y = 2x + y,what is the value of a in 2 ^ a = a ^ 3&lt;br /&gt;&lt;br /&gt;A.0&lt;br /&gt;B.1&lt;br /&gt;C.-1&lt;br /&gt;D.4&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12.A coffee shop blends 2 kinds of coffee,putting in 2 parts of a 33p. a gm. grade to 1 part of a 24p. a gm.If the mixture is changed to 1 part of the 33p. a gm. to 2 parts of the less expensive grade,how much will the shop save in blending 100 gms.&lt;br /&gt;&lt;br /&gt;A.Rs.90&lt;br /&gt;B.Rs.1.00&lt;br /&gt;C.Rs.3.00&lt;br /&gt;D.Rs.8.00&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.C&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13.There are 200 questions on a 3 hr examination.Among these questions are 50 mathematics problems.It is suggested that twice as much time be spent on each maths problem as for each other question.How many minutes should be spent on mathematics problems&lt;br /&gt;&lt;br /&gt;A.36&lt;br /&gt;B.72&lt;br /&gt;C.60&lt;br /&gt;D.100&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt; &lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;14.In a group of 15,7 have studied Latin, 8 have studied Greek, and 3 have not studied either.How many of these studied both Latin and Greek&lt;br /&gt;&lt;br /&gt;A.0&lt;br /&gt;B.3&lt;br /&gt;C.4&lt;br /&gt;D.5&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15.If 13 = 13w/(1-w) ,then (2w)&lt;sup&gt;2 &lt;/sup&gt;=&lt;br /&gt;&lt;br /&gt;A.1/4&lt;br /&gt;B.1/2&lt;br /&gt;C.1&lt;br /&gt;D.2&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.C&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;16. If a and b are positive integers and (a-b)/3.5 = 4/7, then &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) b &lt; a&lt;br /&gt;(B) b &gt; a&lt;br /&gt;(C) b = a&lt;br /&gt;(D) b &gt;= a&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. A&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;17. In june a baseball team that played 60 games had won 30% of its game played. After a phenomenal winning streak this team raised its average to 50% .How many games must the team have won in a row to attain this average?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A. 12&lt;br /&gt;B. 20&lt;br /&gt;C. 24&lt;br /&gt;D. 30&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. C&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;18. M men agree to purchase a gift for Rs. D. If three men drop out how much more will each have to contribute towards the purchase of the gift/&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A. D/(M-3)&lt;br /&gt;B. MD/3&lt;br /&gt;C. M/(D-3)&lt;br /&gt;D. 3D/(M&lt;sup&gt;2&lt;/sup&gt;-3M) &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. D&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;19. A company contracts to paint 3 houses. Mr.Brown can paint a house in 6 days while Mr.Black would take 8 days and Mr.Blue 12 days. After 8 days Mr.Brown goes on vacation and Mr. Black begins to work for a period of 6 days. How many days will it take Mr.Blue to complete the contract?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A. 7&lt;br /&gt;B. 8&lt;br /&gt;C. 11&lt;br /&gt;D. 12&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.C&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;20. 2 hours after a freight train leaves Delhi a passenger train leaves the same station travelling in the same direction at an average speed of 16 km/hr. After travelling 4 hrs the passenger train overtakes the freight train. The average speed of the freight train was?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A. 30&lt;br /&gt;B. 40&lt;br /&gt;C.58&lt;br /&gt;D. 60&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. B&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;21. If 9x-3y=12 and 3x-5y=7 then 6x-2y = ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A.-5&lt;br /&gt;B. 4&lt;br /&gt;C. 2&lt;br /&gt;D. 8&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. D&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;22. There are 5 red shoes, 4 green shoes. If one draw randomly a shoe what is the probability of getting a red shoe&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans 5c&lt;sub&gt;1&lt;/sub&gt;/ 9c&lt;sub&gt;1&lt;/sub&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;23. What is the selling price of a car? If the cost of the car is Rs.60 and a  profit of 10% over selling price is earned&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans: Rs 66/-&lt;/span&gt;&lt;br /&gt;&lt;br /&gt; &lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;24. 1/3 of girls , 1/2 of boys go to canteen .What factor and total number of classmates go to canteen.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans: Cannot be determined.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;25. The price of a product is reduced by 30% . By what percentage should it be increased to make it 100%&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans: 42.857%&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;26. There is a square of side 6cm . A circle is inscribed inside the square. Find the ratio of the area of circle to square. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 11/14 &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;27. There are two candles of equal lengths and of different thickness. The thicker one lasts of six hours. The thinner 2 hours less than the thicker one. Ramesh lights the two candles at the same time. When he went to bed he saw the thicker one is twice the length of the thinner one. How long ago did Ramesh light the two candles .&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans: 3 hours. &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;28. If M/N = 6/5,then 3M+2N = ? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;29. If p/q = 5/4 , then 2p+q= ? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;30. If PQRST is a parallelogram what it the ratio of triangle PQS &amp;amp; parallelogram PQRST .&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 1:2 &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;31. The cost of an item is Rs 12.60. If the profit is 10% over selling price what is the selling price ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: Rs 13.86/- &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;32. There are 6 red shoes &amp;amp; 4 green shoes . If two of red shoes are drawn what is the probability of getting red shoes &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 6c&lt;sub&gt;2&lt;/sub&gt;/10c&lt;sub&gt;2&lt;/sub&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;33. To 15 lts of water containing 20% alcohol, we add 5 lts of pure water. What is % alcohol. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans : 15% &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;34. A worker is paid Rs.20/- for a full days work. He works 1,1/3,2/3,1/8.3/4 days in a week. What is the total amount paid for that worker ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans : 57.50&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;35. If the value of x lies between 0 &amp;amp; 1 which of the following is the largest? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) x&lt;br /&gt;(b) x&lt;sup&gt;2&lt;/sup&gt;&lt;br /&gt;(c) -x&lt;br /&gt;(d) 1/x&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans : (d) &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; 36. If the total distance of a journey is 120 km .If one goes by 60 kmph and comes back at 40kmph what is the average speed during the journey? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 48kmph&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;37. A school has 30% students from Maharashtra .Out of these 20% are Bombey students. Find the total percentage of Bombay?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans:  6%&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;38. An equilateral triangle of sides 3 inch each is given. How many equilateral triangles of side 1 inch can be formed from it?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 9&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;39. If A/B = 3/5,then 15A = ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans : 9B&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;40. Each side of a rectangle is increased by 100% .By what percentage does the area increase?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans : 300%&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;41. Perimeter of the back wheel = 9 feet, front wheel = 7 feet on a certain distance, the front wheel gets 10 revolutions more than the back wheel .What is the distance?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans : 315 feet.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;42. Perimeter of front wheel =30, back wheel = 20. If front wheel revolves 240 times. How many revolutions will the back wheel take?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 360 times&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;43. 20% of a 6 litre solution and 60% of 4 litre solution are mixed. What percentage of the mixture of solution&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 36%&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;44City A's population is 68000, decreasing at a rate of 80 people per year. City B having population 42000 is increasing at a rate of 120 people per year. In how many years both the cities will have same population?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 130 years&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;45Two cars are 15 kms apart. One is turning at a speed of 50kmph and the other at 40kmph . How much time will it take for the two cars to meet?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 3/2 hours&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;46A person wants to buy 3 paise and 5 paise stamps costing exactly one rupee. If he buys which of the following number of stamps he won't able to buy 3 paise stamps.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 9&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;47There are 12 boys and 15 girls, How many different dancing groups can be formed with 2 boys and 3 girls.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;48Which of the following fractions is less than 1/3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 22/62&lt;br /&gt;(b) 15/46&lt;br /&gt;(c) 2/3&lt;br /&gt;(d) 1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (b)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;49There are two circles, one circle is inscribed and another circle is circumscribed over a square. What is the ratio of area of inner to outer circle?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: 1 : 2&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;50Three types of tea the a,b,c costs Rs. 95/kg,100/kg and70/kg respectively.&lt;br /&gt;     How many kgs of each should be blended to produce 100 kg of mixture worth Rs.90/kg,&lt;br /&gt;     given that the quntities of band c are equal&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;a)70,15,15&lt;br /&gt;b)50,25,25&lt;br /&gt;c)60,20,20&lt;br /&gt;d)40,30,30 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;51. in&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; a class, except 18 all are above 50 years.&lt;br /&gt;    15 are below 50 years of age. How many people are there&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 30&lt;br /&gt;(b) 33&lt;br /&gt;(c) 36&lt;br /&gt;(d) none of these.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (d)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;52. If a boat is moving in upstream with velocity of 14 km/hr and goes downstream with a velocity of 40 km/hr, then what is the speed of the stream ?&lt;br /&gt;&lt;br /&gt;(a) 13 km/hr&lt;br /&gt;(b) 26 km/hr&lt;br /&gt;(c) 34 km/hr&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. A&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;53. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Find the value of ( 0.75 * 0.75 * 0.75 - 0.001 ) / ( 0.75 * 0.75 - 0.075 + 0.01)&lt;br /&gt;&lt;br /&gt;(a) 0.845&lt;br /&gt;(b) 1.908&lt;br /&gt;(c) 2.312&lt;br /&gt;(d) 0.001&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. A&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;54. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A can have a piece of work done in 8 days, B can work three times faster than the A, C can work five times faster than A. How many days will they take to do the work together ?&lt;br /&gt;&lt;br /&gt;(a) 3 days&lt;br /&gt;(b) 8/9 days&lt;br /&gt;(c) 4 days&lt;br /&gt;(d) can't say&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. B&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;55. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A car travels a certain distance taking 7 hrs in forward journey, during the return journey increased speed 12km/hr takes the times 5 hrs.What is the distance travelled&lt;br /&gt;&lt;br /&gt;(a) 210 kms&lt;br /&gt;(b) 30 kms&lt;br /&gt;(c) 20 kms&lt;br /&gt;(c) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. B&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;56. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Instead of multiplying a number by 7, the number is divided by 7. What is the percentage of error obtained ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;57.&lt;span style=""&gt;  &lt;/span&gt;Find (7x + 4y ) / (x-2y) if x/2y = 3/2 ?&lt;br /&gt;&lt;br /&gt;(a) 6&lt;br /&gt;(b) 8&lt;br /&gt;(c) 7&lt;br /&gt;(d) data insufficient&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. C&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;58. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A man buys 12 lts of liquid which contains 20% of the liquid and the rest is water. He then mixes it with 10 lts of another mixture with 30% of liquid.What is the % of water in the new mixture?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;59. If a man buys 1 lt of milk for Rs.12 and mixes it with 20% water and sells it for Rs.15, then what is the percentage of gain?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;60. Pipe A can fill a tank in 30 mins and Pipe B can fill it in 28 mins.If 3/4th of the tank is filled by Pipe B alone and both are opened, how much time is required by both the pipes to fill the tank completely ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;61. If on an item a company gives 25% discount, they earn 25% profit. If they now give 10% discount then what is the profit percentage.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 40%&lt;br /&gt;(b) 55%&lt;br /&gt;(c) 35%&lt;br /&gt;(d) 30%&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. D&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;62. A certain number of men can finish a piece of work in 10 days. If however there were 10 men less it will take 10 days more for the work to be finished. How many men were there originally?&lt;br /&gt;&lt;br /&gt;(a) 110 men&lt;br /&gt;(b) 130 men&lt;br /&gt;(c) 100 men&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. A&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;63. In simple interest what sum amounts of Rs.1120/- in 4 years and Rs.1200/- in 5 years ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) Rs. 500&lt;br /&gt;(b) Rs. 600&lt;br /&gt;(c) Rs. 800&lt;br /&gt;(d) Rs. 900&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. C&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;64. If a sum of money compound annually amounts of thrice itself in 3 years. In how many years&lt;br /&gt;will it become 9 times itself.&lt;br /&gt;&lt;br /&gt;(a) 6&lt;br /&gt;(b) 8&lt;br /&gt;(c) 10&lt;br /&gt;(d) 12&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans A&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;65. Two trains move in the same direction at 50 kmph and 32 kmph respectively. A man in the slower train&lt;br /&gt;observes the 15 seconds elapse before the faster train completely passes by him.&lt;br /&gt;What is the length of faster train ?&lt;br /&gt;&lt;br /&gt;(a) 100m&lt;br /&gt;(b) 75m&lt;br /&gt;(c) 120m&lt;br /&gt;(d) 50m&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans B&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;66. How many mashes are there in 1 squrare meter of wire gauge if each mesh&lt;br /&gt;is 8mm long and 5mm wide ?&lt;br /&gt;&lt;br /&gt;(a) 2500&lt;br /&gt;(b) 25000&lt;br /&gt;(c) 250&lt;br /&gt;(d) 250000&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans B&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;67. x% of y is y% of ?&lt;br /&gt;(a) x/y&lt;br /&gt;(b) 2y&lt;br /&gt;(c) x&lt;br /&gt;(d) can't be determined&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. C&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;68. The price of sugar increases by 20%, by what % should a housewife reduce the consumption of sugar so that expenditure on sugar can be same as before ?&lt;br /&gt;(a) 15%&lt;br /&gt;(b) 16.66%&lt;br /&gt;(c) 12%&lt;br /&gt;(d) 9%&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans B&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;69. A man spends half of his salary on household expenses, 1/4th for rent, 1/5th for travel expenses, the man deposits the rest in a bank. If his monthly deposits in the bank amount 50, what is his monthly salary ?&lt;br /&gt;(a) Rs.500&lt;br /&gt;(b) Rs.1500&lt;br /&gt;(c) Rs.1000&lt;br /&gt;(d) Rs. 900&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans C&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;70. The population of a city increases @ 4% p.a. There is an additional annual increase of 4% of the population due to the influx of job seekers, find the % increase in population after 2 years ? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;71. The ratio of the number of boys and girls in a school is 3:2 Out of these 10% the boys and 25% of girls are scholarship holders. % of students who are not scholarship holders.?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;72. 15 men take 21 days of 8 hrs. each to do a piece of work. How many days of 6 hrs. each would it take for 21 women if 3 women do as much work as 2 men?&lt;br /&gt;(a) 30&lt;br /&gt;(b) 20&lt;br /&gt;(c) 19&lt;br /&gt;(d) 29&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. A&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;73. A cylinder is 6 cms in diameter and 6 cms in height. If spheres of the same size are made from the material obtained, what is the diameter of each sphere?&lt;br /&gt;(a) 5 cms&lt;br /&gt;(b) 2 cms&lt;br /&gt;(c) 3 cms&lt;br /&gt;(d) 4 cms&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans C&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;74. A rectangular plank (2)&lt;sup&gt;1/2&lt;/sup&gt; meters wide can be placed so that it is on either side of the diagonal of a square shown below.(Figure is not available)What is the area of the plank?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans :7*(2)&lt;sup&gt;1/2&lt;/sup&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;75. The difference b/w the compound interest payble half yearly and the simple interest on a&lt;br /&gt;certain sum lent out at 10% p.a for 1 year is Rs 25. What is the sum?&lt;br /&gt;(a) Rs. 15000&lt;br /&gt;(b) Rs. 12000&lt;br /&gt;(c) Rs. 10000&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans C&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;76. What is the smallest number by which 2880 must be divided in order to make it into a&lt;br /&gt;perfect square ?&lt;br /&gt;&lt;br /&gt;(a) 3&lt;br /&gt;(b) 4&lt;br /&gt;(c) 5&lt;br /&gt;(d) 6 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. C&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;77. A father is 30 years older than his son however he will be only thrice as old as the son after 5 years&lt;br /&gt;what is father's present age ?&lt;br /&gt;&lt;br /&gt;(a) 40 yrs&lt;br /&gt;(b) 30 yrs&lt;br /&gt;(c) 50 yrs&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. A&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;78. An article sold at a profit of 20% if both the cost price and selling price would be Rs.20/- the profit would be 10% more. What is the cost price of that article?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;29. If an item costs Rs.3 in '99 and Rs.203 in '00.What is the % increase in price?&lt;br /&gt;&lt;br /&gt;(a) 200/3 %&lt;br /&gt;(b) 200/6 %&lt;br /&gt;(c) 100%&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. A&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;80. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;5 men or 8 women do equal amount of work in a day. a job requires 3 men and 5 women to finish the job in 10 days how many woman are required to finish the job in 14 days.&lt;br /&gt;&lt;br /&gt;a) 10&lt;br /&gt;b) 7&lt;br /&gt;c) 6&lt;br /&gt;d) 12&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;Ans 7&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;81. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A simple interest amount of rs 5000 for six month is rs 200. what is the anual rate of interest?&lt;br /&gt;&lt;br /&gt;a) 10%&lt;br /&gt;b) 6%&lt;br /&gt;c) 8%&lt;br /&gt;d) 9% &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;Ans 8%&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;82. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;In objective test a correct ans score 4 marks and on a wrong ans 2 marks are ---. a student score 480 marks from       150 question. how many ans were correct?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;a) 120&lt;br /&gt;b) 130&lt;br /&gt;c) 110&lt;br /&gt;d) 150&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;Ans130.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;83. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;An artical sold at amount of 50% the net sale price is rs 425 .what is the list price of the artical?&lt;br /&gt;&lt;br /&gt;a) 500&lt;br /&gt;b) 488&lt;br /&gt;c) 480&lt;br /&gt;d) 510 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;Ans 500&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: rgb(128, 0, 64);"&gt;84. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A man leaves office daily at 7pm  A driver with car comes from his home to pick him from office and bring back home &lt;br /&gt;     One day he gets free at 5:30 and instead of waiting for driver he starts walking towards home.&lt;br /&gt;     In the way he meets the car and returns home on car  He reaches home 20 minutes earlier than usual.&lt;br /&gt;     In how much time does the man reach home usually??&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 1hr 20min&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;85. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A works thrice as much as B. If A takes 60 days less than B to do a work then find the number of days it would take to       complete the work if both work together?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 22½days&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;86.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; How many 1's are there in the binary form of  &lt;strong&gt;8*1024 + 3*64 + 3&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;87.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; In a digital circuit which was to implement (A B) + (A)XOR(B), the designer implements (A B) (A)XOR(B) &lt;br /&gt;    What is the probability of error in it ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;88. A boy has Rs 2. He wins or loses Re 1 at a time  If he wins he gets Re 1 and if he loses the game he loses Re 1.&lt;br /&gt;     He can loose only 5 times. He is out of the game if he earns Rs 5.&lt;br /&gt;     Find the number of ways in which this is possible?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 16&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;89. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;If there are 1024*1280 pixels on a screen and each pixel can have around 16 million colors&lt;br /&gt;     Find the memory required for this?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 4MB&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;90. On a particular day A and B decide that they would either speak the truth or will lie.&lt;br /&gt;     C asks A whether he is speaking truth or lying?&lt;br /&gt;     He answers and B listens to what he said. C then asks B what A has said  B says "A says that he is a liar"&lt;br /&gt;     What is B speaking ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) Truth&lt;br /&gt;(b) Lie&lt;br /&gt;(c) Truth when A lies&lt;br /&gt;(d) Cannot be determined&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;91.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; What is the angle between the two hands of a clock when time is 8:30&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 75(approx)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;92. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A student is ranked 13th from right and 8th from left. How many students are there in totality ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;93. A man walks east and turns right and then from there to his left and then 45degrees to&lt;br /&gt;  his right.In which direction did he go&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans. North west&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;94.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; A student gets 70% in one subject, 80% in the other. To get an overall of 75% how much should get in third subject.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;95. A man shows his friend a woman sitting in a park and says that she the daughter of my  grandmother's only son.&lt;br /&gt;    What is the relation between the two&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans. Daughter&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;96. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style=""&gt; &lt;/span&gt;How many squares with sides 1/2 inch long are needed to cover a rectangle that is 4 ft long and 6 ft wide&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 24&lt;br /&gt;(b) 96&lt;br /&gt;(c) 3456&lt;br /&gt;(d) 13824&lt;br /&gt;(e) 14266&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;97. If a=2/3b , b=2/3c, and c=2/3d what part of d is b/&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 8/27&lt;br /&gt;(b) 4/9&lt;br /&gt;(c) 2/3&lt;br /&gt;(d) 75%&lt;br /&gt;(e) 4/3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2598Successive discounts of 20% and 15% are equal to a single discount of &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 30%&lt;br /&gt;(b) 32%&lt;br /&gt;(c) 34%&lt;br /&gt;(d) 35%&lt;br /&gt;(e) 36&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;99. The petrol tank of an automobile can hold g liters.If a liters was removed when the tank was full, what part of the full tank was removed?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a)g-a&lt;br /&gt;(b)g/a&lt;br /&gt;(c) a/g&lt;br /&gt;(d) (g-a)/a&lt;br /&gt;(e) (g-a)/g&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (c)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="text-indent: 8.55pt;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;100. &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;span style="font-size:85%;"&gt;If x/y=4 and y is not '0' what % of x is 2x-y&lt;br /&gt;&lt;br /&gt;(a)150%&lt;br /&gt;(b)175%&lt;br /&gt;(c)200%&lt;br /&gt;(d)250%&lt;br /&gt;&lt;/span&gt;  &lt;span style="color: maroon;"&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;Ans. (b)&lt;/p&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1578348944402078340-5930806184939453042?l=free-interview-questions.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://free-interview-questions.blogspot.com/feeds/5930806184939453042/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=1578348944402078340&amp;postID=5930806184939453042' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/5930806184939453042'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1578348944402078340/posts/default/5930806184939453042'/><link rel='alternate' type='text/html' href='http://free-interview-questions.blogspot.com/2007/10/aptitude-questions.html' title='Aptitude Questions'/><author><name>ShobiShanal</name><uri>http://www.blogger.com/profile/09029004032339286019</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='01239717736538670533'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1578348944402078340.post-3739799325712865463</id><published>2007-10-05T00:49:00.000-07:00</published><updated>2007-10-05T00:53:27.514-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software companies in Chennai'/><title type='text'>List of Software companies in Chennai</title><content type='html'>&lt;p  style="text-align: center; font-family: verdana;font-family:verdana;" align="center"&gt;&lt;span style="font-size:85%;"&gt;&lt;i&gt;&lt;u&gt;List Of Software Companies in Chennai &lt;o:p&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div style="font-family: verdana;font-family:verdana;"  align="center"&gt;  &lt;table style="border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr&gt;   &lt;td colspan="2" style="padding: 0in 0.75pt; width: 556.8pt;" width="742"&gt;   &lt;h1&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: normal;"&gt;Ashok Pillar / KK. Nagar / Kodambakkam&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h1&gt;   &lt;p class="MsoNormal"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;1. Wellwin Industries,&lt;br /&gt; &lt;/b&gt;25,5th Floor, Sekar Towers,&lt;br /&gt; 1st Main Road, United India Colony,&lt;br /&gt; Kodambakkam,Chennai-24.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;2. Marrs Software,&lt;br /&gt; &lt;/b&gt;25,First Main Road, United India   Colony,&lt;br /&gt; Kodambakkam,&lt;br /&gt; Chennai-24.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;3. Vector Software,&lt;br /&gt; &lt;/b&gt;5/2,Kamarajar Street, Gandhi Nagar, &lt;br /&gt; Saligramam, Chennai-600093. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;4. Tulip Software&lt;br /&gt; &lt;/b&gt;52nd Street, 7th Avenue,&lt;br /&gt; Ashok Nagar, Chennai&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;5. Spat Consultancy,&lt;br /&gt; &lt;/b&gt;142,Avm Avenue, 8th Street, 1st   Floor,&lt;br /&gt; Chennai-92.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;6. Softsolutions,&lt;br /&gt; &lt;/b&gt;C-19, 16th Avenue, Ashok Nagar,&lt;br /&gt; Chennai-83.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;7. Softeam Software,&lt;br /&gt; &lt;/b&gt;52nd Street, 7th Avenue, Ashok   Nagar,&lt;br /&gt; Chennai. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;8. Pictoria   Entertainment,&lt;br /&gt; &lt;/b&gt;4, 3rd Floor, Planna Plaza,   74,Arcot Road,&lt;br /&gt; Chennai-24.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;9. Pentafour Software   Exports,&lt;br /&gt; &lt;/b&gt;1,First Main Road,&lt;br /&gt; Kodambakkam, Chennai - 600 024&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;10.Intech Business   Solutions,&lt;br /&gt; &lt;/b&gt;1st Floor, Sannadhi Street,   Vadapalani,&lt;br /&gt; Chennai-26.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;11. Ana Software   Technologies,&lt;br /&gt; &lt;/b&gt;53,1st Floor, Lakshmi Towers, Arcot   Road,&lt;br /&gt; Chennai-600024.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;12.Congurence Software   Ltd.,&lt;br /&gt; &lt;/b&gt;2,Ramavaram Main Road,&lt;br /&gt; Ramavaram, Chennai.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;13. HCL Peripherals,&lt;br /&gt; &lt;/b&gt;158,Arcot Road,&lt;br /&gt; Vadapalani, Chennai-26.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt; 14.Pyramid   Business Systems,&lt;br /&gt; &lt;/b&gt;52nd Street, 7th Avenue, Ashok   Nagar,&lt;br /&gt; Chennai.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;15.Icon Systems,&lt;br /&gt; &lt;/b&gt;48,2nd Floor, Balaji Nagar,&lt;br /&gt; 1st Main, Ekkadu Thangal, Chennai-97.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;   &lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;/div&gt;  &lt;p style="font-family: verdana;font-family:verdana;"  class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div style="font-family: verdana;font-family:verdana;"  align="center"&gt;  &lt;table style="border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr&gt;   &lt;td colspan="2" style="padding: 0in 0.75pt; width: 556.8pt;" width="742"&gt;   &lt;h2&gt;&lt;span style="font-size:85%;"&gt;Adyar&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;   &lt;p class="MsoNormal"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;1. Computer   International,&lt;br /&gt; &lt;/b&gt;152,Annai Velankanni Church Road,&lt;br /&gt; Vannanthurai, Besant Nagar, Chennai-90.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;2. DSM Soft (P) Ltd.&lt;/b&gt;&lt;br /&gt; 9, 15th Cross Street, Shastri Nagar,&lt;br /&gt; Adayar, Madras - 600 020&lt;br /&gt; Phone: 4913878, 4911376 Fax: 4910847&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;3. Manmar,&lt;br /&gt; &lt;/b&gt;55,L.B.Road, Thiruvanmiyur,&lt;br /&gt; Chennai-41.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt; 4. Naturesoft   Creative Software Solutions,&lt;br /&gt; &lt;/b&gt;3,4th Main Road, Kotturpuram,&lt;br /&gt; Chennai-85.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt; 5. Oceania Software, &lt;br /&gt; &lt;/b&gt;73,2nd Main Road, Gandhinagar,   Adyar,&lt;br /&gt; Chennai-20.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt; 6. Open Business   Solutions,&lt;br /&gt; &lt;/b&gt;Japasri, 39,4th Main Road, Gandhi   Nagar,&lt;br /&gt; Adyar, Chennai-20.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt; 7. Q-Net Software   Development,&lt;br /&gt; &lt;/b&gt;M.G.Road, Besant Nagar,&lt;br /&gt; Adyar, Chennai-20.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;8. S.R.Associates,&lt;br /&gt; &lt;/b&gt;10,3rd Main Road, K.B.Nagar,&lt;br /&gt; Adyar, Chennai-20.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;9. Itex Information   Systems,&lt;br /&gt; &lt;/b&gt;3rd Floor, K.R.Buildings, 124-A,   L.B.Road, Adyar,&lt;br /&gt; Chennai-8.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;10.TKS Iswaran Software, &lt;br /&gt; &lt;/b&gt;10,Third Main Road, Kasturbanagar,   Adyar,&lt;br /&gt; Chennai-600010.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;11.Sri Kapali Software,&lt;br /&gt; &lt;/b&gt;128,Lattice Bridge Road,&lt;br /&gt; Thiruvanmiyur, Chennai-41.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;12.Ramco Systems,&lt;br /&gt; &lt;/b&gt;3,Sardar Patel Road,&lt;br /&gt; Taramani, Chennai - 600 113&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;13.Integral Solutions,&lt;br /&gt; &lt;/b&gt;45,1st Floor, 1st Avenue,   Indiranagar, Adyar,&lt;br /&gt; Chennai-20.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;/div&gt;  &lt;p style="font-family: verdana;font-family:verdana;"  class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;font-family:verdana;"  class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: verdana;font-family:verdana;"  class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div style="font-family: verdana;font-family:verdana;"  align="center"&gt;  &lt;table style="border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr&gt;   &lt;td colspan="2" style="padding: 0in 0.75pt; width: 556.8pt;" width="742"&gt;   &lt;h1&gt;&lt;span style="font-size:85%;"&gt;Anna Nagar&lt;/span&gt;&lt;/h1&gt;   &lt;p class="MsoNormal"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;1. Commsouth,&lt;br /&gt; &lt;/b&gt;F-82/1,Annanagar East,&lt;br /&gt; Chennai-600102.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;2. Giri Computer   Systems,&lt;br /&gt; &lt;/b&gt;W-300, 2nd Avenue, Anna Nagar   (West),&lt;br /&gt; Chennai-40.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;3. American Megatrends   India Pvt Ltd.,&lt;br /&gt; &lt;/b&gt;Aj-6, Shanthi Colony, Anna Nagar,&lt;br /&gt; Chennai - 600 040&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;4. Ibar Software Lmt.,&lt;br /&gt; &lt;/b&gt;Celebrity Towers, D/98 or 95,3rd   Avenue,&lt;br /&gt; Anna Nagar, Chennai&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;5. Marquip Worldwide   Systems,&lt;br /&gt; &lt;/b&gt;Y-50, 9th Street, Annanagar (W),&lt;br /&gt; Chennai-10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt; 6. L-Cube   Innovative Solutions,&lt;br /&gt; &lt;/b&gt;1148,I Block, 6th Avenue, Anna   Nagar (W),&lt;br /&gt; Chennai-10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;7. Sunrise Software,&lt;br /&gt; &lt;/b&gt;F-52, 1st Main Road, Anna   Nagar-East,&lt;br /&gt; Chennai-40. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;8. Precision Software,&lt;br /&gt; &lt;/b&gt;Magnum House, Anna Nagar Circle,&lt;br /&gt; Chennai-102.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;9. Team Consultants,&lt;br /&gt; &lt;/b&gt;2nd Floor, 1-50,Anna Nagar (E),&lt;br /&gt; Chennai-102.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;/div&gt;  &lt;p style="font-family: verdana;font-family:verdana;"  class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div style="font-family: verdana;font-family:verdana;"  align="center"&gt;  &lt;table style="border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr&gt;   &lt;td colspan="2" style="padding: 0in 0.75pt; width: 556.8pt;" width="742"&gt;   &lt;h1&gt;&lt;span style="font-size:85%;"&gt;Anna Salai / Greams Road / Parrys&lt;/span&gt;&lt;/h1&gt;   &lt;p class="MsoNormal"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;1. Advanced Info   Services,&lt;br /&gt; &lt;/b&gt;1-A, Ali Towers, 22,Greams Road,&lt;br /&gt; Chennai-600 006&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;2.Target Case   Technologies,&lt;br /&gt; &lt;/b&gt;3rdfloor,Temple Towers, 476,Mount   Road,&lt;br /&gt; Chennai-600035. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;3. Coramandel Software,&lt;br /&gt; &lt;/b&gt;Tarapore Towers, Annasalai,&lt;br /&gt; Chennai&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;4. CMC Limited,&lt;br /&gt; &lt;/b&gt;Seethakathi Chamber, 688, Anna   Salai,&lt;br /&gt; Chennai-6.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;5. Computer &amp;amp;   Systems Engineering Inc.,&lt;br /&gt; &lt;/b&gt;1J,Century Plaza,   560-562,Annasalai,&lt;br /&gt; Chennai-18.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;6. Crystal Software   Corporation,&lt;br /&gt; &lt;/b&gt;Ambal Buildings, 2nd Floor,   727,Anna Salai,&lt;br /&gt; Chennai-6.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;7. Deltatec Solutions,&lt;br /&gt; &lt;/b&gt;4th Floor, Meco House,&lt;br /&gt; 47,Anna Salai, Chennai-2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;8. Zeelos Systems,&lt;br /&gt; &lt;/b&gt;143a,Anna Salai,&lt;br /&gt; Chennai-600 032&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;9. Wipro Infotech&lt;br /&gt; &lt;/b&gt;111,Anna Salai,&lt;br /&gt; Chennai-32&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;10.Future Software&lt;br /&gt; &lt;/b&gt;481,Anna Salai,&lt;br /&gt; Nandanam, Chennai - 600 035&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;11.WTI (TCS Associate)&lt;br /&gt; &lt;/b&gt;98,Peters Road,&lt;br /&gt; Chennai&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;12.Visteon Embedded   Software,&lt;br /&gt; &lt;/b&gt;3rd Floor, TNPL Building, 35,Anna   Salai,&lt;br /&gt; Chennai-32.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;13.Vetri Software,&lt;br /&gt; &lt;/b&gt;3rd Floor, Thiru Buildings,&lt;br /&gt; 160,Greams Road, Chennai-6.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;14.HTC S/W Development   Centre,&lt;br /&gt; &lt;/b&gt;Gems Foundation,&lt;br /&gt; 383,Mount Road, Chennai-15.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;15.Sundaram Telematics,&lt;br /&gt; &lt;/b&gt;714,Anna Salai,&lt;br /&gt; Chennai-6.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt; &lt;/b&gt;&lt;b&gt;&lt;span lang="FR"&gt;16. Tata Consultancy   Services,&lt;br /&gt; &lt;/span&gt;&lt;/b&gt;&lt;span lang="FR"&gt;185,Lloyds   Road,&lt;br /&gt; Chennai-600086&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="FR"&gt;17.DSQ&lt;br /&gt; &lt;/span&gt;&lt;/b&gt;&lt;span lang="FR"&gt;407,G.R.   Complex, Annasalai,&lt;br /&gt; Nandanam, Chennai-600 035&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;18.Synergy Log-In   Systems,&lt;br /&gt; &lt;/b&gt;G-4, Karrumuthu Complex, 498,Anna   Road,&lt;br /&gt; Chennai-35.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;19.Software Technology   Group,&lt;br /&gt; &lt;/b&gt;104,Prince Center,&lt;br /&gt; 709,Mount Road, Chennai-6.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;20.Soft-Age Software,&lt;br /&gt; &lt;/b&gt;Parson Complex,&lt;br /&gt; 3rdfloor, Chennai.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;21.Indigo Technologies&lt;br /&gt; &lt;/b&gt;3rd Floor, Pathari Road,&lt;br /&gt; 714,Anna Salai, Chennai - 600 006&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="FR"&gt;22.Syntel Software,&lt;br /&gt; &lt;/span&gt;&lt;/b&gt;&lt;span lang="FR"&gt;Anna   Salai,&lt;br /&gt; Chennai.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;23.Sonata Software Ltd., &lt;br /&gt; &lt;/b&gt;22,Greams Road,&lt;br /&gt; Chennai-6&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;24.IBJ Software,&lt;br /&gt; &lt;/b&gt;407,Anna Salai,&lt;br /&gt; Chennai-35.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;25.Silverline Industries &lt;br /&gt; &lt;/b&gt;3rd Floor, JVL Plaza,&lt;br /&gt; 501,Anna Salai, Teynampet, Chennai - 600 018&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;26.Redington,&lt;br /&gt; &lt;/b&gt;SPL-Guindy House, 95,Mount Road,&lt;br /&gt; Chennai-32.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="FR"&gt;27. L&amp;amp;T Infotech,&lt;br /&gt; &lt;/span&gt;&lt;/b&gt;&lt;span lang="FR"&gt;Anna   Salai,&lt;br /&gt; Nandanam, Chennai&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;28.Intersoft Systems,&lt;br /&gt; &lt;/b&gt;22,Greams Road,&lt;br /&gt; Chennai-6.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;29.Imagine Technologies, &lt;br /&gt; &lt;/b&gt;M.M.Foam Buildings, 748,Mount Road, &lt;br /&gt; Chennai-2.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;30.Prakash Business   Software Consultancy,&lt;br /&gt; &lt;/b&gt;689,Mount Road,&lt;br /&gt; Chennai-6.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;31. Polaris Lab.,&lt;br /&gt; &lt;/b&gt;Ii Floor, 713,Anna Salai,&lt;br /&gt; Chennai - 600 006&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;32. Onward Computer   Technologies,&lt;br /&gt; &lt;/b&gt;A/2,Ali Towers, Greams Road,&lt;br /&gt; Chennai-6.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;33. Nucleus Software,&lt;br /&gt; &lt;/b&gt;713,Anna Salai,&lt;br /&gt; Chennai-6.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;34. Mascot Systems,&lt;br /&gt; &lt;/b&gt;110,Anna Salai,&lt;br /&gt; Chennai-32&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;35. Mascon Software.,&lt;br /&gt; &lt;/b&gt;4th Floor,Padma Complex,&lt;br /&gt; 320,Anna Salai., Chennai - 600 035&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;36. Lakshmi Infosys,&lt;br /&gt; &lt;/b&gt;62,Greenways Road,&lt;br /&gt; Chennai-28.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;37.Citicorp Overseas   Software Ltd.,&lt;br /&gt; &lt;/b&gt;Steeple Reach,25,Cathedral Road,&lt;br /&gt; Chennai-86.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;38.Cognizant Technology   Solutions India Ltd.,&lt;br /&gt; &lt;/b&gt;Arul Manai Buildings,27,Whites   Road,&lt;br /&gt; Chennai - 600 014&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="FR"&gt;39. Indus Media Internet Services,&lt;br /&gt; &lt;/span&gt;&lt;/b&gt;&lt;span lang="FR"&gt;G-21,   Ethiraj Salai,&lt;br /&gt; Chennai-105.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;40.Saturn Information,&lt;br /&gt; &lt;/b&gt;42,Mount Road,G.G.Complex,4th   Floor,&lt;br /&gt; Chennai-2.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;41. HCL Cisco,&lt;br /&gt; &lt;/b&gt;49-50,Nelson Manickam Road,&lt;br /&gt; Chennai-600 029&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;42. HCL Technologies,&lt;br /&gt; &lt;/b&gt;50-53,Greams Road,&lt;br /&gt; Chennai-6. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;43. HCL Deluxe,&lt;br /&gt; &lt;/b&gt;Ali Centre,Greams Road,&lt;br /&gt; Chennai-6. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;44.Harita Infosys,&lt;br /&gt; &lt;/b&gt;6/2,Pycrofts Garden Road,&lt;br /&gt; Chennai-6. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;45. IIS Infotech,&lt;br /&gt; &lt;/b&gt;12,Khadar Nawaz Khan Road,&lt;br /&gt; Chennai - 600 006 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;46.SKD Software Limited, &lt;br /&gt; &lt;/b&gt;B-4,Bhattad Tower,30,West Cott   Road,&lt;br /&gt; Royapettah, Chennai-29. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;47. Prompt Software,&lt;br /&gt; &lt;/b&gt;4,Kondi Chetti Street,&lt;br /&gt; Chennai-1. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt; 48. Pamban   Software,&lt;br /&gt; &lt;/b&gt;187,Royapettah High Road,&lt;br /&gt; Chennai-4. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;49.SVG Software,&lt;br /&gt; &lt;/b&gt;Singapore Plaza,4th Floor,Lingi   Chetty Street,&lt;br /&gt; Chennai-1. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;50.Indchem Software   Technologies,&lt;br /&gt; &lt;/b&gt;8,Cathedral Road,&lt;br /&gt; Chennai-86. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;51. Hexaware Systems,&lt;br /&gt; &lt;/b&gt;Temple Towers,Anna Salai,&lt;br /&gt; Nandanam, Chennai - 600 035 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;/div&gt;  &lt;p style="font-family: verdana;font-family:verdana;"  class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div style="font-family: verdana;font-family:verdana;"  align="center"&gt;  &lt;table style="border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr&gt;   &lt;td colspan="2" style="padding: 0in 0.75pt; width: 556.8pt;" width="742"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Egmore&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;1. Bitech Software   Development,&lt;br /&gt; &lt;/b&gt;3,Moores Road,Bucharia Towers,&lt;br /&gt; Egmore, Chennai-600 008. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;2. Balaji Infotech,&lt;br /&gt; &lt;/b&gt;1,Mahaveer Colony,1st Floor,&lt;br /&gt; E.V.K. Sampath Road, Vepery, Chennai-600 007. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;3. Computer Enterprises   Inc.,&lt;br /&gt; &lt;/b&gt;II Floor,Wellington Estate,&lt;br /&gt; 24,C-In-C Road, Egmore, Chennai-105. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;4. HCL Consulting,&lt;br /&gt; &lt;/b&gt;3,Moores Road,Bukharia Towers,&lt;br /&gt; Egmore, Chennai-105 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;5. India Software Group, &lt;br /&gt; &lt;/b&gt;Zuari House,46,Montieth Road,&lt;br /&gt; Egmore, Chennai - 600 008. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;6.Transformation   Systems,&lt;br /&gt; &lt;/b&gt;140,Marshalls Road,Egmore,&lt;br /&gt; Chennai-600008. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;7. Metamor Graphics.,&lt;br /&gt; &lt;/b&gt;3rd &amp;amp; 4th Floor,Bukharia   Towers,&lt;br /&gt; 4,Moores Road, Chennai-600 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;8. Hexaware Systems,&lt;br /&gt; &lt;/b&gt;Janapriya Crest,(Opp. Museum)&lt;br /&gt; Egmore,Chennai-8.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;9. Indchem Infotech,&lt;br /&gt; &lt;/b&gt;Arkinson's Palace,Vepery,&lt;br /&gt; Chennai. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="FR"&gt;10.DPEP,&lt;br /&gt; &lt;/span&gt;&lt;/b&gt;&lt;span lang="FR"&gt;DPI,Chennai.   &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;/div&gt;  &lt;p style="font-family: verdana;font-family:verdana;"  class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;span lang="FR"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div style="font-family: verdana;font-family:verdana;"  align="center"&gt;  &lt;table style="border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr&gt;   &lt;td colspan="2" style="padding: 0in 0.75pt; width: 556.8pt;" width="742"&gt;   &lt;h1&gt;&lt;span style="font-size:85%;"&gt;Kilpauk&lt;/span&gt;&lt;/h1&gt;   &lt;p class="MsoNormal"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;1. Time Software   Solutions,&lt;br /&gt; &lt;/b&gt;241F,Ground Floor, Kilpauk Garden   Road,&lt;br /&gt; Chennai-10. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;2. Inovation Software,&lt;br /&gt; &lt;/b&gt;241F,Kilpauk Garden Road,&lt;br /&gt; Chennai-10. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;3. Digital Vision Ltd.,&lt;br /&gt; &lt;/b&gt;48,Taylors Road,&lt;br /&gt; Kilpauk, Chennai-10. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;4. Balaji Infotech   Services,&lt;br /&gt; &lt;/b&gt;Sapthagiri,34-A,Ormes Road,   Kilpauk,&lt;br /&gt; Chennai-10. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;/div&gt;  &lt;p style="font-family: verdana;font-family:verdana;"  class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div style="font-family: verdana;font-family:verdana;"  align="center"&gt;  &lt;table style="border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0"&gt;  &lt;tbody&gt;&lt;tr&gt;   &lt;td colspan="2" style="padding: 0in 0.75pt; width: 556.8pt;" width="742"&gt;   &lt;h1&gt;&lt;span style="font-size:85%;"&gt;Mylapore / Alwarpet / Teynampet&lt;/span&gt;&lt;/h1&gt;   &lt;p class="MsoNormal"&gt;&lt;!--[if !supportEmptyParas]--&gt;&lt;span style="font-size:85%;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;1. Amrutanjan Infotech,&lt;br /&gt; &lt;/b&gt;42-45,Luz Church Road,&lt;br /&gt; Mylapore, Chennai-600 004. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;2. Botree Software,&lt;br /&gt; &lt;/b&gt;Iind Floor,187,Royapettah High   Road,&lt;br /&gt; Mylapore,Chennai-600 004. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;3. Digital Equipments,&lt;br /&gt; &lt;/b&gt;85,Dr.Radha Krishna Salai,&lt;br /&gt; Chennai-4. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;4. Electronic Data   Systems,&lt;br /&gt; &lt;/b&gt;Dr.Radhakrishnan Salai, Mylapore,&lt;br /&gt; Chennai-4. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;5. OOPS Systems.,&lt;br /&gt; &lt;/b&gt;103,Dr.Radhakrishnan Road,&lt;br /&gt; Mylapore, Chennai &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="FR"&gt;6. Prod Ex Technologies,&lt;br /&gt; &lt;/span&gt;&lt;/b&gt;&lt;span lang="FR"&gt;17,Luz   Avenue,Mylapore,&lt;br /&gt; Chennai-4. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;7. Kaashyap Radiant   Systems,&lt;br /&gt; &lt;/b&gt;Sankara Towers,119,Dr.Radhakrishnan   Salai,&lt;br /&gt; Mylapore,Chennai-4. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;8. Emerald Software&lt;br /&gt; &lt;/b&gt;188-B,St.Mary's Road,&lt;br /&gt; Alwarpet, Chennai - 600 0186. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;9. Sathyam Software.,&lt;br /&gt; &lt;/b&gt;Alwarpet,Chennai. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;10. Pinnacle Software,&lt;br /&gt; &lt;/b&gt;207,R.K.Mutt Road,&lt;br /&gt; Mandaveli, Chennai &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;11.Micro House   Consulting,&lt;br /&gt; &lt;/b&gt;342,Ii Floor, Triplicane High Road, &lt;br /&gt; Chennai-5. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="padding: 0in 0.75pt; width: 278.4pt;" width="371"&gt;   &lt;p class