Chools Talencia

Career

Resume Generator

Build Your Resume

by Chools

Personal Information

Social media profiles

Working Experience





profile

Chools Consulting Services

info@choolsgroup.com

12345678910, 1234567890

4E, Rich homes, Richmond circle, bengaluru-560025


Facebook.com

Instagram.com

Linkedin.com

Chools Consulting Services

Objective

Lorem ipsum dolor sit amet consectetur, adipisicing elit. Deserunt minima quis aliquam assumenda praesentium nulla maiores tempore esse dolorum odit, sequi et ratione velit fugiat aut porro cumque rem sit.

Experience

  • Lorem ipsum, dolor sit amet consectetur adipisicing elit. Excepturi, doloribus.
  • Lorem ipsum, dolor sit amet consectetur adipisicing elit. Excepturi, doloribus.
  • Lorem ipsum, dolor sit amet consectetur adipisicing elit. Excepturi, doloribus.

Qualifications

  • Lorem ipsum, dolor sit amet consectetur adipisicing elit. Excepturi, doloribus.
  • Lorem ipsum, dolor sit amet consectetur adipisicing elit. Excepturi, doloribus.
  • Lorem ipsum, dolor sit amet consectetur adipisicing elit. Excepturi, doloribus.

Tell us a little bit about yourself.

Lorem ipsum dolor sit amet consectetur, adipisicing elit. Deserunt minima quis aliquam assumenda praesentium nulla maiores tempore esse dolorum odit, sequi et ratione velit fugiat aut porro cumque rem sit.

What inspires you to come for work everyday apart from monetary benefits?

Lorem ipsum dolor sit amet consectetur, adipisicing elit. Deserunt minima quis aliquam assumenda praesentium nulla maiores tempore esse dolorum odit, sequi et ratione velit fugiat aut porro cumque rem sit.

Tell us something about what you learnt from the recent pandemic.

Lorem ipsum dolor sit amet consectetur, adipisicing elit. Deserunt minima quis aliquam assumenda praesentium nulla maiores tempore esse dolorum odit, sequi et ratione velit fugiat aut porro cumque rem sit.

Where do you see yourself 5 years from now?

Lorem ipsum dolor sit amet consectetur, adipisicing elit. Deserunt minima quis aliquam assumenda praesentium nulla maiores tempore esse dolorum odit, sequi et ratione velit fugiat aut porro cumque rem sit.

Tab

Choose Your Courses


1. Declarations and Initializations?

  • A. rem = 3.14 % 2.1;
  • B. rem = modf(3.14, 2.1);
  • C. rem = fmod(3.14, 2.1);
  • D. Remainder cannot be obtain in floating point division.

Answer: Option C


2. What are the types of linkages?

  • A. Internal and External
  • B. External, Internal and None
  • C. External and None
  • D. Internal

Answer: Option B


3. Which of the following special symbol allowed in a variable name?

  • A.* (asterisk)
  • B.| (pipeline)
  • C.- (hyphen)
  • D._ (underscore)

Answer: Option D


4. Which of the following is the correct order of evaluation for the below expression?
z = x + y * z / 4 % 2 - 1

  • A.* / % + - =
  • B.= * / % + -
  • C./ * % - + =
  • D.* % / - + =

Answer: Option A


6. Which of the following correctly shows the hierarchy of arithmetic operations in C?

  • A./ + * -
  • B.* - / +
  • C.+ - / *
  • D./ * + -

Answer: Option D


7. Which of the following is the correct usage of conditional operators used in C?

  • A.a>b ? c=30 : c=40;
  • B.a>b ? c=30;
  • C.max = a>b ? a>c?a:c:b>c?b:c
  • D.return (a>b)?(a:b)

Answer: Option C


8. The keyword used to transfer control from a function back to the calling function is

  • A. switch
  • B. goto
  • C.go back
  • D.return

Answer: Option D


9. What is the notation for following functions?

  • A.a>b ? c=30 : c=40;
  • B.a>b ? c=30;
  • C.max = a>b ? a>c?a:c:b>c?b:c
  • D.return (a>b)?(a:b)

Answer: Option C


10. Which of the following is the correct usage of conditional operators used in C?

1. int f(int a, float b) { /* Some code */ } 2. int f(a, b) int a; float b; { /* Some code */ }
  • A. 1. KR Notation 2. ANSI Notation
  • B.1. Pre ANSI C Notation 2. KR Notation
  • C.1. ANSI Notation 2. KR Notation
  • D.1. ANSI Notation 2. Pre ANSI Notation

Answer: Option C


11.What is the output of the following code snippet?

#include main() { int *p = 15; printf("%d",*p); }
  • A.15
  • B.Garbage value
  • C.Runtime error
  • D.Compiler error

Answer: Option C


12.The type name/reserved word ‘short’ is ___

  • A. short long
  • B.short char
  • C.short float
  • D.short int

Answer: Option D


13.Choose the invalid identifier from the below

  • A.Int
  • B.volatile
  • C.DOUBLE
  • D.0

Answer: Option B


14.What is the output of the below code snippet

#include main() { printf("%d", -11%2); }
  • A.1
  • B.-1
  • C.5.5
  • D.-5.5

Answer: Option B


15.A local variable is stored in ___

  • A.Code segment
  • B.Stack segment
  • C.Heap segment
  • D.None of the above

Answer: Option B


15.int fun(); - The declaration indicates the presence of a function defined inside the current module or in the same file.

  • A.True
  • B.False

Answer: Option A


16.Which standard library function can return a pointer to the last occurrence of a character in a string?

  • A.stchar()
  • B.strrchr()
  • C.strchar() & stchar()
  • D.strrchar()

Answer: Option B


17.In the given below code, the P2 is

Typedef int *ptr; ptr p1, p2;
  • A.Integer
  • B.Integer pointer
  • C.Both, Integer & Integer pointer
  • D.None of above

Answer: Option B


18.In the given below code, what will be return by the function get ()?

#include int get(); int main() { const int x = get(); printf("%d", x); return 0; } int get() { return 40; }
  • A.40
  • B.20
  • C. 0
  • D.Error

Answer: Option A


19.Choose the function that is most appropriate for reading in a multi-word string?

  • A.strnset()
  • B.scanf()
  • C.strchr()
  • D.gets()

Answer: Option D


20.Which of the following is not a valid C variable name?

  • A.int number;
  • B.float rate;
  • C.int variable_count;
  • D.int $main;

Answer: Option B


21.All keywords in C are in ____________

  • A.LowerCase letters
  • B.UpperCase letters
  • C.CamelCase letters
  • D.None of the mentioned

Answer: Option A


22.Which of the following is true for variable names in C?

  • A.They can contain alphanumeric characters as well as special characters
  • B.It is not an error to declare a variable to be one of the keywords(like goto, static)
  • C.Variable names cannot start with a digit
  • D.Variable can be of any length

Answer: Option C


23.Which is valid C expression?

  • A.int my_num = 100,000;
  • B.int my_num = 100000;
  • C.int my num = 1000;
  • D.int $my_num = 10000;

Answer: Option B


24.Which of the following cannot be a variable name in C?

  • A.volatile
  • B.true
  • C.friend
  • D.export

Answer: Option A


25.What is short int in C programming?

  • A.String str;
  • B.char *str;
  • C.float str = 3e2;
  • D.Both String str; & float str = 3e2;

Answer: Option A


26.Which keyword is used to prevent any changes in the variable within a C program?

  • A.immutable
  • B.mutable
  • C.const
  • D.volatile

Answer: Option c


  • A.
  • B.
  • C.
  • D.

Answer: Option B


27. What is the result of logical or relational expression in C?

  • A.True or False
  • B.0 or 1
  • C.0 if an expression is false and any positive number if an expression is true
  • D.None of the mentioned

