Upload Button Icon Add office photos

Filter interviews by

Apptomate Digital Interview Questions and Answers

Updated 15 Nov 2024

Apptomate Digital Interview Experiences

Popular Designations

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How react component rendering cycle works?
  • Ans. 

    React component rendering cycle involves mounting, updating, and unmounting phases.

    • 1. Mounting phase: constructor -> getDerivedStateFromProps -> render -> componentDidMount

    • 2. Updating phase: getDerivedStateFromProps -> shouldComponentUpdate -> render -> getSnapshotBeforeUpdate -> componentDidUpdate

    • 3. Unmounting phase: componentWillUnmount

  • Answered by AI
  • Q2. Usecontext use cases
Round 2 - One-on-one 

(2 Questions)

  • Q1. React Hooks and it's uses
  • Ans. 

    React Hooks are functions that let you use state and other React features without writing a class.

    • Hooks are introduced in React 16.8 to allow developers to use state and other React features in functional components.

    • They help in reusing stateful logic across components without changing the component hierarchy.

    • Some commonly used hooks are useState, useEffect, useContext, and useReducer.

    • Example: useState hook allows you ...

  • Answered by AI
  • Q2. Redux and it's implementation
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux is a state management library commonly used with React.

    • It helps manage the state of an application in a predictable way.

    • Actions are dispatched to update the state through reducers.

    • Redux stores the entire state of the application in a single immutable object.

    • Selectors can be used to extract specific pieces of state from the store.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What's your aim of joining this company?
  • Q2. How long you would be in our company?

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. MCQ Reactjs Moderate Questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Everything about Reactjs
Round 3 - One to one with founder 

(1 Question)

  • Q1. Behaviour and Background

Interview Preparation Tips

Topics to prepare for Apptomate Digital Senior Software Engineer interview:
  • Reactjs

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

I was interviewed in Feb 2022.

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 - Coding Test 

There were some scenario logic based questions on js, react,and node

Round 3 - Technical 

(1 Question)

  • Q1. Basic questions on js,css,react
Round 4 - One-on-one 

(1 Question)

  • Q1. Horrible one....dont attend this company they will take your time for granted and waste it..and in my case the CTO was spoken with me and he is such a mad person asking me the question to reject in the in...

Interview Preparation Tips

Interview preparation tips for other job seekers - Horrible one don't attend this company...the way CTO spoke to me was very rude and he didn't even listened to my answers.Firstly he joined almost 10to 15mins late and never said anything abt that..and he doesn't have that manners of how to take interview..WASTE OF TIME.. HELPING YOU GUUS DONT ATTEND..LOOK. FOR SOME OTHER GOOD OPPORTUNITY.HOPE IT HELPED.. THANKS

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General basic assessment.

Round 2 - MCQ 

(1 Question)

  • Q1. They will give you few PDFs to read and then MCQ from that.

Interview Preparation Tips

Interview preparation tips for other job seekers - So the job application process will start from emailing them to the MCQ. Then if selected you'll receive email with next steps which involves Skype chat(no involvement of voice call or video, only chat). Then after the technical setup you need to email them again that you're done with that, after that you'll get another mail with a link to choose a starting date.
On the starting date you'll again message one person(Yashima Kamra) on Skype, they'll give you 'Zulip'(it's an open source chat system, interface is kind of like Discord but too basic) access. Now you need to message in an assigned group in Zulip. The Zulip part is 'Training' in real but good luck getting any support from the other person. He/she will just give you commands, and if you ask any questions or ask for assistance to understand the new process they'll simply ignore that.
Then if you're lucky like me one day they'll report that you're ate fault, you haven't reported so they've revoked your Zulip access.

I have joined there or you can say hoped to work atleast(as it was 4 hours/day job) but that's not possible it seems.

If you're looking for jobs here I'd suggest to give it a try ofcourse so that people can actually know about this company's rubbish people.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Easy Level DS Questions - 30 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Cloud Services related questions
  • Q2. ETL Based question
Round 3 - Coding Test 

A comprehensive coding test which included job role simulation.

Round 4 - Coding Test 

Advanced Cloud Services questions

Round 5 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Why did you leave your last organisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Remote work although partially supported, is highly discouraged.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding Test consists of 3 Problem Question (2 Logical questions and 1 SQL Query ) and Around 20 MCQS
Platform - CoderByte

Round 2 - Aptitude Test 

30 Aptitude Question
3 Mail Writing Question

Round 3 - Technical 

(5 Questions)

  • Q1. Explain 1st Problem Solved in Coding Test. Optimize it.
  • Ans. 

    Solved a sorting problem by implementing quicksort algorithm.

    • Implemented quicksort algorithm to efficiently sort the array.

    • Used recursion to divide the array into smaller subarrays and sort them individually.

    • Optimized the algorithm by choosing a pivot element strategically to minimize comparisons.

  • Answered by AI
  • Q2. Explain 2nd Problem Solved in Coding Test. I failed 1 test case in 1st round which was told to solve again.
  • Q3. Explain 3rd Question based on SQL Query.
  • Ans. 

    The 3rd question based on SQL query likely refers to a specific query or scenario related to SQL.

    • Understand the context of the query being asked about

    • Analyze the structure and purpose of the SQL query

    • Explain the expected output or result of the query

  • Answered by AI
  • Q4. Write a code to Reverse Digits.
  • Ans. 

    Code to reverse digits of a number

    • Use modulo operator to extract the last digit of the number

    • Multiply the result by 10 and add the next digit until all digits are reversed

    • Handle negative numbers separately by converting to positive before reversing

  • Answered by AI
  • Q5. A problem question for solving a SQL Query.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well,
Stay continuously in contact, call the HR for updates as they don't call you, We need to call them else you will wait entire life.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between wifi AC and Ax
  • Ans. 

    Wifi AC is the 5th generation of wifi technology, while Wifi Ax is the 6th generation with improved speed and efficiency.

    • Wifi AC operates on the 5 GHz band, while Wifi Ax operates on both 2.4 GHz and 5 GHz bands.

    • Wifi Ax supports MU-MIMO (Multi-User, Multiple Input, Multiple Output) technology for better performance in crowded networks.

    • Wifi Ax offers higher data rates and improved efficiency compared to Wifi AC.

    • Wifi Ax ...

  • Answered by AI
  • Q2. What is called as DTIM?
  • Ans. 

    DTIM stands for Delivery Traffic Indication Message, used in Wi-Fi networks to inform clients about the presence of buffered broadcast and multicast frames.

    • DTIM is a parameter in the Wi-Fi beacon frame that indicates to clients how often they should wake up to receive broadcast and multicast traffic.

    • It helps in saving battery life for devices by allowing them to sleep for longer periods of time.

    • Clients can set their po...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(8 Questions)

  • Q1. What do you mean by SEO?
  • Ans. 

    SEO stands for Search Engine Optimization, which is the practice of increasing the quantity and quality of traffic to your website through organic search engine results.

    • SEO involves optimizing your website to improve its visibility on search engines like Google.

    • It includes keyword research, on-page optimization, link building, and content creation.

    • The goal of SEO is to drive more organic traffic to your website and imp...

  • Answered by AI
  • Q2. What do you mean by Domain and hosting.
  • Ans. 

    Domain is the address of a website, hosting is the service that stores the website's files and makes it accessible online.

    • Domain is the unique address of a website on the internet, like www.example.com

    • Hosting is the service that stores the website's files and data on a server, making it accessible online

    • Domain registration is the process of purchasing and owning a domain name

    • Web hosting providers offer different types ...

  • Answered by AI
  • Q3. Tell me something about your self?
  • Q4. What are the main SEO tools?
  • Ans. 

    Some main SEO tools include Google Analytics, SEMrush, Ahrefs, Moz, and Screaming Frog.

    • Google Analytics for tracking website traffic and user behavior

    • SEMrush for keyword research and competitive analysis

    • Ahrefs for backlink analysis and site auditing

    • Moz for SEO insights and rank tracking

    • Screaming Frog for website crawling and technical SEO analysis

  • Answered by AI
  • Q5. What is Google Adwords?
  • Ans. 

    Google Adwords is an online advertising platform developed by Google, where advertisers pay to display brief advertisements, service offerings, product listings, video content, and generate mobile application installs within the Google ad network to web users.

    • Online advertising platform by Google

    • Advertisers pay to display ads

    • Can display various types of ads like text, display, video, etc.

    • Helps in reaching target audien

  • Answered by AI
  • Q6. What is Organic search?
  • Ans. 

    Organic search refers to the unpaid search results generated by search engines based on relevance to the user's query.

    • Organic search results are not influenced by paid advertising.

    • Websites can improve their organic search rankings through search engine optimization (SEO) techniques.

    • Examples of organic search results include links to websites, blogs, and articles that are deemed relevant to the user's search query.

  • Answered by AI
  • Q7. What do you mean by keywords?
  • Ans. 

    Keywords are specific words or phrases that describe the content of a webpage and are used in SEO to help search engines understand the topic of the page.

    • Keywords are used to optimize a website's content for search engines.

    • They help search engines match a webpage to relevant search queries.

    • Examples of keywords include 'SEO tips', 'best digital marketing agency', 'how to increase website traffic'.

  • Answered by AI
  • Q8. What is keywords analysis?
  • Ans. 

    Keywords analysis is the process of researching and identifying the most relevant keywords for a website to improve its search engine rankings.

    • Keywords analysis involves identifying popular search terms related to a website's content.

    • It helps in understanding what keywords users are searching for and how competitive those keywords are.

    • Tools like Google Keyword Planner can be used for keywords analysis.

    • The goal is to se...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find the second largest element in array
  • Ans. 

    Find the second largest element in an array of strings.

    • Convert the strings to integers for comparison.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
  • Q2. Tell about oops in c++
  • Ans. 

    Object-oriented programming concepts in C++

    • Encapsulation: bundling data and methods that operate on the data together. Example: class Car { private: int speed; public: void accelerate() { speed++; } };

    • Inheritance: creating new classes based on existing classes. Example: class ElectricCar : public Car { public: void charge() { cout << 'Charging...'; } };

    • Polymorphism: ability to present the same interface for different d...

  • Answered by AI

Skills evaluated in this interview

Apptomate Digital Interview FAQs

How many rounds are there in Apptomate Digital interview?
Apptomate Digital interview process usually has 3-4 rounds. The most common rounds in the Apptomate Digital interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Apptomate Digital 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 Apptomate Digital. The most common topics and skills that interviewers at Apptomate Digital expect are .Net, .Net Core, ASP, C# and Javascript.
What are the top questions asked in Apptomate Digital interview?

Some of the top questions asked at the Apptomate Digital interview -

  1. How react component rendering cycle wor...read more
  2. React Hooks and it's u...read more
  3. Redux and it's implementat...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Apptomate Digital interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Busibud Interview Questions
4.0
 • 41 Interviews
CGS Interview Questions
3.5
 • 26 Interviews
Odoo Interview Questions
3.6
 • 25 Interviews
Oxane Partners Interview Questions
3.6
 • 23 Interviews
InsanelyGood Interview Questions
4.1
 • 19 Interviews
View all

Apptomate Digital Reviews and Ratings

based on 16 reviews

4.4/5

Rating in categories

3.9

Skill development

4.2

Work-Life balance

4.2

Salary & Benefits

4.0

Job Security

4.4

Company culture

4.3

Promotions/Appraisal

4.3

Work Satisfaction

Explore 16 Reviews and Ratings
Senior Software Engineer
9 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Software Engineer
5 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Business Development Executive
5 salaries
unlock blur

₹2.2 L/yr - ₹4.8 L/yr

Marketing Research Executive
5 salaries
unlock blur

₹1.2 L/yr - ₹4.2 L/yr

Software Developer
4 salaries
unlock blur

₹3 L/yr - ₹13 L/yr

Explore more salaries
Compare Apptomate Digital with

Primus Global Technologies

4.0
Compare

TriGeo Technologies

3.2
Compare

Magneti Marelli Motherson Auto System

3.9
Compare

Baoiam Innovations

4.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview