Upload Button Icon Add office photos

Zibtek

Compare button icon Compare button icon Compare

Filter interviews by

Zibtek Interview Questions and Answers

Updated 19 Jun 2025
Popular Designations

6 Interview questions

A Software Developer was asked
Q. What is the difference between let, var, and const?
Ans. 

let is block scoped, var is function scoped, const is a constant variable.

  • let is block scoped, meaning it is only accessible within the block it is declared in.

  • var is function scoped, meaning it is accessible throughout the function it is declared in.

  • const is a constant variable whose value cannot be changed once assigned.

View all Software Developer interview questions
A Software Developer was asked
Q. What is a spread operator in JavaScript?
Ans. 

The spread operator in JavaScript allows an iterable to be expanded into individual elements.

  • The spread operator is denoted by three dots (...) and can be used to expand arrays, objects, or strings.

  • It is commonly used for combining arrays, passing arguments to functions, and creating copies of arrays or objects.

  • Example: const arr1 = [1, 2, 3]; const arr2 = [...arr1, 4, 5]; // arr2 will be [1, 2, 3, 4, 5]

View all Software Developer interview questions
A Software Developer was asked
Q. What are the fundamental concepts of JavaScript for a fresher?
Ans. 

JavaScript is a versatile programming language primarily used for web development, enabling interactive and dynamic content on websites.

  • JavaScript is a high-level, interpreted programming language.

  • It is primarily used for client-side web development, allowing for dynamic content updates.

  • JavaScript supports event-driven programming, enabling interactive user interfaces.

  • Example: Using 'document.getElementById' to ma...

View all Software Developer interview questions
A Junior Developer was asked
Q. What is the scope of 'this' in JavaScript?
Ans. 

The 'this' keyword refers to the current object in which the code is being executed.

  • The value of 'this' depends on how a function is called.

  • In a global context, 'this' refers to the global object (window in a browser).

  • In a function context, 'this' refers to the object that the function is a method of.

  • In an event context, 'this' refers to the element that triggered the event.

  • In a constructor function, 'this' refers...

View all Junior Developer interview questions
A Junior Developer was asked
Q. What is the difference between a regular function and an arrow function?
Ans. 

Regular functions are defined using the function keyword, while arrow functions use the => syntax.

  • Arrow functions have a shorter syntax than regular functions.

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

  • Arrow functions cannot be used as constructors.

  • Regular functions can be used as methods on objects, while arrow functions cannot.

  • Arrow functions are always anonymous, while regular functions can be named o...

View all Junior Developer interview questions
A Junior Developer was asked
Q. Closure in javascript
Ans. 

Closure is a function that has access to its outer function's variables, even after the outer function has returned.

  • Closure is created when a function is defined inside another function.

  • The inner function has access to the outer function's variables and parameters.

  • The inner function can access the outer function's variables even after the outer function has returned.

  • Closures can be used to create private variables...

View all Junior Developer interview questions

Zibtek Interview Experiences

4 interviews found

I applied via Referral and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Closure in javascript
  • Ans. 

    Closure is a function that has access to its outer function's variables, even after the outer function has returned.

    • Closure is created when a function is defined inside another function.

    • The inner function has access to the outer function's variables and parameters.

    • The inner function can access the outer function's variables even after the outer function has returned.

    • Closures can be used to create private variables and ...

  • Answered by AI
  • Q2. Difference between regular function and arrow function
  • Ans. 

    Regular functions are defined using the function keyword, while arrow functions use the => syntax.

    • Arrow functions have a shorter syntax than regular functions.

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

    • Arrow functions cannot be used as constructors.

    • Regular functions can be used as methods on objects, while arrow functions cannot.

    • Arrow functions are always anonymous, while regular functions can be named or ano...

  • Answered by AI
  • Q3. Scope of "this" in javascript
  • Ans. 

    The 'this' keyword refers to the current object in which the code is being executed.

    • The value of 'this' depends on how a function is called.

    • In a global context, 'this' refers to the global object (window in a browser).

    • In a function context, 'this' refers to the object that the function is a method of.

    • In an event context, 'this' refers to the element that triggered the event.

    • In a constructor function, 'this' refers to t...

  • Answered by AI
  • Q4. Rest and spread operator's
  • Q5. Array and object methods and more
Round 2 - Coding Test 

A url is shared and you basically answer a bunch of multiple choice questions with a coding problem at the end.