Answer: Option B


28.Which of the following typecasting is accepted by C language?

  • A.Widening conversions
  • B.Narrowing conversions
  • C.Widening & Narrowing conversions
  • D.None of the mentioned

Answer: Option C


29.Where in C the order of precedence of operators do not exist?

  • A.Within conditional statements, if, else
  • B.Within while, do-while
  • C.Within a macro definition
  • D.None of the mentioned

Answer: Option D


30.Which of the following is NOT possible with any 2 operators in C?

  • A.Different precedence, same associativity
  • B.Different precedence, different associativity
  • C.Same precedence, different associativity
  • D.All of the mentioned

Answer: Option C


31.What is an example of iteration in C?

  • A.for
  • B.while
  • C.do-while
  • D.all of the mentioned

Answer: Option D


32.Functions can return enumeration constants in C?

  • A.true
  • B.false
  • C.depends on the compiler
  • D.depends on the standard

Answer: Option A


33.depends on the standard

  • A.Internal
  • B.External
  • C.Both Internal and External
  • D.External and Internal are not valid terms for functions

Answer: Option B


34.Which of following is not accepted in C?

  • A.static a = 10; //static as
  • B.static int func (int); //parameter as static
  • C.static static int a; //a static variable prefixed with static
  • D.all of the mentioned

Answer: Option C


35.Property which allows to produce different executable for different platforms in C is called?

  • A.File inclusion
  • B.Selective inclusion
  • C.Conditional compilation
  • D.Recursive macros

Answer: Option C


36.What is #include ?

  • A.Preprocessor directive
  • B.Inclusion directive
  • C.File inclusion directive
  • D.None of the mentioned

Answer: Option B


37.C preprocessors can have compiler specific features.

  • A.True
  • B.False
  • C.Depends on the standard
  • D.Depends on the platform

Answer: Option A


38.Which of the following are C preprocessors?

  • A.#ifdef
  • B.#define
  • C.#endif
  • D.all of the mentioned

Answer: Option D


39.The C-preprocessors are specified with _________ symbol.

  • A.#
  • B.$
  • C.” ”
  • D. &

Answer: Option B


40.How is search done in #include and #include “somelibrary.h” according to C standard?

  • A.When former is used, current directory is searched and when latter is used, standard directory is searched
  • B.When former is used, standard directory is searched and when latter is used, current directory is searched
  • C.When former is used, search is done in implementation defined manner and when latter is used, current directory is searched
  • D.For both, search for ‘somelibrary’ is done in implementation-defined places

Answer: Option D


41.How many number of pointer (*) does C have against a pointer variable declaration?

  • A.7
  • B.127
  • C.255
  • D.No limits

Answer: Option D


42.Which of the following is not possible statically in C language?

  • A.Jagged Array
  • B.Rectangular Array
  • C.Cuboidal Array
  • D.Multidimensional Array

Answer: Option A


43.Which of the following return-type cannot be used for a function in C?

  • A.char *
  • B.struct
  • C.void
  • D.void

Answer: Option D


44.The standard header _______ is used for variable list arguments (…) in C.

  • A.
  • B.
  • C.
  • D.

Answer: Option D/p>


45.When a C program is started, O.S environment is responsible for opening file and providing pointer for that file?When a C program is started, O.S environment is responsible for opening file and providing pointer for that file?

  • A.Standard input
  • B.Standard output
  • C.Standard error
  • D.All of the mentioned

Answer: Option D


46.In C language, FILE is of which data type?

  • A.int
  • B.char *
  • C.None of the mentioned
  • D.struct

Answer: Option D


  • A.
  • B.
  • C.
  • D.

Answer: Option B


47.What is the sizeof(char) in a 32-bit C compiler?

  • A.1 bit
  • B.2 bits
  • C.) 1 Byte
  • D.2 Bytes

Answer: Option SC


48.Which of the following is not an operator in C?

  • A.,/li>
  • B.sizeof()
  • C.~
  • D.None of the mentioned

Answer: Option D


49.scanf() is a predefined function in______header file

  • A.stdlib. h
  • B.ctype. h
  • C.stdio. h
  • D.stdarg. h

Answer: Option C


50.What is meant by ‘a’ in the following C operation?

fp = fopen("Random.txt", "a");
  • A. Attach
  • B.Append
  • C.Apprehend
  • D.Add

Answer: Option B


51.What will be the output of the following C code?

1. #include 2. int main() 3. { 4. int y = 10000; 5. int y = 34; 6. printf("Hello World! %d\n", y); 7. return 0; 8. }
  • A.Compile time error
  • B.Hello World! 34
  • C.Hello World! 1000
  • D.Hello World! followed by a junk value

Answer: Option A


52.What will happen if the following C code is executed?

1. #include 2. int main() 3. { 4. int main = 3; 5. printf("%d", main); 6. return 0; 7. }
  • A.It will cause a compile-time error
  • B.It will cause a run-time error
  • C.It will run without any error and prints 3
  • D.It will experience infinite looping

Answer: Option D


1. How long is an IPv6 address?

  • A.32 bits
  • B.128 bytes
  • C.64 bits
  • D.128 bits

Answer: Option D


2. What flavor of Network Address Translation can be used to have one IP address allow many users to connect to the global Internet?

  • A.NAT
  • B.Static
  • C.Dynamic
  • D.PAT

Answer: Option D


3. To back up an IOS, what command will you use?

  • A. backup IOS disk
  • B. copy ios tftp
  • C.copy tftp flash
  • D.copy flash tftp

Answer: Option D


4. What protocol does PPP use to identify the Network layer protocol?

  • A.NCP
  • B. ISDN
  • C.HDLC
  • D.LCP

Answer: Option A


5. What layer in the TCP/IP stack is equivalent to the Transport layer of the OSI model?

  • A. Application
  • B. Host-to-Host
  • C.Internet
  • D.Network Access

Answer: Option B


6. You want to implement a mechanism that automates the IP configuration, including IP address, subnet mask, default gateway, and DNS information. Which protocol will you use to accomplish this?

  • A. SMTP
  • B. SNMP
  • C.DHCP
  • D.ARP

Answer: Option C


7. Which of the following allows a router to respond to an ARP request that is intended for a remote host?

  • A. Gateway DP
  • B.Reverse ARP (RARP)
  • C.Proxy ARP
  • D.Inverse ARP (IARP

Answer: Option C


8. If you use either Telnet or FTP, which is the highest layer you are using to transmit data?

  • A. Application
  • B. Presentation
  • C.Session
  • D.Transport

Answer: Option A


9. Which of the following commands will configure all the default VTY ports on a router?

  • A. Router#line vty 0 4
  • B.Router(config)#line vty 0 4
  • C.Router(config-if)#line console 0
  • D.Router(config)#line vty all

Answer: Option B



10. Which command will delete the contents of NVRAM on a router?

  • A. delete NVRAM
  • B. delete startup-config
  • C.erase NVRAM
  • D.erase start

Answer: Option D


Tab

1. There is a square of side 6cm. A circle is inscribed inside the square. Find the ratio of the area of a circle to square?

Answer: 11/14


2. There are two candles of equal lengths and different thicknesses. The thicker one lasts six hours. The thinner is 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?

Answer: 3 hours


3. The cost of an item is rs 12.60. If the profit is 10% over the selling price what is the selling price?

Answer: rs 13.86/-


4. There are 6 red shoes & 4 green shoes. If two red shoes are drawn what is the probability of getting red shoes

Answer: 6c2/10c2


6. To 15 lots of water containing 20% alcohol, we add 5 lots of pure water. What is % alcohol?

Answer: 15%


7. A worker is paid Rs.20/- for a full day of work. He works 1,1/3,2/3,1/8.3/4 days a week. What is the total amount paid for that worker?

Answer: 57.50


8. If the value of x lies between 0 & 1 which of the following is the largest?

  • A. x
  • B. x2
  • C. ?x
  • D. 1/x

Answer: Option D


9. 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?

  • A.a>b ? c=30 : c=40;
  • B.a>b ? c=30;
  • C.max = a>b ? a>c?a:c:b>c?b:c
  • D.return (a>b)?(a:b)

Answer: 48kmph


10. A school has 30% of students from Maharashtra. Out of these 20% are Bombay students. Find the total percentage of Bombay?

Answer: 6%


11. An equilateral triangle of sides 3 inches each is given. How many equilateral triangles of side 1 inch can be formed from it?

Answer: 9


12. If A/B = 3/5, then 15A =?

Answer: 9B


13. Each side of a rectangle is increased by 100%. By what percentage does the area increase?

Answer: 300%


14. Perimeter of the back wheel = 9 feet, front-wheel = 7 feet at a certain distance, the front wheel gets 10 revolutions more than the back wheel. What is the distance?

Answer: 315 feet


15. 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?

  • A. 12
  • B. 20
  • C. 24
  • D. 30

Answer: Option C


16. 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

  • A. D/(M-3)
  • B. MD/3
  • C. M/(D-3)
  • D. 3D/(M2-3M)

Answer: Option D


17. 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 6 days. How many days will it take Mr.Blue to complete the contract?

  • A. 7
  • B. 8
  • C. 11
  • D. 12

Answer: Option C


18. 2 hours after a freight train leaves Delhi a passenger train leaves the same station traveling in the same direction at an average speed of 16 km/hr. After traveling 4 hrs the passenger train overtakes the freight train. The average speed of the freight train was?

  • A. 30
  • B. 40
  • C. 58
  • D. 60

Answer: Option B


19. If 9x-3y=12 and 3x-5y=7 then 6x-2y = ?

  • A. -5
  • B. 4
  • C. 2
  • D. 8

Answer: Option D



20. There are 5 red shoes, 4 green shoes. If one draw randomly a shoe what is the probability of getting a red shoe?

Answer: 5c1/ 9c1



21. What is the selling price of a car? If the cost of the car is Rs.60 and a profit of 10% over the selling price is earned?

Answer: Rs 66/-


22. The price of a product is reduced by 30%. By what percentage should it be increased to make it 100%?

Answer: 42.857%


23. Perimeter of front-wheel =30, back wheel = 20. If the front wheel revolves 240 times. How many revolutions will the back wheel take?

Answer: 360 times


24. 20% of a 6-liter solution and 60% of a 4-liter solution are mixed. What percentage of the mixture of the solution?

Answer: 36%


25. City A's population is 68000, decreasing at a rate of 80 people per year. City B having a population of 42000 is increasing at a rate of 120 people per year. In how many years both the cities will have the same population?

Answer: 130 years


26. Two cars are 15 km 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?

Answer: 3/2 hours


27. A 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 be able to buy 3 paise stamps?

Answer: 9


28. Which of the following fractions is less than 1/3

  • A. 22/62
  • B. 15/46
  • C. 2/3
  • D. 1

Answer: Option B


29. There are two circles, one circle is inscribed and another circle is circumscribed over a square. What is the ratio of the area of the inner to outer circle?

Answer: 1 : 2



30. Three types of tea the a,b,c costs Rs. 95/kg,100/kg and70/kg respectively. How many kgs of each should be blended to produce 100 kg of mixture worth Rs.90/kg, given that the quantities of band c are equal?

  • A. 70,15,15
  • B. 50,25,25
  • C. 60,20,20
  • D. 40,30,30

Answer: Option B



31. In a class, except 18 all are above 50 years.15 are below 50 years of age. How many people are there?

  • A. 30
  • B. 33
  • C. 36
  • D. None of these

Answer: Option D


32. If a boat is moving in upstream with a velocity of 14 km/hr and goes downstream with a velocity of 40 km/hr, then what is the speed of the stream?

  • A. 13 km/hr
  • B. 26 km/hr
  • C. 34 km/hr
  • D. None of the these

Answer: Option A


33. Find the value of ( 0.75 * 0.75 * 0.75 - 0.001 ) / ( 0.75 * 0.75 - 0.075 + 0.01)

  • A. 0.845
  • B. 1.908
  • C. 2.312
  • D. 0.001

Answer: Option A


34. 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?

  • A. 3 days
  • B. 8/9 days
  • C. 4 days
  • D. can't say

Answer: Option B


35. A car travels a certain distance taking 7 hrs in forwarding journey, during the return journey increased speed 12km/hr takes the times 5 hrs. What is the distance traveled?

  • A. 210 km
  • B. 30 km
  • C. 20 km
  • D. none of these

Answer: Option B


36. Find (7x + 4y ) / (x-2y) if x/2y = 3/2 ?

  • A. 6
  • B. 8
  • C. 7
  • D. data insufficient

Answer: Option C


37. 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.

  • A. 40%
  • B. 55%
  • C. 35%
  • D. 30%

Answer: Option D


38. 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?

  • A. 110 men
  • B. 130 men
  • C. 100 men
  • D. none of these

Answer: Option A


39. In simple interest what sum amounts of Rs.1120/- in 4 years and Rs.1200/- in 5 years?

  • A. Rs. 500
  • B. Rs. 600
  • C. Rs. 800
  • D. Rs. 900

Answer: Option C



40. If a sum of money compound annually amounts of thrice itself in 3 years. In how many years will it become 9 times itself?

  • A. 6
  • B. 8
  • C. 10
  • D. 12

Answer: Option A



41. Two trains move in the same direction at 50 kmph and 32 kmph respectively. A man in the slower train observes the 15 seconds elapse before the faster train completely passes by him. What is the length of a faster train?

  • A. 100m
  • B. 75m
  • C. 120m
  • D. 50m

Answer: Option B


42. How many mashes are there in 1 square meter of wire gauge if each mesh is it 8mm long and 5mm wide?

  • A. 2500
  • B. 25000
  • C. 250
  • D. 250000

Answer: Option B


43. In an objective test a correct ans score of 4 marks and on a wrong ans 2 marks are ---. a student score 480 marks from 150 question. How many ans were correct?

  • A. 120
  • B. 130
  • C. 110
  • D. 150

Answer: Option B


44. An article sold at an amount of 50% the net sale price is rs 425 .what is the list price of the article?

  • A. 500
  • B. 488
  • C. 480
  • D. 510

Answer: Option A


45. A man leaves the office daily at 7 pm A driver with a car comes from his home to pick him up from the office and bring him back home. One day he gets free at 5:30 and instead of waiting for the driver, he starts walking towards home. On the way he meets the car and returns home on car He reaches home 20 minutes earlier than usual. In how much time does the man reach home usually?

Answer: 1hr 20min


46. 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?

Answer: 22 days


47. How many 1's are there in the binary form of 8*1024 + 3*64 + 3

Answer: 4


48. 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. He can loose only 5 times. He is out of the game if he earns Rs 5. Find the number of ways in which this is possible?

Answer: 16


49. If there are 1024*1280 pixels on a screen and each pixel can have around 16 million colors. Find the memory required for this?

Answer: 4 MB



50. On a particular day A and B decide that they would either speak the truth or will lie. C asks A whether he is speaking the truth or lying? 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" What is B speaking?

  • A. Truth
  • B. Lie
  • C. Truth when A lies
  • D. Cannot be determined

Answer: Option B


51. In a class composed of x girls and y boys what part of the class is composed of girls

  • A. y/(x + y)
  • B. x/xy
  • C. x/(x + y)
  • D. y/xy

Answer: Option C


52. x% of y is y% of?

  • A. x/y
  • B. 2y
  • C. x
  • D. can't be determined

Answer: Option C


53. The price of sugar increases by 20%, by what % should a housewife reduce the consumption of sugar so that expenditure on sugar can be the same as before?

  • A. 15%
  • B. 16.66%
  • C. 12%
  • D. 9%

Answer: Option B


54. The price of sugar increases by 20%, by what % should a housewife reduce the consumption of sugar so that expenditure on sugar can be the same as before?

  • A. 15%
  • B. 16.66%
  • C. 12%
  • D. 9%

Answer: Option B


55. 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 to 50, what is his monthly salary?

  • A. 500
  • B. 1000
  • C. 1500
  • D. 900

Answer: Option B


56. 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?

  • A. 30
  • B. 20
  • C. 19
  • D. 29

Answer: Option A


57. 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?

  • A. 5 cms
  • B. 2 cms
  • C. 3 cms
  • D. 4 cms

Answer: Option C


58. A rectangular plank (2)1/2 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?

Answer: 7*(2)1/2


59. What is the smallest number by which 2880 must be divided in order to make it into a perfect square?

  • A. 3
  • B. 4
  • C. 5
  • D. 6

Answer: Option C



60. A father is 30 years older than his son however he will be only thrice as old as the son after 5 years what is father's present age?

  • A. 40 yrs
  • B. 30 yrs
  • C. 50 yrs
  • D. None of the these

Answer: Option A



61. If an item costs Rs.3 in '99 and Rs.203 in '00. What is the % increase in price?

  • A. 200/3 %
  • B. 200/6 %
  • C. 100%
  • D. None of the these

Answer: Option A


62. 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 women are required to finish the job in 14 days.

  • A. 10
  • B. 7
  • C. 6
  • D. 12

Answer: Option B


63. A simple interest amount of rs 5000 for six months is rs 200. What is the annual rate of interest?

  • A. 10%
  • B. 6%
  • C. 8%
  • D. 9%

Answer: Option C



64. 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?

  • A. 12
  • B. 20
  • C. 24
  • D. 30

Answer: Option C


65. 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/

  • A. D/(M-3)
  • B. MD/3
  • C. M/(D-3)
  • D. 3D/(M2-3M)

Answer: Option D


66. 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?

  • A. 7
  • B. 8
  • C. 11
  • D. 12

Answer: Option C


67. 4.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?

  • A. 30
  • B. 40
  • C. 58
  • D. 60

Answer: Option B


68. If 9x-3y=12 and 3x-5y=7 then 6x-2y = ?

  • A. -5
  • B. 4
  • C. 2
  • D. 8

Answer: Option D


69. There are 5 red shoes, 4 green shoes. If one draw randomly a shoe what is the probability of getting a red shoe?

Answer: 5c1/ 9c1



70. What is the selling price of a car? If the cost of the car is Rs.60 and a profit of 10% over the selling price is earned?

Answer: Rs 66/-



71. The price of a product is reduced by 30%. By what percentage should it be increased to make it 100%?

Answer: 42.857%


72. There is a square of side 6cm . A circle is inscribed inside the square. Find the ratio of the area of circle to square.

Answer: 11/14


73. WThere are two candles of equal lengths and of different thicknesses. The thicker one lasts six hours. The thinner is 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?

Answer: 3 hours


74. The cost of an item is Rs 12.60. If the profit is 10% over the selling price what is the selling price?

Answer: Rs 13.86/-


75. There are 6 red shoes & 4 green shoes . If two of red shoes are drawn what is the probability of getting red shoes?

Answer: 6c2/10c2


76. A worker is paid Rs.20/- for a full day’s work. He works 1,1/3,2/3,1/8.3/4 days a week. What is the total amount paid for that worker?

Answer: 57.50


77. If the value of x lies between 0 & 1 which of the following is the largest?

  • A. x
  • B. x2
  • C. ?x
  • D. 1/x

Answer: Option D


78. 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?

Answer: 48kmph


79. A school has 30% students from Maharashtra .Out of these 20% are Bombey students. Find the total percentage of Bombay?

Answer: 6%



80. TAn equilateral triangle of sides 3 inch each is given. How many equilateral triangles of side 1 inch can be formed from it?

Answer: 9



81. If A/B = 3/5, then 15A = ?

Answer: 9B


82. Each side of a rectangle is increased by 100%. By what percentage does the area increase?

Answer: 300%


83. 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?

Answer: 315 feet


84. Perimeter of front wheel =30, back wheel = 20. If front wheel revolves 240 times. How many revolutions will the back wheel take?

  • A. Fearful to say they don’t know the answer
  • B. Not Ready and not willing to search for answers on their own
  • C. Ready and willing to search for answers on their own
  • D. All of these
  • E. None of these

Answer: 360 times


85. 20% of a 6 litre solution and 60% of 4 litre solution are mixed. What percentage of the mixture of the solution?

Answer: 36%


86. City A's population is 68000, decreasing at a rate of 80 people per year. City B having a population of 42000 is increasing at a rate of 120 people per year. In how many years both the cities will have the same population?

Answer: 130 years


87. Two 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?

Answer: 3/2 hours


88. A 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?

Answer: 9


89. Which of the following fractions is less than 1/3?

  • A. 22/62
  • B. 15/46
  • C. 2/3
  • D. 1

Answer: Option B



90. There are two circles, one circle is inscribed and another circle is circumscribed over a square. What is the ratio of the area of the inner to outer circle?

Answer: 1: 2



91. Three types of tea a,b,c costs Rs. 95/kg,100/kg and70/kg respectively. How many kgs of each should be blended to produce 100 kg of mixture worth Rs.90/kg, given that the quantities of band c are equal?

  • A. 70,15,15
  • B. 50,25,25
  • C. 60,20,20
  • D. 40,30,30

Answer: Option B


92. In a class, except 18 all are above 50 years.15 are below 50 years of age. How many people are there?

  • A. 30
  • B. 33
  • C. 36
  • D. None of these

Answer: Option D


93. If a boat is moving in upstream with a velocity of 14 km/hr and goes downstream with a velocity of 40 km/hr, then what is the speed of the stream?

  • A. 13 km/hr
  • B. 26 km/hr
  • C. 34 km/hr
  • D. None of these

Answer: Option A


94. Find the value of ( 0.75 * 0.75 * 0.75 - 0.001 ) / ( 0.75 * 0.75 - 0.075 + 0.01)

  • A. 0.845
  • B. 1.908
  • C. 2.312
  • D. 0.001

Answer: Option A


95. 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?

  • A. 3 days
  • B. 8/9 days
  • C. 4 days
  • D. can't say

Answer: Option B


96. 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 traveled?

  • A. 210 kms
  • B. 30 kms
  • C. 20 kms
  • D. None of these

Answer: Option B


97. 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?

  • A. 40%
  • B. 55%
  • C. 35%
  • D. 30%

Answer: Option D


98. 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?

  • A. 110 men
  • B. 130 men
  • C. 100 men
  • D. None of the these

Answer: Option A


99. In simple interest what sum amounts of Rs.1120/- in 4 years and Rs.1200/- in 5 years?

  • A. Rs. 500
  • B. Rs. 600
  • C. Rs. 800
  • D. Rs. 900

Answer: Option C



100. If a sum of money compound annually amounts of thrice itself in 3 years. In how many years will it become 9 times itself?

  • A. 6
  • B. 8
  • C. 10
  • D. 12

Answer: Option A



Management Jobs

IT Jobs

Non IT Jobs

[contact-form-7 id="409718" title="Registry Form"]
[contact-form-7 id="409798" title="Registry Form Experience"]