Upload Button Icon Add office photos

Filter interviews by

CA Monk Interview Questions, Process, and Tips

Updated 27 Feb 2025

Top CA Monk Interview Questions and Answers

View all 15 questions

CA Monk Interview Experiences

Popular Designations

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is usestate and use effect?
  • Ans. 

    useState and useEffect are hooks in React for managing state and side effects in functional components.

    • useState is a hook that allows functional components to have stateful logic.

    • useEffect is a hook that allows functional components to perform side effects.

    • useState example: const [count, setCount] = useState(0);

    • useEffect example: useEffect(() => { console.log('Component mounted'); }, []);

  • Answered by AI
  • Q2. Create a todo application in front of him
  • Ans. 

    Created a todo application using React Js

    • Used React components to create the UI

    • Implemented state management for adding, deleting, and updating todos

    • Utilized local storage to persist todo data

    • Styled the application using CSS or a CSS framework

  • Answered by AI

Skills evaluated in this interview

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

General discussion on random topic

Round 2 - HR 

(1 Question)

  • Q1. Candidate profile discussion
Round 3 - One-on-one 

(1 Question)

  • Q1. The final round with CEO

Interview Preparation Tips

Interview preparation tips for other job seekers - With all due respect..the CEO won't listen to your answers properly. He was yawning while taking the interview. It was not a two way communication. He could not understand the answer in one go. He asked to explain again like two times. In the end rejected a candidate who could have been a very good return on their investment with various skills and expertise. Poor interview session . After clearing GD surpassing 10 candidates. I could have deserved a better feedback or interview sessions.

Operations Associate Interview Questions asked at other Companies

