Upload Button Icon Add office photos
Engaged Employer

i

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

Keyideas Infotech Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 101 Reviews

Filter interviews by

Keyideas Infotech UI Developer Interview Questions and Answers

Updated 21 Feb 2022

Keyideas Infotech UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Suraj Rawat

posted on 21 Feb 2022

I was interviewed before Feb 2021.

Round 1 - Assignment 

Create a webpage

Round 2 - HR 

(1 Question)

  • Q1. Share details of your previous job.
Round 3 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - If your are capable they give you job.

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Because it is the one of best way fearness solution and understand the questions top speak 1st in bold.

Round 2 - Technical 

(2 Questions)

  • Q1. Detail question of Python to explain?
  • Q2. Detail explain of mysql?
  • Ans. 

    MySQL is a popular open-source relational database management system.

    • MySQL is used for storing and managing data in a structured format.

    • It supports SQL for querying and manipulating data.

    • MySQL is known for its speed, reliability, and ease of use.

    • It can be integrated with various programming languages like PHP, Python, Java, etc.

    • Examples of MySQL commands include SELECT, INSERT, UPDATE, DELETE.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. OOPS concetps with DSA
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles, while DSA stands for Data Structures and Algorithms.

    • OOPS concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • DSA involves the study of data structures like arrays, linked lists, trees, and algorithms like sorting and searching.

    • Understanding OOPS helps in designing efficient data structures and algorithms for software development.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was a handson coding test contains 4 coding questions on prime numbers patterns and array it was easy

Round 2 - Technical 

(1 Question)

  • Q1. All questions based on resume on javascript java and react and mainly on projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Aptitude questions along with it contained coding mcq question and sql query questions also

Round 3 - Coding Test 

They gave 3 coding questions and 3 sql queries

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

I applied via Indeed and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. 1.diffrence between javaScript and nodejs
  • Ans. 

    JavaScript is a programming language used for web development, while Node.js is a runtime environment for executing JavaScript code outside of a web browser.

    • JavaScript is primarily used for client-side scripting, while Node.js is used for server-side scripting.

    • JavaScript is executed in a web browser, while Node.js is executed on a server.

    • Node.js provides additional modules and libraries for server-side development, suc...

  • Answered by AI
  • Q2. 2.Tell me the angular lifecycle
  • Ans. 

    Angular lifecycle consists of eight different phases.

    • The first phase is ngOnChanges() which is called when a component receives data-bound input properties.

    • The second phase is ngOnInit() which is called once the component is initialized.

    • The third phase is ngDoCheck() which is called during every change detection run.

    • The fourth phase is ngAfterContentInit() which is called after the component's content has been projecte...

  • Answered by AI
  • Q3. 3. what is the use of ORM Tool
  • Ans. 

    ORM tool is used to map object-oriented programming language to a relational database management system.

    • ORM tool helps in reducing the amount of code required to interact with the database.

    • It provides an abstraction layer between the application and the database.

    • ORM tool helps in managing the database schema and relationships between tables.

    • It allows developers to work with objects instead of SQL statements.

    • Examples of...

  • Answered by AI
  • Q4. 4. What is form control build.
  • Ans. 

    Form control build refers to the process of creating and customizing form controls in web development.

    • Form controls are elements like text boxes, radio buttons, and dropdown menus that allow users to input data on a website.

    • Developers can use HTML, CSS, and JavaScript to build and style form controls to fit the needs of their website or application.

    • Form control build also involves adding validation and error handling t

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Theoretical Knowledged of angular I fronted development and node js for backend development.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

40 aptitude questions from different aptitude topics which are of average level questions and 1 hour is provided to solve them.

Round 3 - Technical 

(2 Questions)

  • Q1. There are basic questions from the skills you have mentioned in your resume. And some technical problem solving questions are also there which are of medium level.
  • Q2. 1. Basic coding question from python. 2. Theoretical questions from python.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1)what is async and await.
  • Ans. 

    Async and await are keywords used in asynchronous programming in JavaScript.

    • Async is used to define a function that returns a promise.

    • Await is used to pause the execution of a function until a promise is resolved.

    • Async/await makes asynchronous code look and behave like synchronous code.

    • Example: async function getData() { const response = await fetch('https://example.com/data'); return response.json(); }

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. 1)why nodejs is more popular
  • Ans. 

    Node.js is popular due to its event-driven, non-blocking I/O model and ability to handle large amounts of data.

    • Node.js allows for faster and more efficient development due to its use of JavaScript on both the front-end and back-end.

    • Node.js has a large and active community, with many open-source libraries and modules available.

    • Node.js is scalable and can handle high traffic and large amounts of data, making it a popular...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Myrsa Technology Solutions Backend Developer interview:
  • nodejs
  • Typescript
Interview preparation tips for other job seekers - we should know the knowledge typescript and sql query is mandatory

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Project details
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Mar 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Assignment 

Create crud operation using angular,nodejs,mysql

Round 3 - Technical 

(1 Question)

  • Q1. Coding question base on previous programing experience
Round 4 - HR 

(1 Question)

  • Q1. Final round asked about previous experience

Keyideas Infotech Interview FAQs

How many rounds are there in Keyideas Infotech UI Developer interview?
Keyideas Infotech interview process usually has 3 rounds. The most common rounds in the Keyideas Infotech interview process are HR and Assignment.
How to prepare for Keyideas Infotech UI Developer 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 Keyideas Infotech. The most common topics and skills that interviewers at Keyideas Infotech expect are Ajax, Angular, HTML, Javascript and Bootstrap.

Tell us how to improve this page.

Interview Questions from Similar Companies

CGS Interview Questions
3.5
 • 26 Interviews
ElectrifAi Interview Questions
2.6
 • 17 Interviews
Fusion Interview Questions
3.2
 • 17 Interviews
View all
Keyideas Infotech UI Developer Salary
based on 10 salaries
₹2.5 L/yr - ₹4 L/yr
48% less than the average UI Developer Salary in India
View more details

Keyideas Infotech UI Developer Reviews and Ratings

based on 3 reviews

4.7/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.5

Salary

4.7

Job security

4.7

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 3 Reviews and Ratings
Software Developer
12 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

UI Developer
10 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Software Engineer
7 salaries
unlock blur

₹5 L/yr - ₹7.5 L/yr

UI/UX Designer
7 salaries
unlock blur

₹3.8 L/yr - ₹6 L/yr

QA Analyst
5 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Explore more salaries
Compare Keyideas Infotech with

SPARX IT Solutions

3.6
Compare

Techugo

4.1
Compare

Promatics Technologies

3.2
Compare

Hidden Brains InfoTech

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