Upload Button Icon Add office photos
Engaged Employer

i

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

Zidio Development Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Zidio Development Web Developer Interview Questions and Answers

Updated 14 Jan 2025

Zidio Development Web Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
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 

Questions related to relationships.

Round 2 - Coding Test 

Data Structures and Algorithms (DSA) related to Java and Bootstrap.

Web Developer Interview Questions & Answers

user image Anonymous

posted on 14 Jan 2025

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

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

Round 1 - Coding Test 

The level of difficulty is based on your knowledge.

Round 2 - Group Discussion 

We discussed our qualifications.

Interview Preparation Tips

Interview preparation tips for other job seekers - Zidio Development is an excellent company.

Web Developer Interview Questions Asked at Other Companies

Q1. Last Index of Element The task is to determine the index of the l ... read more
Q2. Check Indices With Given Difference Problem Statement You are pro ... read more
asked in Evalueserve
Q3. Reverse Linked List Problem Statement Given a singly linked list ... read more
Q4. Intersection of Linked List Problem You are provided with two sin ... read more
Q5. Most Frequent Non-Banned Word Problem Statement Given a paragraph ... read more

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions to start with. then as rounds proceeds you can see the questions being more application oriented.

Interview Preparation Tips

Interview preparation tips for other job seekers - I had 3 rounds of technical interview. One of the toughest interview panel I have come across. It is important to know the technical concept as well as the scenarios where you will be using it.

They give enough time and keep you comfortable. All you have to do is solve it meticulously and they are more in to the approach than the solutions.

All the best.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 - Coding Test 

1st round we had 3 coding question that has to be written(Easy,Medium,Hard)

Round 3 - Group Discussion 

We had Gd with self intro

Round 4 - Technical 

(2 Questions)

  • Q1. Tell me about Yourself
  • Q2. He gave me a coding question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

DSA coding easy ,time complexity,space complexity

Round 2 - HR 

(2 Questions)

  • Q1. Tiktactoo logic,SQL,
  • Q2. Tell about yourself
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Written Coding Test - Arrays, Matrix in any language

Round 2 - Group Discussion 

GD is Group Discussion only shortlisted students will attend GD Round

Round 3 - Technical 

(2 Questions)

  • Q1. I've not attended
  • Q2. Then there will be a HR Round
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

Coding test in any language

Round 3 - Group Discussion 

Any topics for the GD

Round 4 - One-on-one 

(4 Questions)

  • Q1. Experience about the java script
  • Q2. My work experience about the java scirpt
  • Q3. Palindrome in any code language
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the input string is equal to its reverse

    • Ignore spaces and punctuation when checking for palindromes

    • Convert the input string to lowercase for case-insensitive comparison

  • Answered by AI
  • Q4. Other general maths programming questions

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Peak element in array
  • Ans. 

    A peak element in an array is an element that is greater than or equal to its neighbors.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • If the element at index i is greater than or equal to elements at indices i-1 and i+1, it is a peak element.

    • Example: ['1', '3', '2', '4', '1'] has peak elements at index 1 and 3.

  • Answered by AI
  • Q2. 2 dimentional array rotate 90 degree
  • Ans. 

    Rotate a 2D array by 90 degrees clockwise

    • Transpose the array

    • Reverse each row of the transposed array

  • Answered by AI
Round 2 - Group Discussion 

Pollitices current generation

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1.what are joins 2.what is normalisation 3.oops pillers4.
  • Ans. 

    Questions related to database and object-oriented programming concepts.

    • Joins are used to combine data from two or more tables based on a related column.

    • Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • OOPs pillars are Abstraction, Encapsulation, Inheritance, and Polymorphism.

  • Answered by AI
  • Q2. 4.program on array
  • Ans. 

    An array is a collection of elements of the same data type stored in contiguous memory locations.

    • Arrays can be one-dimensional or multi-dimensional

    • Elements in an array can be accessed using their index

    • Arrays can be initialized during declaration or later in the code

    • Arrays can be passed as arguments to functions

    • Common array operations include sorting and searching

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All questions asked was basic level to check the basic understanding

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is your experience
  • Q2. Reverse given string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string and build a new string in reverse order

    • Alternatively, you can use built-in functions like reverse() or StringBuilder in some programming languages

  • Answered by AI
  • Q3. How to find if string is palindrome
  • Ans. 

    Check if a string reads the same forwards and backwards

    • Iterate through the string from both ends and compare characters

    • Use built-in functions like reverse() or slice() to check for palindrome

    • Ignore spaces and punctuation when checking for palindrome

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No need to prepare data structures or algorithm. Just if you have basic knowledge able to clear. Interviewer also not very clear

Skills evaluated in this interview

Zidio Development Interview FAQs

How many rounds are there in Zidio Development Web Developer interview?
Zidio Development interview process usually has 2 rounds. The most common rounds in the Zidio Development interview process are Coding Test, Aptitude Test and Group Discussion.

Tell us how to improve this page.

Zidio Development Web Developer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.2
 • 26 Interviews
Bonami Software Interview Questions
4.1
 • 22 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
WinZO Interview Questions
4.8
 • 14 Interviews
Ivanti Interview Questions
3.6
 • 14 Interviews
TestVagrant Interview Questions
3.4
 • 13 Interviews
SentientGeeks Interview Questions
4.6
 • 13 Interviews
Calibraint Interview Questions
3.5
 • 12 Interviews
View all

Zidio Development Web Developer Reviews and Ratings

based on 8 reviews

3.8/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.4

Salary

3.6

Job security

3.5

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 8 Reviews and Ratings
UI/UX Designer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

UI UX Design Intern
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Web Development Intern
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Full Stack Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Intern
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Zidio Development with

NexTurn

4.1
Compare

Kanerika Software

4.5
Compare

Smarter BIZ Technologies

3.2
Compare

Nxtra Data

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview