My Report (&Account)

Deloitte Mock Test - Mar-Apr 2025


Correct Answer: 2 points | Wrong: -1 point
Grades: A* (100% score) | A (80%-99%) | B (60%-80%) | C (40%-60%) | D (0%-40%)

Quantitative Aptitude (Ch1)

1. A chewing gum produced 58335 packs of gum. The company produced the same number of packs of each flavor of gum. How many different flavors of gum could the company have produced?

Question 1 of 50

Quantitative Aptitude (Ch2)

2. Find the HCF of (x-1)6 and (x6+1).

Question 2 of 50

Quantitative Aptitude (Ch3)

3. Which of the following is the correct value of (y+a)(y-b)?

Question 3 of 50

Quantitative Aptitude (Ch4)

4. A number if doubled, then tripled and this process is repeated twice. What is the percentage change?

Question 4 of 50

Quantitative Aptitude (Ch5)

5. The price of an article is marked 20% more than the cost price. If the discount is 20% find the profit or loss percent.

Question 5 of 50

Quantitative Aptitude (Ch6)

6. The distance between two cities is 50 km. If a man covers 40% of the distance in 60 minutes and the rest of the distance in 45 minutes, find his average speed throughout the journey.

Question 6 of 50

Quantitative Aptitude (Ch7)

7. A man invested x rupees for 23 years at a rate of 0.9% simple interest. If the amount he received after 23 years was 30,41,640 rupees, find the amount he invested.

Question 7 of 50

Quantitative Aptitude (Ch8)

8. What will be the area (in sq. m) of a square field having diagonal as 20 m?

Question 8 of 50

Quantitative Aptitude (Ch9)

9. Two similar cones have equal volume with the ratio of their radii as 1:2. What will be the ratio of their heights?

Question 9 of 50

Quantitative Aptitude (Ch10)

10. In which of the following cases angle of depression is formed?

Question 10 of 50

Logical Reasoning (Ch1)

11. Find the odd one out.

Question 11 of 50

Logical Reasoning (Ch2)

12. In a certain code “DELHI” is written as “92675” and “BOMBAY” is written as “431408”. How can “MADRAS” be written in that code?

Question 12 of 50

Logical Reasoning (Ch3)

13. S and K are brothers. W is mother of S. M is brother of T. If T is son of K, then how is S related to T?

Question 13 of 50

Logical Reasoning (Ch4)

14. Fair : Unbiased :: Confuse : ?

Question 14 of 50

Logical Reasoning (Ch5)

15. Which of the following figures shows relation among Bag, Book and Banana?

Question 15 of 50

Logical Reasoning (Ch6)

16. A cage had 15 birds. All but seven manages to escape. How many birds actually escape?

Question 16 of 50

Logical Reasoning (Ch7)

17. Identify the figure which satisfies the same condition of placement of dots as in given figure.
Dot Situation Analysis - Set 6 - Q7

Question 17 of 50

Logical Reasoning (Ch8)

18. Find the correct alternative which will replace the question mark?
Missing Figures - Set 7 - Q9

Question 18 of 50

Logical Reasoning (Ch9)

19. Choose the figure which is different from the rest?
Figure Classification - Set 7 - Q9

Question 19 of 50

Logical Reasoning (Ch10)

20. Identify the figure which completes the pattern.

Question 20 of 50

English Grammar (Ch1)

21. Identify the Relative Pronoun in the given sentence.

She is the same professional that she has been.

Question 21 of 50

English Grammar (Ch2)

22. Which of the following sentences has the verb in Present Perfect Continuous tense?

Question 22 of 50

English Grammar (Ch3)

23. Choose the correct option.

I met him ____ last winter.

Question 23 of 50

English Grammar (Ch4)

24. Find out the preposition in the sentence.

The Health Minister resigned from his post.

Question 24 of 50

English Grammar (Ch5)

25. Select the coordinating conjunction among the options.

Question 25 of 50

English Grammar (Ch6)

26. Rewrite the following sentence having present participle with gerund.

They are laughing so loudly.

Question 26 of 50

English Grammar (Ch7)

27. The correct transformation from assertive to interrogative among given sentences is _____
This is the greatest calamity one has ever seen.

Question 27 of 50

English Grammar (Ch8)

28. Combine the following set of sentences into one simple sentence.
She comes. Then I will go.

Question 28 of 50

English Grammar (Ch9)

29. What is the meaning of the sentence ‘She made light of her mother’s warnings’?

Question 29 of 50

English Grammar (Ch10)

30. Select the structure of the compound word ‘outspoken’.

Question 30 of 50

Professional Communication (Ch3)

31. The full stop is used at the end of an indirect question.

Question 31 of 50

Professional Communication (Ch5)

32. In the following statement, which of these are in agreement?
They nominated him chairman.

Question 32 of 50

Computer Fundamental (Ch3)

33. The complement term for X'.Y'.Z + X.Y will be _____________

Question 33 of 50

Computer Fundamental (Ch5)

34. Programming based on stepwise refinement process.

Question 34 of 50

Computer Fundamental (Ch7)

35. Which of the following is not a part of the usage information?

Question 35 of 50

C Programming (Ch3)

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

    #include <stdio.h>
    void m(int k)
    {
        printf("hi");
    }
    void m(double k)
    {
        printf("hello");
    }
    void main()
    {
        m(3);
    } 

Question 36 of 50

C Programming (Ch5)

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

    #include <stdio.h>
    int main()
    {
        char a[2][6] = {"hello", "hi"};
        printf("%d", sizeof(a));
        return 0;
    } 

Question 37 of 50

C Programming (Ch7)

38. What error will be generated on using incorrect specifier for the datatype being read?

Question 38 of 50

C++ Programming (Ch3)

39. What will be the output of the following C++ code?

    #include <iostream>
    using namespace std;
    int main ()
    {
        cout << "Value of __LINE__ : " << __LINE__ << endl;
        cout << "Value of __FILE__ : " << __FILE__ << endl;
        cout << "Value of __DATE__ : " << __DATE__ << endl;
        cout << "Value of __TIME__ : " << __TIME__ << endl;
        return 0;
    }

Question 39 of 50

C++ Programming (Ch5)

40. How many types of specialization are there in c++?

Question 40 of 50

C++ Programming (Ch7)

41. What do container adapter provide to interface?

Question 41 of 50

Java Programming (Ch3)

42. What is the value returned by function compareTo() if the invoking string is greater than the string compared?

Question 42 of 50

Java Programming (Ch5)

43. Which of these methods returns the class of an object?

Question 43 of 50

Java Programming (Ch7)

44. What will be the output of the following Java code?

 
    class newthread implements Runnable
    {
	Thread t;
	newthread()
        {
	    t1 = new Thread(this,"Thread_1");
	    t2 = new Thread(this,"Thread_2");
	    t1.start();
	    t2.start();
	}
	public void run()
        {
	    t2.setPriority(Thread.MAX_PRIORITY);	
	    System.out.print(t1.equals(t2));
        }    
    }
    class multithreaded_programing
    {
        public static void main(String args[])
        {
            new newthread();        
        }
    }

Question 44 of 50

Python Programming (Ch3)

45. What will be the output of the following Python code?

class Count:
    def __init__(self, count = 0):
       self.__count = count

c1 = Count(2)
c2 = Count(2)
print(id(c1) == id(c2), end = " ")

s1 = "Good"
s2 = "Good"
print(id(s1) == id(s2))

Question 45 of 50

Python Programming (Ch5)

46. What will be the output of the following Python code?

nums = set([1,1,2,3,3,3,4,4])
print(len(nums))

Question 46 of 50

Python Programming (Ch7)

47. What will be the output of the following Python code?

l=[]
def convert(b):
    if(b==0):
        return l
    dig=b%2
    l.append(dig)
    convert(b//2)
convert(6)
l.reverse()
for i in l:
    print(i,end="")

Question 47 of 50

Data Structure (Ch3)

48. What is the order of a matrix?

Question 48 of 50

Data Structure (Ch5)

49. If binary trees are represented in arrays, what formula can be used to locate a left child, if the node has an index i?

Question 49 of 50

Data Structure (Ch7)

50. What is the depth of the root node of K-ary tree?

Question 50 of 50


 


   

Deloitte Test Series

The Deloitte Test Series offers comprehensive preparation with multiple sets that simulate the actual exam. These tests cover all key areas and are designed to improve your skills and confidence.


Deloitte Mock Test (Set 1 to 10)

Our Deloitte Mock Test comprises of 10 sets, where each set covers a specific topic (focus area) which helps you to build your skills progressively.


Mock Test (All Companies)


Frequently Asked Questions

Q1. What is the Deloitte Assessment Test?
The Deloitte Assessment Test is a practice exam that helps candidates prepare for the Deloitte recruitment process. It mirrors the real test, covering key areas like aptitude, reasoning, grammar, coding, and verbal ability. By practicing with this mock test, candidates can understand the test format, manage time better, and build confidence. Taking this mock test is an essential step for anyone aiming to succeed in the Deloitte exam.

Q2. What subjects are covered in the Deloitte Mock Test?
The Deloitte Mock Test typically includes sections like:
  • Aptitude: Includes numerical ability, logical reasoning, and data interpretation.
  • Verbal Ability: Focuses on English comprehension, grammar, and vocabulary.
  • Coding: Tests programming skills in languages like C, Java, Python, etc.
Q3. How often should I take the Deloitte Mock Tests?
It is recommended to take the mock tests regularly, starting well in advance of your exam. Practicing consistently helps you identify your strengths and areas for improvement, allowing you to refine your skills over time.

Q4. Are the mock tests free?
Yes, the Deloitte mock tests at Sanfoundry are free. They are designed to help you practice and prepare for the recruitment process.

Q5. How should I prepare for Deloitte Assessment test?
  • Practice mock tests to understand the pattern.
  • Revise key skills in quantitative aptitude, logical reasoning, and verbal ability.
  • Focus on coding by practicing algorithms and data structures.
  • Take multiple mock tests to improve time management and boost confidence.
Q6. Can I retake the Deloitte mock test?
Yes, you can retake the Deloitte mock test multiple times. This helps you improve your performance, refine time management, and monitor your progress as you prepare for the actual exam.
advertisement
advertisement
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.