Interview Preparation Tips

Interview preparation tips for other job seekers - Pathetic company but if you have good skills and know that you can learn a new stack in a few days and start working on hotfixes, go ahead and join

Skills evaluated in this interview

Product Owner Interview Questions & Answers

user image Kalyani Kulkarni

posted on 19 Jun 2025

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

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Previous projects and experience
  • Ans. 

    I have extensive experience in product ownership across various industries, focusing on agile methodologies and stakeholder collaboration.

    • Led a cross-functional team to launch a mobile app that increased user engagement by 30%.

    • Implemented agile practices in a software development project, resulting in a 25% reduction in delivery time.

    • Collaborated with stakeholders to define product vision and roadmap for a healthcare p...

  • Answered by AI
  • Q2. Project management tools :Jira, Click up
  • Q3. User stories writing
  • Q4. Scrum activities
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 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 - Technical 

(3 Questions)

  • Q1. Basics of Javascript if you are fresher
  • Ans. 

    JavaScript is a versatile programming language primarily used for web development, enabling interactive and dynamic content on websites.

    • JavaScript is a high-level, interpreted programming language.

    • It is primarily used for client-side web development, allowing for dynamic content updates.

    • JavaScript supports event-driven programming, enabling interactive user interfaces.

    • Example: Using 'document.getElementById' to manipul...

  • Answered by AI
  • Q2. What is the difference between let,var,const?
  • Ans. 

    let is block scoped, var is function scoped, const is a constant variable.

    • let is block scoped, meaning it is only accessible within the block it is declared in.

    • var is function scoped, meaning it is accessible throughout the function it is declared in.

    • const is a constant variable whose value cannot be changed once assigned.

  • Answered by AI
  • Q3. What is a spread operator in javascript?
  • Ans. 

    The spread operator in JavaScript allows an iterable to be expanded into individual elements.

    • The spread operator is denoted by three dots (...) and can be used to expand arrays, objects, or strings.

    • It is commonly used for combining arrays, passing arguments to functions, and creating copies of arrays or objects.

    • Example: const arr1 = [1, 2, 3]; const arr2 = [...arr1, 4, 5]; // arr2 will be [1, 2, 3, 4, 5]

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Normal Communication checking

Skills evaluated in this interview

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
2w
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 applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. C2H profile basic technology based question s only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your answer

Interview Questionnaire 

3 Questions

  • Q1. OOPS concepts
  • Q2. SQL questions
  • Q3. Write a program..
  • Ans. 

    Program to print the Fibonacci series up to a given number.

    • Take input from user for the limit of the series.

    • Initialize two variables with 0 and 1 respectively.

    • Use a loop to generate the series and print each number.

    • Add the previous two numbers to get the next number in the series.

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack
Are these interview questions helpful?

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

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to draw spring mvc architecture and about collection framework.
  • Q2. Asked me to write the logic for pattern.
  • Ans. 

    This question involves creating a specific pattern using loops and conditional statements in programming.

    • Identify the desired pattern (e.g., asterisks, numbers).

    • Use nested loops: outer loop for rows, inner loop for columns.

    • Control the output format with conditional statements.

    • Example: For a pyramid pattern, increase spaces and asterisks in each row.

  • Answered by AI
  • Q3. Asked me on core java.

Interview Preparation Tips

General Tips: be thorough with the core java and good to have knowledge on spring mvc
Skills: Communication
Duration: <1 week

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

Zibtek Interview FAQs

How many rounds are there in Zibtek interview?
Zibtek interview process usually has 2-3 rounds. The most common rounds in the Zibtek interview process are One-on-one Round, Coding Test and Resume Shortlist.
How to prepare for Zibtek 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 Javascript, Software Development, MongoDB, Node.Js and MVC.
What are the top questions asked in Zibtek interview?

Some of the top questions asked at the Zibtek interview -

  1. What is the difference between let,var,con...read more
  2. Difference between regular function and arrow funct...read more
  3. What is a spread operator in javascri...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

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
 • 22 Interviews
View all

Zibtek Reviews and Ratings

based on 20 reviews

4.3/5

Rating in categories

4.4

Skill development

4.2

Work-life balance

3.5

Salary

4.1

Job security

4.3

Company culture

3.9

Promotions

4.0

Work satisfaction

Explore 20 Reviews and Ratings
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