Q1. How do you get use to bulk of invoices comes at a time and how do you work on it
View answer (7)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(15 Questions)

  • Q1. What Is ReactJs?
  • Ans. 

    ReactJs is a JavaScript library for building user interfaces.

    • ReactJs is developed and maintained by Facebook.

    • It uses a component-based architecture for building reusable UI components.

    • ReactJs uses a virtual DOM for efficient rendering of components.

    • It allows developers to create interactive and dynamic web applications.

    • ReactJs can be used with other libraries and frameworks like Redux for state management.

  • Answered by AI
  • Q2. What are the Features of React JS?
  • Ans. 

    React JS is a popular JavaScript library for building user interfaces.

    • Component-based architecture

    • Virtual DOM for efficient updates

    • JSX syntax for writing components

    • One-way data binding

    • Reusable components

    • React Native for mobile app development

  • Answered by AI
  • Q3. What Is UseEffect and UseState Hooks?
  • Ans. 

    UseEffect and UseState are React hooks used for managing state and side effects in functional components.

    • UseEffect is used to perform side effects in functional components, similar to componentDidMount and componentDidUpdate in class components.

    • UseState is used to manage state in functional components, allowing for re-rendering when the state changes.

    • Example: const [count, setCount] = useState(0); useEffect(() => { doc

  • Answered by AI
  • Q4. Do you use Redux Toolkit?
  • Ans. 

    Yes, I use Redux Toolkit for state management in my frontend projects.

    • I use Redux Toolkit to simplify the process of managing state in my applications.

    • It provides a set of tools and best practices for managing state in a predictable way.

    • I find it helpful for handling complex state logic and data flow in my projects.

  • Answered by AI
  • Q5. What is the Redux Toolkit?
  • Ans. 

    Redux Toolkit is an official, opinionated, batteries-included toolset for efficient Redux development.

    • Official toolset for Redux

    • Opinionated and batteries-included

    • Helps with common Redux tasks like store setup, reducer logic, and actions

  • Answered by AI
  • Q6. What is Reducer?
  • Ans. 

    Reducer is a function in Redux that specifies how the application's state changes in response to actions.

    • Reducer functions take the current state and an action as arguments, and return the new state.

    • Reducers are pure functions, meaning they do not modify the current state, but return a new state object.

    • Redux uses reducers to manage the state of the application in a predictable way.

  • Answered by AI
  • Q7. What is createSlice?
  • Ans. 

    createSlice is a function in Redux Toolkit that simplifies the process of creating Redux slices.

    • createSlice is a function provided by Redux Toolkit for creating Redux slices with less boilerplate code.

    • It allows developers to define a slice of the Redux state, including initial state, reducers, and action creators.

    • createSlice automatically generates action types and action creators based on the defined reducers.

    • It is co...

  • Answered by AI
  • Q8. What are the props and state?
  • Ans. 

    Props and state are two important concepts in React for managing and passing data.

    • Props are read-only data passed from a parent component to a child component.

    • State is mutable data managed within a component.

    • Props are used to pass data down the component tree, while state is used for managing data within a component.

    • Props are passed as attributes in JSX, while state is managed using setState method.

    • Example: props are u...

  • Answered by AI
  • Q9. Can we send the state from the child component to the parent component?
  • Ans. 

    Yes, we can send the state from a child component to a parent component in React.

    • Use callback functions to pass data from child to parent

    • Parent component can pass a function as a prop to child component

    • Child component can call this function with the data to update parent's state

  • Answered by AI
  • Q10. What is React Query? Have you used it in any of your projects?
  • Ans. 

    React Query is a library for managing server state in React applications.

    • React Query is used for fetching, caching, synchronizing and updating server state in React applications.

    • It provides hooks like useQuery and useMutation to interact with server data.

    • React Query helps in handling loading, error and stale data states efficiently.

    • Example: const { data, isLoading, isError } = useQuery('todos', fetchTodos)

  • Answered by AI
  • Q11. Why is React Query used?
  • Ans. 

    React Query is used for managing server state and caching data in React applications.

    • Provides a powerful and flexible way to fetch, cache, and update data from APIs

    • Automatically handles caching, background refetching, and stale data management

    • Improves performance by reducing unnecessary network requests

    • Simplifies data fetching and updating logic in React components

  • Answered by AI
  • Q12. Difference between useQuery and useMutation.
  • Ans. 

    useQuery is for fetching data from the server, useMutation is for making changes to the server data.

    • useQuery is used for fetching data from the server, while useMutation is used for making changes to the server data.

    • useQuery is read-only and does not modify data on the server, while useMutation is used for updating, creating, or deleting data on the server.

    • useQuery is typically used for GET requests, while useMutation ...

  • Answered by AI
  • Q13. Do you use Material UI? If Yes then ready to answer few questions on Material UI.
  • Q14. As part of the interview, I gave you 10 to 15 minutes to make a "To-Do" Application in React Js.
  • Q15. Can we make a custom hook? How can we make custom hooks and what purpose?
  • Ans. 

    Yes, custom hooks are reusable functions in React that allow you to extract component logic into separate functions.

    • Custom hooks are created by prefixing the function name with 'use' and can be used to share logic between components.

    • They can be used to manage state, side effects, and other features in functional components.

    • For example, a custom hook can be created to fetch data from an API and handle loading and error ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for CA Monk Frontend Developer Intern interview:
  • React.Js
  • Redux
  • React Query
  • Material UI
Interview preparation tips for other job seekers - Fresher If you are seeking for FrontEnd intern position in CA Monk, Be ready to answer every questions precisely like ChatGPT and ready to make a "ToDo" Application in 10 mins.
Personally, I feel Hard Interview level for a fresher.

Skills evaluated in this interview

Top CA Monk Frontend Developer Intern Interview Questions and Answers

Q1. Can we send the state from the child component to the parent component?
View answer (1)

Frontend Developer Intern Interview Questions asked at other Companies

Q1. Last Stone Weight Problem Explanation Given a collection of stones, each having a positive integer weight, perform the following operation: On each turn, select the two heaviest stones and smash them together. Assume the stones have weights... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Assignment 

Questions answers regarding hiring

Round 3 - One-on-one 

(1 Question)

  • Q1. Why Talent Acquisition Boolean Software
  • Ans. 

    Talent Acquisition is crucial for finding and attracting the right talent to drive organizational success.

    • Talent Acquisition helps identify and hire top performers

    • It ensures a diverse and inclusive workforce

    • Effective Talent Acquisition reduces turnover and improves employee retention

    • It plays a key role in employer branding and reputation

    • Talent Acquisition helps align talent with organizational goals and culture

  • Answered by AI

Associate Talent Acquisition Interview Questions asked at other Companies

Q1. What are the job boards you habe used to source the quality candidates?
View answer (1)

CA Monk interview questions for popular designations

 Operations Associate

 (1)

 Frontend Developer Intern

 (1)

 React Js Frontend Developer

 (1)

 Associate Talent Acquisition

 (1)

Jobs at CA Monk

View all

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: The resume was as per the norms of our institute’s placement office. One should mention only relevant points in the resume because if they ask you something from the resume and you are unable to answer then they will reject you bluntly.

Round: Test
Experience: In the written test the questions asked were mainly aptitude based. The company had sent us some sample question papers before the written test. The questions in the test appeared from those sample papers only. Most of the questions were tricky – questions were framed in a very lengthy manner and the answers or the data required to solve the question was hidden in the last few lines. Many students wasted their time analysing such questions completely. Out of the 80 odd students who appeared for the test only 11 qualified for the next round.

Round: Technical Interview
Experience: In the technical interview he asked me whether I knew programming, I replied in the negative. He asked me to suggest an algorithm to a problem. The problem was based on swapping of numbers. At first I gave a very bland reply. The interviewer wasn’t convinced by my reply and gave me another opportunity to explain me the process. This time I managed to answer appropriately. The interviewer then enquired about my internship and my projects.

Round: HR Interview
Experience: The HR interview was taken by some top company official. He asked me to narrate any challenging incident in my life that I had to struggle through to emerge out of it. One important thing to note here is that your CGPA would speak for you – if you have a good CGPA half the battle is won.

College Name: IIT ROORKEE
Motivation: TCS recruits a large number of students from various colleges across the country. Knowing this fact beforehand I was not much interested in joining the company. I appeared for its process as a last resort. The company had organized a pre-placement talk. I attended the talk and before appearing for the first round I went through the brochure that was given out during the pre-placement talk.

You do not require any specific information regarding the company to ace the interviews or any questionnaire.

Interview Questionnaire 

9 Questions

  • Q1. The technical round was followed by HR interview to save time
  • Q2. What is multithreading
  • Ans. 

    Multithreading is the ability of a program to perform multiple tasks concurrently.

    • Multithreading allows for better utilization of CPU resources

    • It can improve program performance and responsiveness

    • Examples include running multiple downloads simultaneously or updating a GUI while performing a background task

    • Synchronization is important to prevent race conditions and ensure thread safety

  • Answered by AI
  • Q3. How is multithreading implemented in JAVA
  • Ans. 

    Multithreading in Java allows concurrent execution of multiple threads.

    • Java provides built-in support for multithreading through the java.lang.Thread class.

    • Threads can be created by extending the Thread class or implementing the Runnable interface.

    • The start() method is used to start a new thread, which calls the run() method.

    • Synchronization mechanisms like synchronized blocks and locks can be used to control access to ...

  • Answered by AI
  • Q4. Does Java support multiple Inheritance? If not then how an interface inherits two interfaces? Explain?
  • Ans. 

    No, Java does not support multiple inheritance. However, interfaces can inherit multiple interfaces.

    • Java does not allow a class to inherit from multiple classes.

    • This is because multiple inheritance can lead to ambiguity and conflicts.

    • However, a class can implement multiple interfaces in Java.

    • An interface can extend multiple interfaces, allowing for inheritance of multiple interfaces.

    • This is known as interface inheritan

  • Answered by AI
  • Q5. Difference between DO-WHILE & WHILE Loop
  • Ans. 

    DO-WHILE loop executes the code block at least once, while WHILE loop executes only if the condition is true.

    • DO-WHILE loop checks the condition at the end of the loop

    • WHILE loop checks the condition at the beginning of the loop

    • DO-WHILE loop executes the code block at least once

    • WHILE loop may not execute the code block at all if the condition is false

  • Answered by AI
  • Q6. Rate urself on 1-10 scale
  • Ans. 

    I would rate myself as an 8 on a scale of 1-10.

    • I have a strong understanding of software development principles and practices.

    • I have experience working with multiple programming languages and frameworks.

    • I am skilled in problem-solving and debugging.

    • I have successfully delivered complex software projects in the past.

    • I continuously strive to learn and improve my skills.

  • Answered by AI
  • Q7. How wil you dispaly data of two tables? explain?
  • Ans. 

    Display data of two tables by joining them using a common column.

    • Use SQL JOIN statement to combine data from two tables based on a common column.

    • Choose the appropriate type of JOIN based on the relationship between the tables.

    • Specify the columns to be displayed in the SELECT statement.

    • Use aliases to differentiate between columns with the same name in both tables.

    • Apply any necessary filters or sorting to the result set.

  • Answered by AI
  • Q8. Why should i hire you
  • Q9. Why TCS

Interview Preparation Tips

Round: Test
Experience: If you are taking examination of both analytical and verbal part then you will get 10 minutes for verbal part first and then 80 minutes for analytical part. Even if you solve verbal part in less than 10 minutes the remaining time will not be added to your analytical part. Analytical part consists of 30 questions need to be solved within 80 minutes. You can easily navigate the question and exam environment is same as in TCS Open See Same. You will have an on screen calculator. You can also carry a calculator in examination hall. My suggestion is to carry your own calculator because on screen calculator will only waste your time.
Tips: You can refer Quantitative Aptitude by Arun Sharma : This is the book for a CAT aspirants. Believe me if you solve LOD 1 and LOD 2, you can easily crack the analytical round. This is the sole book I used while preparing for TCS. Here you will get each concept explained beautifully. Read all the theory and solve example problems also. Do not rely on Quantitative Aptitude by R. S. AGARWAL
Duration: 90 minutes
Total Questions: 50

Round: Technical Interview
Experience: I do not remember all the questions they asked me, but a few are as above. i hope it helps :)
Tips: In technical round you will be asked simple conceptual questions. Never ever show how smart you are because interviewer is smarter than you. Keep calm and be confident. If you do not know answer of any question, simply say no and do not proceed with half answers or wrong answer because they will trap you in your own answer.  In this round you will be asked question mostly from your CV. If you are a CSE/IT guy then never ever rely only on your CV. It entirely depends on the interviewer mind. If they do not see your resume then you will be asked question from any topic related to CSE/IT branch. So the idea is to prepare well for the subject and topic you have mentioned in your CV and also keep sound knowledge of other CSE/IT subjects.  This is what happened in my P. I. . They reviewed my resume but not even a single technical questions they asked related to the subjects or topics mentioned in my resume. So guys/gals be prepared and have a basic knowledge of important CSE/IT subjects ( Data Structure, DBMS, C/C++, JAVA, Operating Systems,  Software Engineering etc.) .   They do not go in depth of any subject and ask only basic questions.

General Tips: Keep trying ! :)
Skill Tips: NA
Skills: C programming basics, JAVA , DB, C++, OS basics
College Name: TERNA ENGINEERING COLLEGE
Motivation: TCS is the largest software company of India. It is the most admired company of India. Being an employee of TCS is what many dream. And getting into TCS is quite easy also. All that you need is your desire and work towards it.
Funny Moments: Yet to happen

Skills evaluated in this interview

Interview Questionnaire 

11 Questions

  • Q1. Why do u want to move into IT
  • Q2. Wat do u understand by the term Networking
  • Ans. 

    Networking refers to the process of connecting devices and systems to share information and resources.

    • Networking involves the use of hardware and software to connect devices and systems.

    • It allows for the sharing of information and resources such as files, printers, and internet access.

    • Networking can be done through wired or wireless connections.

    • Examples of networking technologies include Ethernet, Wi-Fi, and Bluetooth.

    • ...

  • Answered by AI
  • Q3. Explain the concepts of a router
  • Ans. 

    A router is a networking device that forwards data packets between computer networks.

    • A router operates at the network layer of the OSI model.

    • It uses routing tables to determine the best path for data packets to reach their destination.

    • Routers can connect multiple networks together, such as LANs and WANs.

    • They provide network address translation (NAT) to allow multiple devices to share a single public IP address.

    • Routers ...

  • Answered by AI
  • Q4. What is subnetting
  • Ans. 

    Subnetting is the process of dividing a network into smaller subnetworks, called subnets, to improve network efficiency and security.

    • Subnetting allows for better utilization of IP addresses by dividing a network into smaller segments.

    • It helps in improving network performance by reducing network congestion.

    • Subnetting enhances network security by isolating different departments or devices within a network.

    • It enables effi...

  • Answered by AI
  • Q5. What are protocols
  • Ans. 

    Protocols are a set of rules and guidelines that govern the communication between devices or systems.

    • Protocols define the format and order of messages exchanged between devices.

    • They ensure reliable and efficient communication by specifying error detection and correction mechanisms.

    • Examples of protocols include TCP/IP, HTTP, SMTP, and FTP.

    • Protocols can operate at different layers of the network stack, such as the applic

  • Answered by AI
  • Q6. What are static & dynamic protocols
  • Ans. 

    Static protocols are fixed and do not change, while dynamic protocols can adapt to changing network conditions.

    • Static protocols are typically used in simple networks with predictable traffic patterns.

    • Dynamic protocols are used in complex networks with varying traffic patterns.

    • Examples of static protocols include ARP and RARP.

    • Examples of dynamic protocols include OSPF and BGP.

  • Answered by AI
  • Q7. Why TCS
  • Ans. 

    TCS is a leading global IT services company with a strong reputation and diverse opportunities for growth.

    • TCS has a strong reputation in the IT industry for delivering high-quality services and solutions.

    • TCS offers diverse opportunities for growth and career development.

    • TCS has a global presence, providing exposure to different cultures and working environments.

    • TCS values innovation and encourages employees to think cr...

  • Answered by AI
  • Q8. Why should i hire u
  • Q9. Wat do expect from us since u r a non IT candidate
  • Ans. 

    I expect to receive proper training and support to transition into the IT field successfully.

    • I expect to be provided with relevant training and resources to learn the necessary skills for the role.

    • I hope for guidance and mentorship from experienced IT professionals within the company.

    • I am eager to contribute my non-IT skills and knowledge to the team, bringing a fresh perspective.

    • I am committed to putting in the effort...

  • Answered by AI
  • Q10. What are ur strengts & weaknesses
  • Q11. Any queries

Interview Preparation Tips

Round: Test
Experience: Written round consists of Analytical Test and Verbal Ability Test. TCS has various criteria for skipping Analytical Test. If you are a geek ( in top five of a few stream like CSE/IT/ECE/EE/Mechanical ) then you will be allowed to skip the Analytical round. Also if you have at least 75% aggregate in 10th and 12th  and a minimum percentage marks in college ( This is set by TCS and varies from college to college, May be 8.5 pointer or 7.90 or as desired by TCS )   then you can skip analytical round. TCS is continuously changing its placement process so prepare for the worst and do not pretend that you can skip the analytical round even if you are a geek.If you are taking only verbal part then you will get ten minutes time and within this time frame you need to write an email based on the given scenario.
Tips: solve more n more questions to clear aptiude cz dats da first step. :)
Duration: 90 minutes
Total Questions: 45

Round: Technical Interview
Experience: Personal Interview round consists of three phases i.e. T. R. + M. R.+H. R. .  So you will come across three person. If you are being interviewed by a panel of three person than you will have all the three interview in a single round. If you are being interview by only two persons than you will have to go through HR round only when you qualify the previous round. So this varies but you will have to go through all the three phases.
Tips: In technical round you will be asked simple conceptual questions. Never ever show how smart you are because interviewer is smarter than you. Keep calm and be confident. If you do not know answer of any question, simply say no and do not proceed with half answers or wrong answer because they will trap you in your own answer.  In this round you will be asked question mostly from your CV. If you are a CSE/IT guy then never ever rely only on your CV. It entirely depends on the interviewer mind. If they do not see your resume then you will be asked question from any topic related to CSE/IT branch. So the idea is to prepare well for the subject and topic you have mentioned in your CV and also keep sound knowledge of other CSE/IT subjects.  This is what happened in my P. I. . They reviewed my resume but not even a single technical questions they asked related to the subjects or topics mentioned in my resume. So guys/gals be prepared and have a basic knowledge of important CSE/IT subjects ( Data Structure, DBMS, C/C++, JAVA, Operating Systems,  Software Engineering etc.) .   They do not go in depth of any subject and ask only basic questions. 
I do not remember all the questions they asked me, but a few are as above

