Upload Button Icon Add office photos

Zibtek

Compare button icon Compare button icon Compare

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

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Zibtek?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore

Mean Stack Developer Interview Questions Asked at Other Companies

Q1. There are many languages available, so why are we using Angular?
asked in CitiusTech
Q2. Find the elements in an array whose sum is equal to a given input ... read more
asked in J&F
Q3. What is a routing guard in Angular?
Q4. What is AngularUniversal? Why is it used?
asked in SignDesk
Q5. Write a program to print a specific pattern.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What is Java?
  • Ans. 

    Java is a versatile, object-oriented programming language designed for portability across platforms and ease of use.

    • Object-Oriented: Java uses objects to represent data and methods, promoting code reusability. Example: Classes and objects.

    • Platform-Independent: Java code is compiled into bytecode, which can run on any device with a Java Virtual Machine (JVM).

    • Rich API: Java provides a comprehensive set of libraries for t...

  • Answered by AI
  • Q2. What is the purpose of the Java Virtual Machine (JVM)?
  • Ans. 

    The JVM enables Java applications to run on any device by providing an environment for executing Java bytecode.

    • Platform Independence: JVM allows Java programs to run on any operating system without modification.

    • Bytecode Execution: It interprets or compiles Java bytecode into machine code for execution.

    • Memory Management: JVM handles memory allocation and garbage collection automatically.

    • Security: It provides a secure ex...

  • Answered by AI
  • Q3. What are the key concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    OOP is a programming paradigm based on objects, encapsulating data and behavior, promoting code reusability and modularity.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism to create a new class based on an existing class, inheriting its properties (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same inte...

  • Answered by AI
  • Q4. What are the different types of variables?
  • Ans. 

    Variables can be categorized based on their scope, lifetime, and data type, impacting how they are used in programming.

    • 1. Local Variables: Defined within a function or block, e.g., 'int x = 10;' inside a function.

    • 2. Global Variables: Accessible throughout the program, e.g., 'int count;' defined outside any function.

    • 3. Static Variables: Retain their value between function calls, e.g., 'static int counter = 0;' in a func...

  • Answered by AI
  • Q5. What is an interface?
  • Ans. 

    An interface defines a contract for classes, specifying methods and properties without implementing them.

    • An interface can contain method signatures and properties but no implementation.

    • Classes that implement an interface must provide concrete implementations for all its members.

    • Interfaces support multiple inheritance, allowing a class to implement multiple interfaces.

    • Example: In Java, 'Runnable' is an interface that re...

  • Answered by AI
  • Q6. What are the data types
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
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. All about core java
  • Q2. Front end and My Sql
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 Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a function to find the first non-repeating character in a string ?
  • Ans. 

    Function to find the first non-repeating character in a string

    • Create a hashmap to store character frequencies

    • Iterate through the string to populate the hashmap

    • Iterate through the string again to find the first non-repeating character

  • Answered by AI
  • Q2. Explain the difference between a stack and a queue . Provide an example of when you would use each?
  • Ans. 

    A stack is a data structure that follows the Last In First Out (LIFO) principle, while a queue follows the First In First Out (FIFO) principle.

    • Stack: Last In First Out (LIFO), used for function calls, undo operations.

    • Queue: First In First Out (FIFO), used for printing tasks, message queues.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn in demand tech, network actively, and research about the company
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. How do you handle debugging in your code?
  • Ans. 

    I use print statements, logging, and debugging tools to identify and fix issues in my code.

    • I start by reviewing the code and understanding the logic behind it.

    • I use print statements to check the values of variables at different points in the code.

    • I utilize logging to track the flow of the program and identify any errors.

    • I use debugging tools like breakpoints and step-through debugging to pinpoint the exact location of ...

  • Answered by AI
  • Q2. What is your approach to optimizing a slow-running application?
  • Q3. What is the difference between functional and object-oriented programming?
  • Ans. 

    Functional programming focuses on functions and immutability, while object-oriented programming focuses on objects and encapsulation.

    • Functional programming uses pure functions that do not have side effects.

    • Object-oriented programming uses objects that encapsulate data and behavior.

    • In functional programming, data is immutable and functions are first-class citizens.

    • In object-oriented programming, objects can have state a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, research zazz's services, showcase your technical skills, communicate clearly, and prepare to discuss real-world problem-solving scenarios
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

They just gave me an assessment with a few questions to test my subject knowledge

Round 2 - One-on-one 

(1 Question)

  • Q1. They asked me all the general questions and a few technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - As long as you are updated in your field of study, you will crack it.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024.

Round 1 - Aptitude Test 

The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflicts in a team project?
  • Ans. 

    I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Seek compromise and find common ground to resolve conflicts effectively

  • Answered by AI
  • Q2. What is the difference between an interface and an abstract class?

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company, practice technical skills, communicate, showcase problem-solving abilities, stay confident, and demonstrate enthusiasm for the role
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

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.

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 34 Interviews
ClaySys Interview Questions
2.9
 • 26 Interviews
Contus Interview Questions
4.2
 • 24 Interviews
Pitney Bowes Interview Questions
3.8
 • 22 Interviews
DynPro Interview Questions
3.8
 • 21 Interviews
View all
Zibtek Mean Stack Developer Salary
based on 6 salaries
₹3 L/yr - ₹4.1 L/yr
44% 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

3.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
35 salaries
unlock blur

₹2 L/yr - ₹7.4 L/yr

Software Engineer
15 salaries
unlock blur

₹3.2 L/yr - ₹8.5 L/yr

Product Owner
7 salaries
unlock blur

₹6 L/yr - ₹12.7 L/yr

Devops Engineer
6 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Mean Stack Developer
6 salaries
unlock blur

₹3 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Zibtek with

Accel Frontline

4.1
Compare

Apmosys Technologies

3.4
Compare

Pitney Bowes

3.8
Compare

DynPro

3.8
Compare
write
Share an Interview