Upload Button Icon Add office photos

Filter interviews by

Zedex Info Pvt Ltd Interview Questions and Answers

Updated 11 Aug 2024

7 Interview questions

A Front end Developer was asked 10mo ago
Q. What input type is used during form submission but is not visible to the user?
Ans. 

Hidden input type is used during form submission

  • is used to include data in form submission without displaying it to the user

  • Commonly used for passing values like session tokens or tracking information

View all Front end Developer interview questions
A Front end Developer was asked 10mo ago
Q. How do you get URL parameters using JavaScript?
Ans. 

Use window.location.search or URLSearchParams to get URL params in JavaScript

  • Use window.location.search to get the query string portion of the URL

  • Use URLSearchParams to parse and extract individual parameters from the query string

  • Example: const params = new URLSearchParams(window.location.search); const paramValue = params.get('paramName');

View all Front end Developer interview questions
A Front end Developer was asked
Q. How do you add a background image?
Ans. 

To add a background image, use CSS background-image property.

  • Create a CSS class or ID for the element you want to add the background image to.

  • Use the background-image property to specify the URL of the image.

  • Set the background-size property to cover or contain the element.

  • Example: .container { background-image: url('image.jpg'); background-size: cover; }

View all Front end Developer interview questions
A Front end Developer was asked
Q. What are the differences between Flexbox and Grid layout?
Ans. 

Flex is one-dimensional layout while Grid is two-dimensional layout.

  • Flex is used for creating flexible and responsive layouts.

  • Grid is used for creating complex and structured layouts.

  • Flex is best suited for small-scale layouts while Grid is best suited for large-scale layouts.

  • Flex is easier to learn and implement while Grid requires more advanced knowledge.

  • Flex is supported by older browsers while Grid has limited...

View all Front end Developer interview questions
A Front end Developer was asked
Q. How can you center three divs vertically and horizontally using CSS?
Ans. 

To center 3 divs vertically and horizontally, use flexbox and align-items/justify-content properties.

  • Wrap the 3 divs in a parent container

  • Set the parent container's display property to flex

  • Set the parent container's align-items and justify-content properties to center

View all Front end Developer interview questions
A Front end Developer was asked
Q. What is the difference between position: absolute and position: relative in CSS?
Ans. 

Position sets an element's position relative to its parent, while relative sets an element's position relative to its normal position.

  • Position: sets an element's position relative to its parent container

  • Relative: sets an element's position relative to its normal position

  • Positioned elements are taken out of the normal flow of the document

  • Relative elements are still in the normal flow of the document

  • Positioned eleme...

View all Front end Developer interview questions
A Front end Developer was asked
Q. What is the difference between block and inline-block elements?
Ans. 

Block elements take up the full width available, while inline-block elements only take up as much width as necessary.

  • Block elements start on a new line and take up the full width available (e.g. <div>).

  • Inline-block elements do not start on a new line and only take up as much width as necessary (e.g. <span>).

  • Block elements can have margins and padding applied to all four sides, while inline-block elemen...

View all Front end Developer interview questions
Are these interview questions helpful?

Zedex Info Pvt Ltd Interview Experiences

3 interviews found

Front end Developer Interview Questions & Answers

user image Prathamesh Jadhav

posted on 19 Aug 2023

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

I applied via Referral 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 - Aptitude Test 

The aptitude test duration was 1 hour. In this test, the basic question of HTML CSS was asked for example what is the difference between div and span, what is the CSS box model and some javascript logic question. Overall the aptitude test was easy if know the HTML CSS very well.

Round 3 - Assignment 

The assignment will be given to you mostly, like creating a landing page using pure HTML and CSS. No bootstrap or any other frameworks. If you are applying for a different role other than the frontend then the assignment will be different.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be prepared for the role you are applying, if you know the basics then you can easily crack the hiring process.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. How to centre 3 div vertically and horizontally using css
  • Ans. 

    To center 3 divs vertically and horizontally, use flexbox and align-items/justify-content properties.

    • Wrap the 3 divs in a parent container

    • Set the parent container's display property to flex

    • Set the parent container's align-items and justify-content properties to center

  • Answered by AI
  • Q2. Difference between position and relative
  • Ans. 

    Position sets an element's position relative to its parent, while relative sets an element's position relative to its normal position.

    • Position: sets an element's position relative to its parent container

    • Relative: sets an element's position relative to its normal position

    • Positioned elements are taken out of the normal flow of the document

    • Relative elements are still in the normal flow of the document

    • Positioned elements c...

  • Answered by AI
  • Q3. Difference between block and inline- block
  • Ans. 

    Block elements take up the full width available, while inline-block elements only take up as much width as necessary.

    • Block elements start on a new line and take up the full width available (e.g. <div>).

    • Inline-block elements do not start on a new line and only take up as much width as necessary (e.g. <span>).

    • Block elements can have margins and padding applied to all four sides, while inline-block elements on...

  • Answered by AI
  • Q4. Difference between flex and grid
  • Ans. 

    Flex is one-dimensional layout while Grid is two-dimensional layout.

    • Flex is used for creating flexible and responsive layouts.

    • Grid is used for creating complex and structured layouts.

    • Flex is best suited for small-scale layouts while Grid is best suited for large-scale layouts.

    • Flex is easier to learn and implement while Grid requires more advanced knowledge.

    • Flex is supported by older browsers while Grid has limited supp...

  • Answered by AI
  • Q5. How to add background image
  • Ans. 

    To add a background image, use CSS background-image property.

    • Create a CSS class or ID for the element you want to add the background image to.

    • Use the background-image property to specify the URL of the image.

    • Set the background-size property to cover or contain the element.

    • Example: .container { background-image: url('image.jpg'); background-size: cover; }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and stick to basics