Round: HR Interview
Experience: This round lets you know about TCS terms and conditions. They can ask you questions related to your family and other non-technical stuffs. Basically they check your communication skills and presence of mind. Even if you do not know the answer of a non-technical question, give answer in support of that. Here they may also ask you questions related to pre-placement talk so do not miss that one. Also do R & D on TCS and grab information about TCS  ( like C. E. O., M. D., Founder etc. ). If you have qualified the T. R. and M. R. round then you are almost selected. 
The most commonly asked questions in HR round are listed above. DO refer..
Tips: Be well prepared for the FAQz. so u can answer dem cnfidently

General Tips: develop programming skills & logics
Skill Tips: NA
Skills: c programing, ccna, ccnp, hardware, networking
College Name: SIES Institute of Technology.
Motivation: understand the basic math formulae. and also basic networking skills
Funny Moments: NA

Skills evaluated in this interview

Interview Questionnaire 

12 Questions

  • Q1. Basic c, c++, java questions
  • Q2. What is multithreading
  • Ans. 

    Multithreading is the ability of a program to perform multiple tasks concurrently.

    • Multithreading allows for better utilization of CPU resources

    • It can improve program performance and responsiveness

    • Examples include running multiple downloads simultaneously or updating a GUI while performing a background task

    • Synchronization is important to prevent race conditions and ensure thread safety

  • Answered by AI
  • Q3. How multithreading is carried in java
  • Ans. 

    Java supports multithreading through the java.lang.Thread class and java.util.concurrent package.

    • Java threads are created by extending the Thread class or implementing the Runnable interface.

    • Threads can be started using the start() method.

    • Synchronization can be achieved using synchronized keyword or locks.

    • Java provides several classes and interfaces to support concurrent programming such as Executor, ExecutorService, F...

  • Answered by AI
  • Q4. Does Java support multiple Inheritance? If not then how an interface inherits two interfaces? Explain
  • Ans. 

    Java does not support multiple inheritance, but interfaces can inherit multiple interfaces.

    • Java does not allow a class to inherit from multiple classes, but it can implement multiple interfaces.

    • Interfaces can inherit from multiple interfaces using the 'extends' keyword.

    • For example, interface C can extend interfaces A and B: 'interface C extends A, B {}'

  • Answered by AI
  • Q5. Difference between Do – While and While loop.
  • Ans. 

    Do-While loop executes the code block once before checking the condition, while loop checks the condition first.

    • Do-While loop is used when the code block needs to be executed at least once.

    • While loop is used when the code block may not need to be executed at all.

    • Do-While loop is less efficient than While loop as it always executes the code block at least once.

    • Example of Do-While loop: do { //code block } while (conditi...

  • Answered by AI
  • Q6. How will you display data of two tables?
  • Ans. 

    Join the tables on a common column and display the combined data.

    • Identify the common column in both tables

    • Use JOIN statement to combine the tables

    • Select the columns to display

    • Apply any necessary filters or sorting

    • Display the data in a table or list format

  • Answered by AI
  • Q7. Explain. Difference between primary key and unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness of a column.

    • Primary key cannot have null values, while unique key can have one null value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key is used as a foreign key in other tables, while unique key is not.

    • Example: Employee ID can be a primary key, while email address can be a unique key.

  • Answered by AI
  • Q8. Rate urself on 1 to 10 scale
  • Q9. Y r ur academics below 6.5cgpa
  • Q10. Y shud i hire u
  • Ans. 

    I have a strong background in software development, excellent problem-solving skills, and a passion for learning new technologies.

    • Extensive experience in programming languages such as Java, Python, and C++

    • Proven track record of delivering high-quality software solutions on time and within budget

    • Strong analytical and problem-solving skills, with the ability to quickly adapt to new technologies and frameworks

    • Excellent co...

  • Answered by AI
  • Q11. What r ur weaknesses
  • Q12. Can u work in nyt shifts if required

Interview Preparation Tips

Round: Test
Experience: have intrest in coding.. must know programming logics
Tips: be calm and attmpt evry question..

Round: Group Discussion
Experience: make sure you are prepared frequently asked topics.. speak honestly.. speak more herewich wil reflect ur confident but dont over do. also maintain the constant voice tone
Tips: be honest to urself.. dnt let ur imag go down

Round: Technical Interview
Experience: In technical round you will be asked simple conceptual questions. Never ever show how smart you are because interviewer is smarter than you. Keep calm and be confident. If you do not know answer of any question, simply say no and do not proceed with half answers or wrong answer because they will trap you in your own answer.  In this round you will be asked question mostly from your CV. If you are a CSE/IT guy then never ever rely only on your CV. It entirely depends on the interviewer mind. If they do not see your resume then you will be asked question from any topic related to CSE/IT branch. So the idea is to prepare well for the subject and topic you have mentioned in your CV and also keep sound knowledge of other CSE/IT subjects.  This is what happened in my P. I. . They reviewed my resume but not even a single technical questions they asked related to the subjects or topics mentioned in my resume. So guys/gals be prepared and have a basic knowledge of important CSE/IT subjects ( Data Structure, DBMS, C/C++, JAVA, Operating Systems,  Software Engineering etc.) .   They do not go in depth of any subject and ask only basic questions.
Tips: first clear ur basiic concepts.. n also have gr88 coding skills n logics for the same.

Round: HR Interview
Experience: being 100% honest wil help u clear dis easilyy n get thru IT.. since its da lasst round.. ALL DA VERY BEST GUYS :)

General Tips: be confident & well prepared
Skill Tips: Gain programming skills.. that help u clear all the 3 rounds successfully. Smile whenever possible.
Skills: Ability To Deal Diplomatically, positive outlook, hardworker
College Name: PIIT, PANVEL
Motivation: wear a SMILE always.. no matter wat happens
Funny Moments: yet to happen.. preparing for last sems now..

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. The tech intrview was followed by the hr interview
  • Q2. Basic question on c c++ java
  • Q3. Basics of os, oops, db
  • Q4. Basic of loops
  • Q5. Rate ur self
  • Q6. Wht rur hobbys, strength, weaknesses
  • Ans. 

    My hobbies include coding, reading, and playing video games. My strengths are problem-solving, attention to detail, and teamwork. My weaknesses are impatience and a tendency to overthink.

    • Hobbies: Coding, reading, playing video games

    • Strengths: Problem-solving, attention to detail, teamwork

    • Weaknesses: Impatience, tendency to overthink

  • Answered by AI
  • Q7. Why shud i hire u
  • Q8. Why tcs

Interview Preparation Tips

Round: Test
Experience: Written round consists of Analytical Test and Verbal Ability Test. TCS has various criteria for skipping Analytical Test. If you are a geek ( in top five of a few stream like CSE/IT/ECE/EE/Mechanical ) then you will be allowed to skip the Analytical round. Also if you have at least 75% aggregate in 10th and 12th  and a minimum percentage marks in college ( This is set by TCS and varies from college to college, May be 8.5 pointer or 7.90 or as desired by TCS )   then you can skip analytical round. TCS is continuously changing its placement process so prepare for the worst and do not pretend that you can skip the analytical round even if you are a geek.
Tips: be well pprepared on ur side....
Duration: 90mins minutes
Total Questions: 50

Round: Technical Interview
Experience: be confident while answering.. listen carefuly every question
Tips: dont misinterprete the interviewer. be good listener and also honest

General Tips: be cool n prepare for the test
Skill Tips: develop ur communication skills
Skills: basic programming skills, basic coding logics, develop logical thinking
College Name: PIIT, PANVEL
Motivation: always share ur problems n clr ur concepts
Funny Moments: yet to happen.. preparing fr 8th sem.. i hope i do well der

Interview Questionnaire 

10 Questions

  • Q1. This round was followed by the HR interview
  • Q2. Tel mi abt urself
  • Ans. 

    I am a software developer with experience in Java and Python.

    • Graduated with a degree in Computer Science

    • Worked on multiple projects using Java and Python

    • Familiar with Agile methodology

    • Strong problem-solving skills

    • Constantly learning and improving

  • Answered by AI
  • Q3. Ur strengths weaknesses
  • Q4. What is multithreaing
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently.

    • Multithreading improves performance by utilizing idle CPU time.

    • Threads share the same memory space, allowing for efficient communication.

    • Examples include web servers handling multiple requests and video games rendering graphics while processing user input.

  • Answered by AI
  • Q5. How it is implemented in java
  • Ans. 

    The question is asking about how a specific implementation is done in Java.

    • Explain the implementation details of the specific feature or functionality in Java

    • Provide code examples if applicable

    • Discuss any relevant libraries or frameworks used in the implementation

  • Answered by AI
  • Q6. Diff betn while & do while loop
  • Ans. 

    While loop executes only if the condition is true, do-while loop executes at least once before checking the condition.

    • While loop checks the condition first, then executes the code block

    • Do-while loop executes the code block first, then checks the condition

    • While loop may not execute at all if the condition is false initially

    • Do-while loop always executes at least once before checking the condition

  • Answered by AI
  • Q7. Does Java support multiple Inheritance? If not then how an interface inherits two interfaces? Explain?
  • Ans. 

    No, Java does not support multiple inheritance. However, interfaces can inherit multiple interfaces.

    • Java does not allow a class to inherit from multiple classes, which is known as multiple inheritance.

    • However, a class can implement multiple interfaces, which is known as multiple interface inheritance.

    • By implementing multiple interfaces, a class can inherit the abstract methods defined in those interfaces.

    • For example, c...

  • Answered by AI
  • Q8. How will you display data of two tables? Explain
  • Ans. 

    To display data of two tables, we can use JOIN operation in SQL.

    • Identify the common column(s) between the two tables.

    • Use JOIN operation to combine the data from both tables based on the common column(s).

    • Choose the appropriate type of JOIN operation (INNER, LEFT, RIGHT, FULL) based on the requirement.

    • Use SELECT statement to display the required columns from the combined table.

    • Example: SELECT t1.column1, t2.column2 FROM ...

  • Answered by AI
  • Q9. Diff betn primary & unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness of a column.

    • Primary key is a column or set of columns that uniquely identifies each record in a table

    • Primary key cannot have null values

    • A table can have only one primary key

    • Unique key ensures that a column or set of columns have unique values

    • Unique key can have null values

    • A table can have multiple unique keys

  • Answered by AI
  • Q10. Rate urself on scale 1-10
  • Ans. 

    I would rate myself as an 8 on a scale of 1-10.

    • I have a strong understanding of software development principles and practices.

    • I have experience working with multiple programming languages and frameworks.

    • I am skilled in problem-solving and debugging.

    • I have successfully delivered complex software projects in the past.

    • I continuously strive to learn and improve my skills.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: If you are taking examination of both analytical and verbal part then you will get 10 minutes for verbal part first and then 80 minutes for analytical part. Even if you solve verbal part in less than 10 minutes the remaining time will not be added to your analytical part. Analytical part consists of 30 questions need to be solved within 80 minutes. You can easily navigate the question and exam environment is same as in TCS Open See Same. You will have an on screen calculator. You can also carry a calculator in examination hall. My suggestion is to carry your own calculator because on screen calculator will only waste your time.
Tips: develop programming skills, n clear ur basics first, also attnd all questions
Duration: 90mins minutes
Total Questions: 50

Round: Technical Interview
Experience: clear ur BASIC concepts.. all da besst !!!

General Tips: U can Do IT...
Skill Tips: think positive develop coding skills n u wl definetly clear all the rounds.
Skills: basic c programing skills, basic netwrking knowledge, coding logics
College Name: PIIT, PANVEL
Motivation: have faith in urself n u can achieve IT
Funny Moments: looking frwd to IT :)

Skills evaluated in this interview

CA Monk Interview FAQs

How many rounds are there in CA Monk interview?
CA Monk interview process usually has 2 rounds. The most common rounds in the CA Monk interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for CA Monk interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at CA Monk. The most common topics and skills that interviewers at CA Monk expect are CAM, Consulting, Compliance, Taxation and Financial Reporting.
What are the top questions asked in CA Monk interview?

Some of the top questions asked at the CA Monk interview -

  1. Can we send the state from the child component to the parent compone...read more
  2. What is React Query? Have you used it in any of your projec...read more
  3. Can we make a custom hook? How can we make custom hooks and what purpo...read more

Tell us how to improve this page.

CA Monk Interview Process

based on 4 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Dabur Interview Questions
4.0
 • 271 Interviews
Himalaya Wellness Interview Questions
4.1
 • 111 Interviews
Patanjali Ayurved Interview Questions
4.0
 • 109 Interviews
Emami Interview Questions
3.9
 • 86 Interviews
Hamdard Interview Questions
4.1
 • 27 Interviews
Sri Sri Tattva Interview Questions
3.5
 • 13 Interviews
Charak Pharma Interview Questions
3.7
 • 10 Interviews
View all

CA Monk Reviews and Ratings

based on 5 reviews

4.2/5

Rating in categories

4.5

Skill development

4.0

Work-life balance

3.5

Salary

3.6

Job security

4.0

Company culture

3.2

Promotions

4.2

Work satisfaction

Explore 5 Reviews and Ratings
Accounts and Admin Manager

Kolkata,

Mumbai

+5

2-4 Yrs

Not Disclosed

B2B Sales Executive

Mumbai

0-2 Yrs

Not Disclosed

Relationship Manager (Real Estate - Buy Side)

Kolkata,

Mumbai

+5

2-5 Yrs

Not Disclosed

Explore more jobs
Compare CA Monk with

Sri Sri Tattva

3.5
Compare

Patanjali Ayurved

4.0
Compare

Dabur

4.0
Compare

Himalaya Wellness

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview