Upload Button Icon Add office photos

Filter interviews by

Effiya Technologies Front end Developer Interview Questions and Answers

Updated 14 Oct 2024

Effiya Technologies Front end Developer Interview Experiences

1 interview found

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 Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

The round 1 was aptitude round, solve 40 questions in 60 mins.

Round 2 - Coding Test 

There was a written coding test. There you were provided with problem statement, i was given a Binary tree problem basic BFS and DFS , the other set was of conversion of array to matrix. You have to solve the questions, providing the space and time complexity of the problem.

Round 3 - Technical 

(5 Questions)

  • Q1. Tell me about yourself, go through your resume and describe its content.
  • Ans. 

    I am a front end developer with experience in HTML, CSS, JavaScript, and frameworks like React and Angular.

    • Proficient in HTML, CSS, and JavaScript

    • Experience with front end frameworks like React and Angular

    • Familiar with responsive design and cross-browser compatibility

    • Strong problem-solving skills and attention to detail

    • Previous projects include building interactive web applications and optimizing website performance

  • Answered by AI
  • Q2. Elaborate any one project you have worked on.
  • Ans. 

    Developed a responsive e-commerce website for a clothing brand

    • Used HTML, CSS, and JavaScript to create the front end

    • Implemented a user-friendly interface with smooth navigation

    • Integrated payment gateway for online transactions

    • Optimized website for mobile devices for better user experience

  • Answered by AI
  • Q3. Design a frontend application on the case study given.
  • Q4. Remove duplicates from string array. Array to matrix conversion.
  • Ans. 

    Remove duplicates from string array and convert array to matrix.

    • Use a Set to remove duplicates from the string array.

    • To convert the array to a matrix, determine the number of rows and columns and then populate the matrix accordingly.

    • Example: ['apple', 'banana', 'apple', 'orange'] can be converted to [['apple', 'banana'], ['orange']]

  • Answered by AI
  • Q5. Case study on sql

Interview Preparation Tips

Topics to prepare for Effiya Technologies Front end Developer interview:
  • Dsa
  • Web Development
  • SQL
Interview preparation tips for other job seekers - Go through your project in detail and know each and every concept related to the project.

Skills evaluated in this interview

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 Effiya Technologies?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Bootstrap
  • Q2. Javascript

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR ... read more
Q2. Find Unique Element in Array You have been provided an integer ar ... read more
asked in JUSPAY
Q3. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q4. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
Q5. Check If Linked List Is Palindrome Given a singly linked list of ... read more

I applied via LinkedIn

Interview Questionnaire 

1 Question

  • Q1. Questions on basic html,css,javascript,angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Go specifically through the requirements mentioned in job profile before attending the interview to keep interviewer and us in the same page.

Interview Questionnaire 

1 Question

  • Q1. What is event bubling
  • Ans. 

    Event bubbling is the process of propagating an event from the innermost element to its parent elements in the DOM hierarchy.

    • Events in JavaScript are triggered on elements and then propagate up the DOM tree.

    • During event bubbling, an event triggered on a child element will also trigger on its parent elements.

    • This allows for event delegation, where a single event handler can be used for multiple elements.

    • Event.stopPropag...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. 1. Basic html schemantics
  • Q2. 2. Pure JS
  • Q3. 3. Angular advance

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard Interview process
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

An aptitude test is a way for employers to assess a candidate's abilities through a variety of different testing formats. Aptitude tests will test your ability to perform tasks and react to situations at work. This includes problem-solving, prioritisation and numerical skills, amongst other things.

Round 3 - Assignment 

An assignment is the transfer of rights or property. In financial markets, it is a notice to an options writer that the option has been exercised.

Interview Preparation Tips

Interview preparation tips for other job seekers - Finding a job is easier said than done. While you may know to submit a professional résumé, write a thoughtful cover letter and practice before an interview, sometimes you still don't get the job.

While every job-search experience is different, it's helpful to hear from others who are in or have been in the same boat as you. Here, experts and past job seekers share some of their best advice for landing your dream role:
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is mean by dom
  • Ans. 

    DOM stands for Document Object Model, which is a programming interface for web documents.

    • DOM is a representation of the structure of a web page, allowing scripts to dynamically access and update the content, structure, and style of the document.

    • It provides a way for scripts to interact with the web page by accessing and manipulating elements like text, images, forms, etc.

    • DOM is platform and language-independent, allowi...

  • Answered by AI
  • Q2. Explain promise in typescript
  • Ans. 

    Promises in TypeScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in a more readable and manageable way.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: const myPromise = new Promise((resolve, reject) => { ... ...

  • Answered by AI
  • Q3. Explain hooks in javascript
  • Ans. 

    Hooks in JavaScript are functions that let you use state and other React features without writing a class.

    • Hooks were introduced in React 16.8 to allow functional components to have state and lifecycle methods.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are functions that allow you to reuse ...

  • Answered by AI
  • Q4. Write a program 1 to 100 prime numbers
  • Ans. 

    Generate an array of prime numbers from 1 to 100.

    • Iterate from 1 to 100 and check if each number is prime

    • A prime number is only divisible by 1 and itself

    • Start with a list of prime numbers and check divisibility

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Reactive form and crud operations pipes crud operations

Round 2 - Technical 

(1 Question)

  • Q1. Basic understanding of js and angular is must expeciallly how js works questions on arrays objects shallow deep copy
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Web application to locate the map

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self.projects
  • Q2. Project questions ask
  • Ans. 

    Discussing project experiences showcases skills and problem-solving in front-end development.

    • Describe a project where you implemented responsive design using CSS frameworks like Bootstrap.

    • Share an example of optimizing web performance, such as reducing load times through image compression.

    • Discuss collaboration with back-end developers to integrate APIs, like fetching data from a RESTful service.

    • Mention a challenge face...

  • Answered by AI

I applied via Company Website

Round 1 - Aptitude Test 

Frontend related aptitude test

Round 2 - Coding Test 

Design website page.

Interview Preparation Tips

Topics to prepare for Infosys Front end Developer interview:
  • Html css javascript
  • Bootstrap
Interview preparation tips for other job seekers - First round
Aptitude test

Second round
Coding test

Effiya Technologies Interview FAQs

How many rounds are there in Effiya Technologies Front end Developer interview?
Effiya Technologies interview process usually has 3 rounds. The most common rounds in the Effiya Technologies interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Effiya Technologies Front end Developer interview?

Some of the top questions asked at the Effiya Technologies Front end Developer interview -

  1. Remove duplicates from string array. Array to matrix conversi...read more
  2. Design a frontend application on the case study giv...read more
  3. Case study on ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Software Engineer
11 salaries
unlock blur

₹6.4 L/yr - ₹14.1 L/yr

Analyst
7 salaries
unlock blur

₹9 L/yr - ₹14 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Software Developer
4 salaries
unlock blur

₹6 L/yr - ₹11.5 L/yr

Business Analyst
4 salaries
unlock blur

₹11.7 L/yr - ₹14 L/yr

Explore more salaries
Compare Effiya Technologies with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview