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 Associate Software Engineer Interview Questions and Answers

Updated 6 Jan 2025

Zidio Development Associate Software Engineer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Work-time model and relationship model.

Round 2 - Coding Test 

Based on JavaScript and React.

Round 3 - HR 

(2 Questions)

  • Q1. What are the reasons we should consider hiring you?
  • Q2. What contributions do you envision making to our project management efforts?

Interview Preparation Tips

Interview preparation tips for other job seekers - Give your best confidently and refine your skills.

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

Questions were moderate but we need to manage time to clear this round

Round 2 - One-on-one 

(4 Questions)

  • Q1. Asked to tell about me
  • Q2. Questions on OOPS concept
  • Q3. And basic To moderate SQL questions
  • Q4. Question on DSA
Round 3 - HR 

(3 Questions)

  • Q1. Asked me to tell about me
  • Q2. And asked about my projects
  • Q3. Asked me to tell what my expectations are from Kanerika

Interview Preparation Tips

Topics to prepare for Kanerika Software Associate Software Engineer interview:
  • Java
  • OOPS
  • SQL
  • DSA
  • Aptitude
Interview preparation tips for other job seekers - Prepare well about the projects you did..learn to manage time
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jul 2022. 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 

(2 Questions)

  • Q1. Question related to React JS (which I've applied for) like Hooks Concept, Routes .
  • Q2. Basic JavaScript coding questions
Round 3 - Technical 

(2 Questions)

  • Q1. React Hooks concept-based coding question. Show Increment, decrement button with functionality using Hooks Concept
  • Q2. Write a code for toggle switching with CSS.
  • Ans. 

    Toggle switching with CSS code example

    • Use a checkbox input and label elements

    • Apply CSS styles to hide the checkbox and style the label as a button

    • Use the :checked pseudo-class to toggle styles based on checkbox state

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have strong basic knowledge in Front-end or Back-end (which ever you're applying for)
Prepare basic coding and interview related questions before interview

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

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. What is constructor overloading?
  • Ans. 

    Constructor overloading is when a class has multiple constructors with different parameters.

    • Allows a class to have multiple constructors with different parameter lists

    • Helps in creating objects in different ways based on the parameters passed

    • Example: class Car { Car() {...} Car(String model) {...} }

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What is your current salary, and what are your salary expectations?
  • Ans. 

    I am currently earning $80,000 annually. My salary expectations are in the range of $90,000 to $100,000.

    • Current salary is $80,000 annually

    • Salary expectations are between $90,000 to $100,000

    • Open to negotiation based on benefits and opportunities

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I advise against joining, as a three-month notice period could be detrimental to you; I have previously outlined the disadvantages.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java 8 new features
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to pass functionality as an argument to a method.

    • Functional interfaces have a single abstract method and can be used with lambda expressions.

    • Streams provide a way to work with sequences of elements and perform aggregate operations.

    • Default methods allow interfaces to have ...

  • Answered by AI

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 May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

70 questions in 90 minutes with 7 sections

Round 2 - One-on-one 

(4 Questions)

  • Q1. Introduce yourself
  • Q2. Project description
  • Ans. 

    Developed a web application for tracking project progress and managing tasks

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
  • Q3. Second highest salary
  • Ans. 

    To find the second highest salary in a table, you can use a SQL query with the MAX() function and a subquery.

    • Use a SQL query to select the MAX() salary from the table.

    • Use a subquery to select the MAX() salary that is less than the overall MAX() salary.

    • Combine both queries to get the second highest salary.

  • Answered by AI
  • Q4. What is indexing
  • Ans. 

    Indexing is a technique used to optimize the performance of databases by creating a data structure that allows for quick retrieval of data.

    • Indexing involves creating a data structure that maps the values of specific columns in a database table to their physical location on disk.

    • It helps in speeding up data retrieval operations by allowing the database to quickly locate the rows that match a certain condition.

    • Examples o...

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

(3 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Project description
  • Ans. 

    Developed a web application for tracking project progress and managing tasks

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
  • Q3. Difference between truncate and delete
  • Ans. 

    Truncate is a DDL command that removes all records from a table, while delete is a DML command that removes specific records.

    • Truncate is faster than delete as it does not log individual row deletions.

    • Truncate resets the identity seed of the table, while delete does not.

    • Truncate cannot be rolled back, while delete can be rolled back using a transaction.

    • Truncate does not fire triggers, while delete does.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why you join company
  • Q2. Where you see yourself after 5 years
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on cutting-edge technologies.

    • Leading a team of developers on innovative projects

    • Continuing to enhance my technical skills and knowledge

    • Contributing to the growth and success of the company

    • Possibly pursuing further education or certifications in software development

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - do mysql and dbms after that strong communication skill and also do oops concepts with real world example.

Skills evaluated in this interview

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

Zidio Development Interview FAQs

How many rounds are there in Zidio Development Associate Software Engineer interview?
Zidio Development interview process usually has 3 rounds. The most common rounds in the Zidio Development interview process are Aptitude Test, Coding Test and HR.
What are the top questions asked in Zidio Development Associate Software Engineer interview?

Some of the top questions asked at the Zidio Development Associate Software Engineer interview -

  1. What contributions do you envision making to our project management effor...read more
  2. What are the reasons we should consider hiring y...read more

Tell us how to improve this page.

Zidio Development Associate Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 26 Interviews
Bonami Software Interview Questions
4.1
 • 22 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
WinZO Interview Questions
4.7
 • 14 Interviews
Ivanti Interview Questions
3.6
 • 14 Interviews
SentientGeeks Interview Questions
4.6
 • 13 Interviews
TestVagrant Interview Questions
3.4
 • 13 Interviews
Calibraint Interview Questions
3.5
 • 12 Interviews
View all
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