Upload Button Icon Add office photos

Filter interviews by

Zibtek Mean Stack Developer Interview Questions and Answers

Updated 2 Jan 2020

Zibtek Mean Stack Developer Interview Experiences

1 interview found

I applied via Indeed and was interviewed in Jul 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of Html, CSI, bootstrap, Angular concepts, nodejs concepts, mongoodb queries basics javascript concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was face to face, it took about 30minutes in that few concepts, flow of angular, node, mongoo and Java scripts, and given some tasks to answer in front of them,
2nd round online test basics of html, Css, bootstrap, angular ,git etc
3rd round was HR

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. How would you utilize AWS or Azure services to create scalable web applications
  • Ans. 

    Utilize AWS or Azure services for scalable web applications

    • Use AWS Elastic Beanstalk or Azure App Service for easy deployment and scaling

    • Leverage AWS Lambda or Azure Functions for serverless computing

    • Utilize AWS Auto Scaling or Azure Autoscale to automatically adjust resources based on traffic

    • Store data in AWS RDS or Azure SQL Database for scalable database solutions

    • Use AWS CloudFront or Azure CDN for content delivery

  • Answered by AI
  • Q2. How would you tackle memory leaks if the system your working on was experiencing this issue?
  • Ans. 

    I would use memory profiling tools to identify the source of the leaks and then fix them by properly managing memory allocation and deallocation.

    • Use memory profiling tools like Valgrind or Instruments to identify the source of the leaks

    • Review the code to ensure proper memory allocation and deallocation practices are being followed

    • Implement smart pointers or garbage collection to automatically manage memory

    • Use static co...

  • Answered by AI
  • Q3. Have you worked on legacy systems?
  • Ans. 

    Yes, I have experience working on legacy systems.

    • I have successfully maintained and upgraded legacy systems to meet current business needs.

    • I have refactored legacy code to improve performance and scalability.

    • I have integrated new technologies with legacy systems to enhance functionality.

    • I have experience troubleshooting and debugging issues in legacy systems.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Are you capable to work with cross functional teams and handle disputes effectively
  • Ans. 

    Yes, I have experience working with cross functional teams and resolving disputes effectively.

    • I have successfully collaborated with team members from different departments to achieve project goals.

    • I am skilled at mediating conflicts and finding mutually beneficial solutions.

    • I prioritize open communication and actively listen to all team members' perspectives.

    • I have experience using conflict resolution techniques such a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and on to point without deviations, they respect straight forwardness
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 Jul 2024. There were 2 interview rounds.

Round 1 - Assignment 

Give 10 questions from node js backend

Round 2 - One-on-one 

(6 Questions)

  • Q1. Ask about angular and node js
  • Q2. What is package.json
  • Ans. 

    package.json is a file used in Node.js projects to manage dependencies, scripts, and metadata.

    • It is a JSON file that contains information about the project, such as name, version, dependencies, and scripts.

    • It is used to manage project dependencies by listing them in the 'dependencies' and 'devDependencies' fields.

    • It allows developers to define scripts for tasks like building, testing, and running the project.

    • Example: {...

  • Answered by AI
  • Q3. What is components in angular,how share data to component
  • Ans. 

    Components in Angular are building blocks of an application. Data can be shared between components using input properties and output events.

    • Components in Angular are reusable, self-contained units of code that define a part of the user interface.

    • Data can be shared to a component using input properties, where data is passed from the parent component to the child component.

    • Data can also be shared from a child component t...

  • Answered by AI
  • Q4. What is === and == ,and wher use === is real time projects
  • Ans. 

    === is strict equality operator, while == is loose equality operator. === is commonly used in real-time projects for accurate comparisons.

    • === is a strict equality operator that checks both value and type of operands

    • == is a loose equality operator that only checks the value of operands

    • === is commonly used in real-time projects to ensure accurate comparisons and prevent unexpected type coercion issues

  • Answered by AI
  • Q5. Write arrow function syntax
  • Ans. 

    Arrow function syntax in JavaScript

    • Arrow functions are concise syntax for writing function expressions in JavaScript

    • They have a shorter syntax compared to traditional function expressions

    • They do not have their own 'this', 'arguments', 'super', or 'new.target' keywords

  • Answered by AI
  • Q6. What is difference between arrow function and anonymous function
  • Ans. 

    Arrow functions are concise syntax for writing function expressions, while anonymous functions do not have a name.

    • Arrow functions have a shorter syntax compared to anonymous functions.

    • Arrow functions do not have their own 'this' keyword, while anonymous functions do.

    • Arrow functions do not have 'arguments' object, while anonymous functions do.

    • Arrow functions are not hoisted, while anonymous functions are hoisted.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about ur role

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and Aptitude

Round 2 - Coding Test 

Functions with Pointers and strings concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly on Pointers and Dynamic Memory Allocation of 2-D Array
  • Q2. Structure Padding and Packing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth in C and mainly on Bit-Manipulation.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is easy to solve the Aptitude question and some identifying outputs of program.

Round 2 - HR 

(2 Questions)

  • Q1. What is class?and write a logic for object in a class.
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • A class defines the properties and behaviors of objects.

    • An object is an instance of a class.

    • Example: Class 'Car' can have properties like 'color' and 'model', and behaviors like 'drive' and 'stop'.

  • Answered by AI
  • Q2. 1.swap two numbers without using temp variable 2.Reverse the string.
  • Ans. 

    Swap two numbers without using temp variable and reverse a string without using built-in functions.

    • To swap two numbers without using temp variable, use bitwise XOR operation.

    • To reverse a string without using built-in functions, use two pointers approach.

    • Example for swapping numbers: a = a ^ b; b = a ^ b; a = a ^ b;

    • Example for reversing a string: use two pointers to swap characters from start and end of the string.

  • Answered by AI
Round 3 - Coding Test 

Now, I am preparing for the third round.
So, I don't know the Coding Question.

Interview Preparation Tips

Topics to prepare for ClaySys Software Developer interview:
  • Java, SQL
Interview preparation tips for other job seekers - What you have given in your Resume that will be your Question.
Must Strong in Basics of Java and SQL commands.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy aptitude, 30 min with 20 question

Interview Preparation Tips

Interview preparation tips for other job seekers - learn OOPs concept and thorough about your project
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain process for SDE
  • Ans. 

    The process for Software Development Engineer involves planning, designing, coding, testing, and deploying software solutions.

    • Gather requirements from stakeholders

    • Create a design based on requirements

    • Write code to implement the design

    • Test the software for bugs and issues

    • Deploy the software for users to use

    • Iterate on feedback and make improvements

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 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 - Technical 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

Round 1 - Aptitude Test 

Aptitude and coding also
like sql,and write 2 program

Round 2 - Technical 

(1 Question)

  • Q1. Technically asked some question write fibonacci series? write 2nd maximum salary for sql?
Round 3 - One-on-one 

(1 Question)

  • Q1. Tell about your self and asking STRENGTHS

Interview Preparation Tips

Interview preparation tips for other job seekers - in this company there are five round interview process

Zibtek Interview FAQs

How to prepare for Zibtek Mean Stack 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 Zibtek. The most common topics and skills that interviewers at Zibtek expect are MongoDB, Javascript, Node.Js, Angularjs and Mean Stack.

Tell us how to improve this page.

People are getting interviews through

based on 1 Zibtek interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
TO THE NEW Interview Questions
3.8
 • 123 Interviews
View all
Zibtek Mean Stack Developer Salary
based on 7 salaries
₹3 L/yr - ₹4 L/yr
41% less than the average Mean Stack Developer Salary in India
View more details

Zibtek Mean Stack Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

2.0

Salary & Benefits

3.0

Job Security

5.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Software Developer
37 salaries
unlock blur

₹2 L/yr - ₹8.7 L/yr

Software Engineer
13 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Devops Engineer
7 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Mean Stack Developer
7 salaries
unlock blur

₹3 L/yr - ₹4.1 L/yr

Product Owner
7 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Explore more salaries
Compare Zibtek with

TO THE NEW

3.8
Compare

Srijan Technologies

3.6
Compare

TCS

3.7
Compare

Infosys

3.7
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