Sei sulla pagina 1di 9

CENTRE FOR DEVELOPMENT OF ADVANCED COMPUTING

DAC CCAT GUESS PAPER for Jun-Jul 2013


Duration: 120 min
Each question shall carry one mark. There will be a negative 11. Size of char constant is
marking i.e., quarter (0.25) mark will be deducted for every 1. 1
wrong answer. 2. 4
1. Who invented Analytical Engine? 3. 2
1. John von Neumann 4. 0
2. Charles Babbage 12. Data stored in computer memory is in
3. Both 1 and 2 1. binary
4. None of the Above 2. character
2. In which generation Transistors came in to picture? 3. decimal
1. First 4. hexadecimal
2. Second 13. Variable can be a
3. Third 1. Const
4. Fourth 2. Volatile
3. Choose the correct statement: 3. Both 1 & 2
If X is a Boolean variable then 4. None of the above
1. 0 + X =X 14. Which of the following is invalid identifier?
2. 1+X=X 1. scanf
3. X + X’= X 2. 12xyz
4. X + X’ = 0 3. printf
4. Which of the following system software resides in 4. xyz12
main memory always? 15. Which of the following is type of scope?
1. Text editor 1. Function
2. Assembler 2. Prototype
3. Linker 3. Block
4. Loader 4. All of the above
5. The name for the way that computers manipulate 16. To use printf you need a _________ file
data into information is called__________. 1. studio.h
1. Programming 2. stdio.h
2. Processing 3. stdio.c
3. Storing 4. conio.h
4. Organizing 17. Global variables that are declared static are _______.
6. Data coded in the form of small lines are known 1. Internal to the current translation unit
as__________. 2. Visible to all translation units
1. Data Code 3. Allocated on the heap
2. Bar Code 4. Read-only subsequent to initialization
3. Magnetic Code 18. What is the function of getche()?
4. All of the above 1. Gets character from user & show output on
7. Which replacement policy sometimes leads to the screen
more page faults when the size of the memory is 2. Shows the output to user
increased? 3. Get character from user and echoes to the screen
1. First In First Out 4. Get character from user and does not echo
2. Least Recently Used to screen
3. No such policy exists 19. In a C program, the first statement that will be executed is:
4. None of the above 1. The first executable statement of the program.
8. A railway track is an example of__________. 2. The first executable statement of the end function.
1. Simplex 3. The first executable statement after the
2. Half-duplex comment /*start here*/
3. Full-duplex 4. The first executable statement of the main()
4. All of the above function.
9. Which is from the following device capable of 20. A value that is acted upon by an operator is known
changing signals from one form to another? as __________
1. Transducer 1. Operand
2. Transformer 2. Operator
3. Amplifier 3. Expression
4. None of the above 4. None of the above
10. A set of computers interconnected together to from 21. Which of the following statement is true?
a client-server computing environment is 1. The else statement is executed when the
collectively known as___________. condition is true.
1. Client server Computing 2. The else statement cannot be another two-
2. Distributed Systems way selection.
3. Both 1 and 2 3. The else statement can be a null statement.
4. None of the above 4. None of the above
DAC CCAT GUESS PAPER Jun-Jul 2013 Page 1 of 1
ACTS, Head Quarters, Pune
22. Which of the following statement is true? case 3 : printf (" %d ",++n);
a. An expression is a sequence of operands and operators. case 4 : printf (" %d ",n++);
b. Expressions always reduce to a single value. break;
1. Only a }
2. Only b }
3. Both a and b 1. 1
4. None of the above 2. 2
23. What is the output of following program? 3. 11355
#include<stdio.h> 4. 13355
void main() 29. What will be the output of following program?
{ #include<stdio.h>
int c=- -2; void main()
printf("c=%d",++c); {
} char n='+';
1. 2 int a=10,b=20;
2. 3 switch (n)
3. Compile time error {
4. Run time error case '-':
24. What will be the output of following program? printf ("%d",b-a);
#include<stdio.h> break;
void main() case '+':
{ printf ("%d",b+a);
int a=-2, b=1, c=0, d; break;
d=++a||++b||- -c; default : printf("A=%d B=%d",a,b);
printf("%d %d",c,d); }}
} 1. 10
1. 00 2. 30
2. 11 3. A=10 B=20
3. 01 4. None of these
4. 10 30. Which of the following is/are true about 'While Loop’?
25. What will be the output of following program? A. It is entry controlled
#include<stdio.h> B. Code in loop body executed until loop condition is false
void main() C. Increment Variable is must
{ 1. A
unsigned char i=0x32; 2. A&B
printf("%d",i>>1 ); 3. B&C
} 4. None of these
1. 25 31. What will be the output of following program?
2. 50 #include<stdio.h>
3. 75 void main()
4. 100 {
26. Which of the following having lowest precedence? int i=0;
1. ++ while(i<10 && i> 0 && 1)
2. ! {
3. - printf(" %d",++i);
4. Comma operator i++;
27. What would be output of the following program? }
#include <stdio.h> }
void main() 1. 02468
{ 2. 13579
printf("%p",main); 3. Error
} 4. None of these
1. Compile time error 32. Predict error from the following?
2. Runtime error #include<stdio.h>
3. Some address will be printed void main()
4. None of the above {
28. What will be the output of following program? do
#include<stdio.h> {
void main() printf("C-DAC");
{ }while(0)
int n=0; printf("ACTS");
switch (n++) }
{ 1. Undefined symbol '0'
case 0 : printf (" %d ",n++); 2. Possibly incorrect assignment
case 1 : printf (" %d ",++n); 3. Declaration syntax error
case 2 : printf (" %d ",n++); 4. None of these
DAC CCAT GUESS PAPER Jun-Jul 2013 Page 2 of 2
ACTS, Head Quarters, Pune
33. What will be the output of following program? 1. 01
#include<stdio.h> 2. 00
void main() 3. Error
{ 4. None of these
int i; 37. What will be the output of following program?
for(i=0;i<5;++i) #include<stdio.h>
printf(" %d",i); int out(int *a)
} {
1. 01234 int i=*a;
2. 12345 return i++;
3. Error }
4. None of these void main()
34. What will be the output of following program? {
#include<stdio.h> int i=2;
void out(int flag) i= out(&i)+out(&i);
{ printf(" %d",i);
printf("%d",flag); }
} 1. 4
void main() 2. 5
{ 3. 6
char flag='1'; 4. None of these
if(!(flag++)) 38. Which of the following is an syntax of 2-
{ dimensional array?
out(flag); 1. array anarray[20][20];
} 2. int array[20, 20];
else 3. char array[20];
{ 4. int anarray[20][20];
out(flag); 39. What is the difference between the following ?
} char arr1[] = {'a', 'b', 'c'};
} and
1. 2 char *arr2 = "abc";
2. 50 1. printf("%s", (char *) arr2); will cause a
3. Error memory violation.
4. None of these 2. arr2 has a trailing ''\\\\0'' character than arr1
35. What will be the output of following program? does not.
#include<stdio.h> 3. They are the same.
void call(int i ,int j); 4. None of the above
int j=0; 40. What will be the output of the following program?
void main() #include<stdio.h>
{ void main()
call(1,2); {
} char a[]="CDAC";
char *b="CDAC";
void call(int j,int i) printf("%d %d",sizeof(*a), sizeof(*b));
{ }
printf("%d %d",j++,i++); 1. 11
} 2. 54
1. 12 3. CDAC CDAC
2. 21 4. Address of a and b
3. 32 41. What does the following declaration means?
4. 23 int *ptr[5]
36. What will be the output of following program? 1. ptr is pointer to an array of 5 integers.
#include<stdio.h> 2. ptr is pointer to an array of 4 integers
void call(char); 3. ptr is an array of 5 pointer to integers.
int i=0; 4. ptr is an array of 4 pointer to integers.
void main() 42. Which of the following is the proper declaration of a pointer?
{ 1. int x
int i=0; 2. int &x
call(i); 3. ptr x
i++; 4. int *x
call(i); 43. Can arrays and pointers always be used
} interchangeably in C language?
void call(char i) 1. True
{ 2. False
printf(" %d",i++); 3. Can’t say
} 4. None of the above
DAC CCAT GUESS PAPER Jun-Jul 2013 Page 3 of 3
Edited by Foxit Reader
ACTS, Head Quarters, Pune Copyright(C) by Foxit Corporation,2005-2009
44. What is the output of the below C program? For 54.
Evaluation
enum isOnly.
a user defined data type similar to:
#include <stdio.h> 1. structure
void main() 2. class
{ 3. Both 1 & 2
static float table [2][3]={{1.1,1.2,1.3},{2.1,2.2,2.3}}; 4. None of the above.
printf(“%f”, *(*(table + 1) + 1)); 55. Libraries that allow you to use several well-known
getch(); kinds of data structures without having to program
} them in C++ are known as:
1. 2.1 1. Standard Template Library
2. 1.2 2. Template Library
3. 2.2 3. Simple Library Template
4. None of the above 4. Template Library Functions.
45. Which one of the following functions returns the string 56. char *const ptr=”CDAC”; Which of the following hold true?
representation from a pointer to a time_t value? 1. Const pointer to char
1. Localtime 2. Pointer to const char
2. Gmtime 3. Pointer to char string
3. Strtime 4. Invalid declaration.
4. Ctime 57. Suppose cursor points to a node in a linked list (using
46. Which of the following accesses a variable in the node definition with member functions called data
structure b? and link). What Boolean expression will be true when
1. b<-var; cursor points to the tail node of the list?
2. b.var; 1. (cursor->data == NULL)
3. b-var; 2. (cursor == NULL)
4. b>>var; 3. (link ->data( ) == 0.0)
47. struct is an _________. 4. (data -> cursor ( ) == NULL)
1. Identifer 58. What kind of list is best to answer questions such
2. Constant as "What is the item at position n?"
3. User defined variable 1. Lists implemented with an array
4. keyword 2. Simple lists
48. What are the difference between a queue and a stack? 3. Lists implemented with queue
1. Queues require linked lists, but stacks do not. 4. None of the above
2. Stacks require linked lists, but queues do not. 59. In which data structure, elements can be added or
3. Queues use two ends of the structure; removed at both end and middle?
stacks use only one. 1. Stack
4. Stacks use two ends of the structure; 2. Queue
queues use only one. 3. Linked list
49. Which of the following stack operations would 4. Array
result in stack underflow? 60. The node of doubly linked list must have
1. Peek 1. One data and two address fields
2. Pop 2. One data and one address fields
3. Push 3. Two data and two address fields
4. Two or more of the above answers. 4. One data and three address fields
50. Which is the best data structure to check whether an 61. What is true about Circular list?
arithmetic expression has balanced parenthesis or not? 1. The list is infinite
1. Queue 2. The list is finite and each node has a successor
2. Stack 3. Both 1 and 2
3. Tree 4. None of the above
4. Link list 62. How to remove a node from linked list?
51. Which of the following finds if the string A contains 1. By linking its successor to its predecessor.
"abc"? 2. By linking its predecessor to its successor.
1. printf("%sabc\\n", A); 3. By deleting all the nodes and again adding it.
2. strcmp(A, "abc"); 4. None of the above.
3. strstr(A, "abc"); 63. If the queue is implemented using linked list, where
4. strchr(A, "abc"); does the enqueue operation take place?
52. Which of following is the correct definition for a 1. At the Head
string variable? 2. At the Tail
1. string mystr; 3. After all other entries those are greater than
2. string mystr[20]; the new entry.
3. char mystr; 4. None of the above.
4. char mystr[20]; 64. Choose the correct spelling of word and fill the
53. What is a proper method of opening a file for sentence with correct meaning.
writing as binary file? The ______ was bleating and looking for her lamb.
1. FILE *f = fwrite( "test.bin", "b" ); 1. You
2. FILE *f = fopenb( "test.bin", "w" ); 2. Yew
3. FILE *f = fopen( "test.bin", "wb" ); 3. Ewe
4. FILE *f = fwriteb( "test.bin" ); 4. Awe
DAC CCAT GUESS PAPER Jun-Jul 2013 Page 4 of 4
ACTS, Head Quarters, Pune
65. Which word is the odd one? 76. The following questions consist of two words. Each
1. Small has a certain relation with the other, followed by
2. Beautiful four lettered pair of words. Select the pair that has
3. Weight the same relation as the original pair of words.
4. Slim Doubt: Faith
66. Which is the word Synonyms to ‘Augment’? 1. Atheist: Religious
1. Selfish 2. Skeptic: pious
2. Wise 3. Cerebral: Dull
3. Increase 4. Impolite: Courteous
4. Appropriate 77. Choose the word for each blank that best fits the
67. Which is the word Synonyms to ‘Benign’? meaning of the sentence as a whole.
1. Approval We lost confidence in him because he never
2. Kind ________ the grandiose promises he had made.
3. Shameful 1. Forgot about
4. Bored 2. Delivered on
68. Which is the word Synonyms to ‘Atrocity’? 3. Reneged on
1. Agreeable 4. Tired of
2. Friendly 78. Choose the word for each blank that best fits the
3. Shock meaning of the sentence as a whole.
4. Brutal deed To the dismay of the student body, the class
69. Which is the word Synonyms to ‘Vivacious’? president was ________ berated by the principal at
1. Shy a school assembly.
2. Lively 1. Ignominiously
3. Sad 2. Privately
4. Ghost 3. Magnanimously
70. Which is the word Synonyms to ‘Willful’? 4. Fortuitously
1. Analyze 79. Choose the best suitable antonym of the given word.
2. Determined Robust
3. Decline 1. Gratitude
4. Bias 2. Tact
71. Cockroach is related to Antennae in the same way, 3. Weak
as Man is related to__________. 4. Generosity
1. Arm 80. Choose the best suitable antonym of the given word.
2. Body Abrupt
3. Color 1. Clandestinely
4. None of the above 2. Gradual
72. Hot air is related to Balloon in the same way as 3. Simply
Sails is related to______. 4. Fashionably
1. Motorboat 81. Find out the missing number in the sequence:
2. Aero plane 1,3,3,6,7,9,? , 12,21.
3. Ship 1. 10
4. None of the above 2. 11
73. In the following questions, a group of three inter- 3. 12
related words is given. Choose a word from the 4. 13
given alternatives that belongs to the same group. 82. If BURNER is coded as CASOIS then how will
Hair: Fur: Feather:? ALIMENT be coded?
1. Leather 1. EMONIOU
2. Paper 2. BKJLFMU
3. Grass 3. EROSITU
4. Cloth 4. EKOLIMS
74. He told me to keep his secret __________. 83. If FRAGRANCE is written as SBHSBODFG, how
1. To myself can IMPOSING be written?
2. In myself 1. NQPTJOHJ
3. Amongst us 2. NQPTJHOJ
4. In between us 3. NQTPJOHH
75. The following questions consist of two words. Each 4. None of the above
has a certain relation with the other, followed by 84. In a family of 8 members A, B, C, D, E, F, G and H
four lettered pair of words. Select the pair that has A is the father of C But C is not his son. E is the
the same relation as the original pair of words daughter of C. F is the spouse of A. B is brother of
Food: Gourmet C. D is the son of B. G is the spouse of B. H is the
1. Sports: Fans father of G.
2. Craft: Skill Who is son of F?
3. Art: Connoisseur 1. C
4. None of the above 2. B
3. A
4. G
DAC CCAT GUESS PAPER Jun-Jul 2013 Page 5 of 5
ACTS, Head Quarters, Pune
85. Six persons A, B, C, D, E and F are sitting in two 3. 16+5-10*4/3=9
rows, three in each. 4. 16-5*10/4+3=12
E is not at the end of any row. D is second to the 94. If A+D > C+D, C+D=2B and B+E > C+D, it
left of F. C the neighbor of E is sitting diagonally necessarily follows that
opposite to D. B is the neighbor of F 1. A+B > 2D
Which of the following are in same row? 2. D+B > C+E
1. A and E 3. A+D > B+E
2. E and D 4. A+D > B+C
3. C and B 95. Which of the following programming technique
4. C and D focuses on algorithm?
86. In training for a competition, you find that swimming 1. Procedural language
downstream (with the Flow) in a river, you can swim 2 2. Object oriented language
miles in 40 minutes, & upstream (against the Flow), 3. Object based language
you can swim 2 miles in 60 minutes. 4. Structural language
How long would it take you to swim a mile in still water? 96. What are the various ways in which an algorithm
1. 25 Minutes can be represented?
2. 50 Minutes 1. programs
3. 24 Minutes 2. flowcharts
4. None of these 3. decision tables
87. A watch reads 3.15. If the minute hand points 4. All of the above
east, in which direction will the hour hand points. 97. Pseudocode is used for __________.
1. East 1. Writing code
2. North-east 2. Planning program logic
3. South-east 3. Coding the program
4. South 4. None of above
88. If A is to the south of B and C is to the east of B in 98. Which is the good algorithm for sorting data?
what direction is A with respect to C? 1. Quick sort
1. North-east 2. Insertion sort
2. North-west 3. Bubble sort
3. South-east 4. None of the above
4. South- west 99. Decision table is used for
89. If first letter is interchanged by second, third by 1. Taking decision in software
fourth, fifth by sixth and so on in the word 2. Defining complex program logic
HABILITATE then which will be the 8th letter from 3. Designing algorithm
your left in the new word? 4. Both Designing algorithm and flowchart
1. L 100. In flowchart, square symbol is used for
2. E 1. Processing
3. T 2. Decision
4. A 3. Annotation
90. How many such letter-pairs are there in the word 4. Auxilliary operation
MONKEY having same no. of letters left between 101. Decision table are useful to
them as they have in the series? 1. Make decisions when computer is not
1. 3 available.
2. 4 2. Make decisions if there are a large number
3. 1 of different branches within a program.
4. 5 3. Make decision in software.
91. How many 3's are there in the following number 4. None of the above.
series, which are preceded by an odd number but 102. Which control structures are used by Iteration
not followed by an even number? logic?
3425315213673182785391345235435 1. IF…THEN, CASE
1. One 2. DO…WHILE, REPEAT…UNTIL
2. Two 3. IF…THEN, IF…THEN…ELSE, CASE
3. Three 4. All of the above
4. More than four 103. Which language can be understood by computer
92. If the numbers, which are divisible by 4, from 4 to without using translation program?
84, are written in reverse order then which number 1. Assembly language
will be at the 7th place? 2. Machine language
1. 60 3. High-level language
2. 28 4. English language
3. 20 104. What is limitation of machine language that it is
4. 32 rarely used today?
93. If * means addition, - means division, / means 1. Difficult to understand
subtraction and +_ means multiplication then which 2. Time consuming
of the following equation is correct. 3. Both 1 and 2
1. 16*5/10+4-3 =19 4. No limitation
2. 16+5/10*4-3=9
DAC CCAT GUESS PAPER Jun-Jul 2013 Page 6 of 6
ACTS, Head Quarters, Pune
105. Assembly language program get converted into its 116. Which one of the following is the first fully Object-
equivalent machine language by oriented language?
1. Assembler 1. Simula.
2. Linker 2. Java.
3. Loader 3. C++.
4. All of above 4. Javascript.
106. FORTRAN stands for _________ 117. Programming without inheritance is
1. For translation 1. Programming with abstract data types
2. For translator 2. Not object oriented
3. Formula translation 3. Object oriented
4. Four translations 4. None of the above
107. Which is not a scripting language 118. Which one of the following is not an object-oriented
1. Perl language?
2. Javascript 1. Java.
3. Java 2. Eiffel.
4. All of the above 3. Modula-2.
108. The version of software released to selected users 4. JavaScript.
before commercial release is known as _______ 119. To be accessed from a member function of a
1. Alpha derived class, data in the base class must be
2. Beta _________.
3. Gamma 1. public
4. Theta 2. default
109. At which point the debugger stops during program 3. protected
execution and awaits further command 4. public or protected
1. Check point 120. What do you mean by passive objects?
2. Break point 1. Passive objects do not take part in the
3. Watch point interaction between objects.
4. None of the above 2. Passive objects are one, which passively
110. Which of the following information is contained in waits for the message to be processed. It
the system manual? waits for another object that requires its
1. Special checks and security measures services. In simple words it can be referred
2. List of error conditions as server.
3. Loading and unloading procedures 3. Both 1 and 2
4. None of the above 4. None of the above
111. Collection of related information is called a _______. 121. What is non-persistent object?
1. Process 1. A non-persistent object is said to be
2. Thread transient or ephemeral. By default objects
3. File are considered as non-persistent.
4. Hard disk 2. It has no existence.
112. Attributes of a file does not include _________. 3. Both of 1 and 2
1. Date and time of its creation 4. None of the above.
2. Date and time of last access 122. What is a Transient Object?
3. Date and time of first update 1. It cannot be serialized.
4. Date and time of last update 2. It temporary in nature.
113. Which of the following disk space allocation 3. Both 1 & 2.
methods can be used only for sequential-access 4. None of the above
files? 123. Demerits of the friend function include ________
1. Contiguous allocation 1. Objects according to the size of friend
2. Linked allocation Members will occupy maximum size of the
3. Indexed allocation memory.
4. None of the above 2. We can’t do any run time polymorphism
114. Which method is used to reduce the speed concepts in those members.
mismatch between slow I/O devices and 3. Both of the 1 and 2
comparatively faster CPU? 4. None of the above.
1. Paging 124. What is namespace?
2. Spooling 1. A namespace is a collection of classes
3. Swapping which logically belong together
4. Cryptography 2. Provides different names
115. Which of the following is not a part of OOPs? 3. Both of the above
1. Multitasking 4. None of the above
2. Information hiding 125. Which is/are the class member operators:
3. Polymorphism 1. Dot operator (.)
4. Type checking 2. Comma operator (,)
3. Dot with asterisk (. *)
4. All of the above.

DAC CCAT GUESS PAPER Jun-Jul 2013 Page 7 of 7


ACTS, Head Quarters, Pune
126. Runtime polymorphism is achieved only when a 137. How many positive integer solutions does the
virtual function is accessed through a_________ to equation 2x+3y = 100 have?
the base class. 1. 50
1. dot operator. 2. 33
2. this operator 3. 20
3. pointer. 4. 16
4. None of the above. 138. A profit of Rs 450 is divided between two partners,
127. A function declared in a base class that has no one of whom has contributed Rs 1200 for 5 months
definition is a: and the other Rs 750 for 4 months. How much
1. Pure Virtual function amount the second partner received?
2. Virtual function 1. Rs 425
3. Some inbuilt function 2. Rs 300
4. None of the above. 3. Rs 150
128. Which operator cannot be overloaded through 4. None of the above
friend functions? 139. A positive number is by mistake divided by 6
1. *= instead of being multiplied by 6. What is the %
2. == error on the basis of correct answer?
3. = 1. 93
4. += 2. 97
129. Member functions that return the value of an 3. 83
attribute of an object are called: 4. 92
1. Destructors 140. How many 5 digit numbers can be formed from the
2. Inspectors digits 2,3,4,7,0 such that no digits is to be used
3. Facilitators more than once?
4. Mutators 1. 96
130. Abstract classes are mainly used with 2. 720
1. Inheritance 3. 5^5
2. Operator overloading 4. 120
3. Serialization 141. In how many permutations of the lettters of the
4. None of the above. word ‘PARALLEL’, all the L do not come together?
131. Abstract class cannot be instantiated but references 1. 360
but pointers of the abstract class can exist. 2. 3000
1. True 3. 3360
2. False 4. None of the above
3. Depends on compiler 142. If two pipes function simultaneously, the resevoir
4. Can’t say. will be filled in 12 hours. One pipe fills the resevoir
132. Data duplication in diamond inheritance is avoided in 10 hours faster than the other. How many hours
by making the base class _________. does it take the second pipe to fill the resevoir?
1. pure virtual 1. 20 hours
2. virtual 2. 10 hours
3. friend 3. 40 hours
4. generic 4. 30 hours
133. Reusability is done through inheritance that supports 143. A tap can fill a tank in 6 hours. After half the tank is
1. ‘is a kind’ of relationship filled, three more similar taps are opened. What is
2. ‘is a part’ of relationship the total time taken to fill the tank completely?
3. have relationship. 1. 3 hours 30 minutes
4. None of the above. 2. 3 hours 15 minutes
134. What is the day on 15 August 1947? 3. 3 hours 20 minutes
1. Tuesday 4. 3 hours 45 minutes
2. Monday 144. In a game three coins are tossed. What will be the
3. Friday probability of getting neither three Heads nor three
4. Sunday Tails?
135. The difference between the compound interest and the 1. 3/4
simple interest accured on an amount of Rs 18000 in 2 2. 3/5
years is Rs.405. What was the rate of interest? 3. 1/2
1. 25 4. 2/3
2. 10 145. A bag contains 4 green and 5 yellow balls. If three
3. 15 balls are chosen from the bag randomly, what is
4. 16 the probability of getting all green balls?
136. Six bells commence tolling together and toll at 1. 3/23
intervals 2,4,6,8,10 and 12 seconds respectively. 2. 1/21
In 30 minutes how many times they toll together? 3. 2/27
1. 4 4. None of the above
2. 10
3. 12
4. 16
DAC CCAT GUESS PAPER Jun-Jul 2013 Page 8 of 8
ACTS, Head Quarters, Pune
146. A shoe was sold at a profit of 10%. If its cost price
was 5% less and it was sold for Rs. 7 more, the
gain would have been 20%. Find the cost price of
the shoe?
1. Rs. 225
2. Rs. 175
3. Rs. 345
4. None of the above
147. Mohan calculates percentage profit on the buying
price and Ram calculates its percentage profit on
the selling price. What will be their difference in
profit if both claims a profit of 20% on goods sold
for Rs. 3000?
1. Rs. 150
2. Rs. 250
3. Rs. 100
4. Rs. 300
148. If 15 % of A = 20 % of B, then A: B is
1. 4: 3
2. 3:9
3. 7:14
4. 6:18
149. Suresh took loan of some amount that becomes
Rs.2520 in 2 years and Rs.2700 in 5 years on
simple interest. Find out the interest rate?
1. 3¼%
2. 2.5%
3. 1.5%
4. 2.675%
150. The difference between times taken by Ram and
Shyam to travel a distance of 350 km by car is 2
hours 20 minutes. If the difference between their
speed is 5 km/h, Find the slower speed.
1. 45 km/h
2. 35 km/h
3. 25 km/h
4. 55 km/h

DAC CET Page 9 of 9

Potrebbero piacerti anche