all the best for your future

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to get URL params using javascript
  • Ans. 

    Use window.location.search or URLSearchParams to get URL params in JavaScript

    • Use window.location.search to get the query string portion of the URL

    • Use URLSearchParams to parse and extract individual parameters from the query string

    • Example: const params = new URLSearchParams(window.location.search); const paramValue = params.get('paramName');

  • Answered by AI
  • Q2. Input type used during form submission but not visible to the user
  • Ans. 

    Hidden input type is used during form submission

    • is used to include data in form submission without displaying it to the user

    • Commonly used for passing values like session tokens or tracking information

  • Answered by AI
Round 2 - Assignment 

To relicate a design layout using HTML, CSS, Javascript and make it responsive

Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiations

Skills evaluated in this interview

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 Zedex Info Pvt Ltd?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Mar 2022. 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 - Aptitude Test 

Interview Preparation Tips

Topics to prepare for Busibud Front end Developer interview:
  • Html
  • JavaScript
  • CSS
Interview preparation tips for other job seekers - Everyone should do their honesty with their own hard work, then only you can become successful in life.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa with medium leetcode questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Lru cache with optimisation
  • Ans. 

    Implementing an LRU cache with optimization techniques for efficient data storage and retrieval.

    • Use a doubly linked list to keep track of the most recently used items

    • Implement a hash map for fast lookups and updates

    • Optimize by using a combination of both data structures for efficient cache management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep focus on basic dsa

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The first round is aptitude round it is basically on aptitude, reasoning

Round 2 - Coding Test 

They give some mid level dsa questions

Interview Preparation Tips

Interview preparation tips for other job seekers - they preffer who completed the test quickly

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

Interview Questionnaire 

2 Questions

  • Q1. DS and Algo questions based on DP and backtracking
  • Q2. Clone linked list with random pointers.
  • Ans. 

    Clone a linked list with random pointers.

    • Create a new node for each node in the original list.

    • Store the mapping between the original and cloned nodes in a hash table.

    • Traverse the original list again and set the random pointers in the cloned list using the hash table.

    • Return the head of the cloned list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly DS and Algo rounds followed by design rounds. Sometimes there can be language specific questions.

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. What's is your ambition
  • Ans. 

    My ambition is to grow as a professional, contribute meaningfully, and lead innovative projects that make a positive impact.

    • I aim to develop my skills in project management, ensuring successful delivery of initiatives.

    • I aspire to lead a team, fostering collaboration and creativity to achieve common goals.

    • I want to contribute to sustainable practices in my field, such as implementing eco-friendly solutions.

    • I envision my...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go and attend the interview with fearless

Interview Questionnaire 

1 Question

  • Q1. Can you handle a team.
  • Ans. Yes presently I have 10 members TEAM.
  • Answered Anonymously

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

Interview Questionnaire 

1 Question

  • Q1. Egerly they asked questions about your inner confidence of tha job seekers

Interview Preparation Tips

Interview preparation tips for other job seekers - Ntg is impossible first you consatret your looking i meen your dress sens... first impression is tha best impression so u look complete formally & kindly answer tha questions very confidently ..be honest delivered good communication skills

Zedex Info Pvt Ltd Interview FAQs

How many rounds are there in Zedex Info Pvt Ltd interview?
Zedex Info Pvt Ltd interview process usually has 2-3 rounds. The most common rounds in the Zedex Info Pvt Ltd interview process are Resume Shortlist, Assignment and One-on-one Round.
How to prepare for Zedex Info Pvt Ltd 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 Zedex Info Pvt Ltd. The most common topics and skills that interviewers at Zedex Info Pvt Ltd expect are Javascript, Wordpress, HTML, JQuery and SEO.
What are the top questions asked in Zedex Info Pvt Ltd interview?

Some of the top questions asked at the Zedex Info Pvt Ltd interview -

  1. How to centre 3 div vertically and horizontally using ...read more
  2. Input type used during form submission but not visible to the u...read more
  3. Difference between block and inline- bl...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Deltax Interview Questions
2.7
 • 88 Interviews
Wayfair Interview Questions
3.6
 • 60 Interviews
Tradeshala Interview Questions
4.5
 • 51 Interviews
KLA Interview Questions
3.8
 • 48 Interviews
Apptunix Interview Questions
4.1
 • 44 Interviews
Busibud Interview Questions
3.9
 • 42 Interviews
View all

Zedex Info Pvt Ltd Reviews and Ratings

based on 11 reviews

4.0/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.5

Salary

3.4

Job security

4.0

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 11 Reviews and Ratings
Web Developer
7 salaries
unlock blur

₹1.4 L/yr - ₹4 L/yr

Front end Developer
6 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Software Developer
4 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Senior Web Developer Team Lead
4 salaries
unlock blur

₹4.2 L/yr - ₹6 L/yr

Web Designer
3 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Explore more salaries
Compare Zedex Info Pvt Ltd with

Amazon Sellers Services

4.0
Compare

Primus Global Technologies

3.9
Compare

GAMMON INDIA

3.8
Compare

Magneti Marelli Motherson Auto System

3.8
Compare
write
Share an Interview