Premium Employer

i

This company page is being actively managed by ATMECS Global Team. If you also belong to the team, you can get access from here

ATMECS Global Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 223 Reviews

Filter interviews by

ATMECS Global Web Developer Interview Questions and Answers

Updated 6 Dec 2024

ATMECS Global Web Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Solid Principles and explain
  • Q2. Design patterns - singleton, factory, abstarctfactory

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 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 - Aptitude Test 

Basic apt and logical questions

Round 3 - Technical 

(2 Questions)

  • Q1. Basic programming language logic questions
  • Q2. Palindrome ,reverse a number etc

Interview Preparation Tips

Topics to prepare for Aspire Systems Web Developer interview:
  • Programming
Interview preparation tips for other job seekers - I have attended through college campus.search more about ur role and attend

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

On-Campus under the invigilation of College professors and campus placement ambassadors.

  • Q1. Technical Question

    Q1.Why is there no auto-increment in MongoDB?
     

  • Q2. Count Subsequences

    You have been given an integer array/list 'ARR' of size 'N'. Your task is to return the total number of those subsequences of the array in which all the elements are equa...

  • Ans. Brute Force

    The idea is to generate all the subsequences and check whether the elements present are equal or not.

     

    Here is the algorithm :

     

    1. Generate all the subsequences of the given array.
    2. Maintain a variable ‘COUNT’ which stores the total number of subsequences in which all the elements are equal.
    3. Iterate over each of the generated subsequences.
      1. In case all the elements of the current subsequence are equal, we in...
  • Answered by CodingNinjas
  • Q3. Reverse Linked List

    Given a singly linked list of integers. Your task is to return the head of the reversed linked list.

    For example:
    The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then th...
  • Ans. Brute Force

    The brute force approach is to use recursion. First, we reach the end of the Linked List recursively and at last node, we return the last node, which becomes the new head of the partially reversed Linked List. While coming back from each recursion call we add the current node in the current recursion call to the last node of the partially reversed Linked List and assign the current node to null.

     

    Steps:

    &...

  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

  • Q1. Application Question

    How would you automate searching profile via database of stored mobile numbers/email addresses.

Round 3 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

  • Q1. Basic HR Questions

    What software packages are you familiar with? 

    On a scale of 1 to 10 how would you rate yourself as a leader? 

    What makes you angry?

  • Ans. 

    Tip 1 : Always be honest .
     

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Web Developer in DelhiEligibility criteriaAbove 6.CGPAEvalueserve interview preparation:Topics to prepare for the interview - Javascript, Node JS, React JS, MongoDB, SQL, Express, Data StructuresTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Make projects covering all topic.
Tip 2 : Practice data structure questions daily.
Tip 3 : Time yourself while solving aptitude questions.

Application resume tips for other job seekers

Tip 1 : Have some projects related to job profile
Tip 2 : Write every courses you have taken, even those that are not required for the job profile.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is your approach to building basic logic skills?
  • Ans. 

    My approach to building basic logic skills involves practicing problem-solving exercises, breaking down complex problems into smaller parts, and seeking feedback to improve.

    • Practice problem-solving exercises regularly to strengthen logical thinking abilities.

    • Break down complex problems into smaller, more manageable parts to better understand the problem and find solutions.

    • Seek feedback from peers or mentors to identify...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Some behavioural questions?
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 was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. React component life cycle.
  • Q2. Redux, React Hooks, State, Props.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basics about angular
  • Q2. Javascript concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - "I attended an interview with this company and waited for a couple of days for a response. When I tried contacting HR, specifically Prasanna Lekkalapudi, she kept disconnecting my calls. In her text responses, she was unprofessional and dismissive, even stating that she doesn't care about my feedback. She mentioned that she has seen many people like me in her career. This kind of behavior reflects poorly on the company. I strongly advise against joining this organization, as it does not value your time, effort, or patience."
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Javascript question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Hoisting, CSS selector, Reverse string programme, Angular Hooks
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic Question CSS, HTML5, Angular
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Var,let and const differences
  • Ans. 

    var, let, and const are all used for variable declaration in JavaScript, but they have different scopes and behaviors.

    • var is function scoped, let and const are block scoped

    • var can be redeclared and updated, let can be updated but not redeclared, const cannot be redeclared or updated

    • const is used for variables that should not be reassigned, like constants

  • Answered by AI
  • Q2. What is a promise? in javascript
  • Ans. 

    A promise in JavaScript represents the eventual completion (or failure) of an asynchronous operation and its resulting value.

    • Promises are objects that represent the eventual completion (or failure) of an asynchronous operation.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and failure.

    • Example: new Promise((resolve, reject) => { ... }).then(res

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

1 hr -duration and Question is Full of basics and technology what we have used

ATMECS Global Interview FAQs

How many rounds are there in ATMECS Global Web Developer interview?
ATMECS Global interview process usually has 1 rounds. The most common rounds in the ATMECS Global interview process are Technical.
How to prepare for ATMECS Global Web Developer 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 ATMECS Global. The most common topics and skills that interviewers at ATMECS Global expect are Computer science, Front End, HTML, Version Control and Web Development.
What are the top questions asked in ATMECS Global Web Developer interview?

Some of the top questions asked at the ATMECS Global Web Developer interview -

  1. Design patterns - singleton, factory, abstarctfact...read more
  2. Solid Principles and expl...read more

Tell us how to improve this page.

Join ATMECS Global "Trusted Partner” to organizations looking to shape their future

ATMECS Global Web Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

1.0

Salary & Benefits

2.0

Job Security

4.0

Company culture

2.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 1 Review and Rating
Senior Software Engineer
377 salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Software Engineer
282 salaries
unlock blur

₹3.5 L/yr - ₹11 L/yr

Technical Lead
118 salaries
unlock blur

₹13.1 L/yr - ₹28 L/yr

Associate Lead
106 salaries
unlock blur

₹9.5 L/yr - ₹25 L/yr

Associate Software Engineer
77 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Explore more salaries
Compare ATMECS Global with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Tech Mahindra

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