Upload Button Icon Add office photos

Filter interviews by

Gyaan AI Interview Questions, Process, and Tips

Updated 27 Dec 2024

Top Gyaan AI Interview Questions and Answers

View all 29 questions

Gyaan AI Interview Experiences

Popular Designations

4 interviews found

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technicalย 

(12 Questions)

  • Q1. Introduce youself.
  • Ans. 

    I am a passionate frontend developer with experience in HTML, CSS, and JavaScript.

    • Experienced in building responsive websites using HTML and CSS

    • Proficient in JavaScript for interactive web applications

    • Familiar with frontend frameworks like React and Angular

  • Answered by AI
  • Q2. What all things you have implemented in react throughout your journey?
  • Ans. 

    I have implemented various features in React such as state management, routing, API integration, and component lifecycle methods.

    • State management using useState and useReducer hooks

    • Routing with React Router

    • API integration with fetch or axios

    • Component lifecycle methods like componentDidMount and componentDidUpdate

  • Answered by AI
  • Q3. What versions of react have you used?
  • Ans. 

    I have used React versions 16 and 17 in my projects.

    • Used React 16 for a project that required class components and lifecycle methods

    • Currently using React 17 for a project that focuses on functional components and hooks

  • Answered by AI
  • Q4. What all libraries you have used apart from styling library?
  • Ans. 

    I have used libraries like React, Redux, Axios, and Moment.js for frontend development.

    • React

    • Redux

    • Axios

    • Moment.js

  • Answered by AI
  • Q5. Does redux have its own ability to persist state?
  • Ans. 

    Yes, Redux does not have built-in persistence for state.

    • Redux itself does not have built-in persistence for state

    • Persisting state in Redux typically involves using middleware like redux-persist or saving state to local storage

    • Examples of persisting state in Redux include using redux-persist to save state to local storage or using cookies to store state

  • Answered by AI
  • Q6. Console.log([]===[])
  • Ans. 

    The output will be false because arrays are reference types and the comparison is based on reference, not values.

    • Arrays are reference types in JavaScript, so when comparing two arrays using ===, it checks if they refer to the same object in memory.

    • Since the two empty arrays [] are separate instances in memory, the comparison will result in false.

  • Answered by AI
  • Q7. Console.log(a) var a =10; console.log(a)
  • Ans. 

    The code will output 'undefined' and then '10' in the console.

    • The variable 'a' is declared after the first console.log statement, so it will be undefined at that point.

    • The value of 'a' is assigned as 10 before the second console.log statement, so it will output 10.

  • Answered by AI
  • Q8. Write a function what will take time as argument in seconds and it will console.log from that value to 0.
  • Q9. How states are passed in react?
  • Ans. 

    States in React are passed down from parent components to child components using props.

    • States are passed down as props from parent components to child components

    • Parent components can pass states to child components using props

    • States can be updated in parent components and passed down to child components for re-rendering

  • Answered by AI
  • Q10. Difference between useContext and redux.
  • Ans. 

    useContext is a React hook for managing global state within a component tree, while Redux is a standalone state management library for React applications.

    • useContext is built into React and is used for managing local state within a component or passing data down through the component tree.

    • Redux is a separate library that allows for managing global state across the entire application, with actions and reducers to update ...

  • Answered by AI
  • Q11. Use of useSelector hook and useDispatch hook.
  • Ans. 

    useSelector and useDispatch hooks are used in React Redux for accessing state and dispatching actions respectively.

    • useSelector hook is used to extract data from the Redux store state in a functional component.

    • useDispatch hook is used to dispatch actions to the Redux store in a functional component.

    • Example: const data = useSelector(state => state.data); dispatch(action());

  • Answered by AI
  • Q12. Use useContext. to implement increment and decrement feature
  • Ans. 

    Using useContext to implement increment and decrement feature in React

    • Create a context using createContext()

    • Define a provider component to wrap the components that need access to the context

    • Use useContext() hook in the components to access the context and update the state

    • Implement functions for increment and decrement within the context provider

  • Answered by AI
Round 2 - Technicalย 

(17 Questions)

  • Q1. This a theoritical round. Only theory will be asked. A lot of theory.
  • Q2. What version of react u r using currently?
  • Ans. 

    We are currently using React version 17.0.2.

    • React version 17.0.2 is the latest stable version at the time of this interview.

    • It was released on March 22, 2021, and includes improvements like React Hooks, Concurrent Mode, and more.

    • We regularly update our dependencies to stay up-to-date with the latest features and improvements.

  • Answered by AI
  • Q3. Debouncing vs throttling
  • Ans. 

    Debouncing and throttling are techniques used in web development to limit the number of times a function is called.

    • Debouncing delays the execution of a function until after a specified time has elapsed without any further calls. It is typically used for events like scroll or resize that can fire multiple times in a short period.

    • Throttling limits the rate at which a function is called. It ensures that the function is no...

  • Answered by AI
  • Q4. Why typescript is used?
  • Ans. 

    TypeScript is used to add static typing to JavaScript, catching errors at compile time and improving code quality.

    • Provides static typing, catching errors at compile time

    • Improves code quality and maintainability

    • Supports modern JavaScript features like ES6+

    • Enhances code editor tooling and IntelliSense

    • Facilitates easier refactoring and code navigation

  • Answered by AI
  • Q5. How redux passes states to components
  • Ans. 

    Redux passes states to components through the connect function provided by react-redux library.

    • Redux passes states to components by connecting the component to the Redux store using the connect function.

    • The connect function takes mapStateToProps as an argument, which maps the state from the Redux store to props of the component.

    • The connected component can then access the state from the Redux store as props.

  • Answered by AI
  • Q6. What are the storages browser use
  • Ans. 

    Browsers use various storage options like cookies, local storage, session storage, and IndexedDB.

    • Cookies are small pieces of data stored in the browser that can be accessed by both the server and the client.

    • Local storage allows storing data without expiration date, and it remains even after the browser is closed.

    • Session storage is similar to local storage but data is cleared when the session ends.

    • IndexedDB is a low-lev...

  • Answered by AI
  • Q7. Principles of redux and exaplain each principle
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Single source of truth: The state of your whole application is stored in an object tree within a single store.

    • State is read-only: The only way to change the state is to emit an action, an object describing what happened.

    • Changes are made with pure functions: To specify how the state tree is transformed by actions, you write pure reducers.

    • State changes are made w...

  • Answered by AI
  • Q8. Can we have multiple stores in redux
  • Ans. 

    Yes, multiple stores can be created in Redux for managing different parts of the application state.

    • Redux allows creating multiple stores, each with its own reducers and actions

    • This can be useful for managing different parts of the application state separately

    • Example: creating one store for user authentication and another for managing shopping cart

  • Answered by AI
  • Q9. What storage does redux use in browser
  • Ans. 

    Redux uses the browser's localStorage as its default storage mechanism.

    • Redux uses the browser's localStorage API to persist state across sessions.

    • The data stored in localStorage is serialized to a string before being saved.

    • Developers can also implement custom storage solutions by creating middleware in Redux.

  • Answered by AI
  • Q10. Have you worked with flux? As my answer was no so no futher questions were asked
  • Q11. What is css dom
  • Ans. 

    The CSS DOM (Document Object Model) is a representation of the structure of a webpage created by CSS styles.

    • CSS DOM is a tree-like structure that represents the HTML elements of a webpage along with their CSS styles.

    • It allows developers to access and manipulate the styles of HTML elements using CSS properties and selectors.

    • Changes made to the CSS DOM dynamically update the visual appearance of the webpage.

    • Example: Sele...

  • Answered by AI
  • Q12. What storage does states use in browser
  • Ans. 

    Browsers use various storage options for state management, including cookies, local storage, session storage, and IndexedDB.

    • Cookies: small pieces of data stored in the browser that can be accessed by both the server and client

    • Local Storage: stores data with no expiration date, and remains after the browser is closed

    • Session Storage: stores data for one session only, and is cleared when the browser is closed

    • IndexedDB: a ...

  • Answered by AI
  • Q13. Difference between useContext and useReducer
  • Ans. 

    useContext is used for accessing context values in functional components, while useReducer is used for managing state in a more complex way.

    • useContext is used for accessing context values without prop drilling

    • useReducer is used for managing state in a more complex way by using a reducer function

    • useContext is simpler and more straightforward, while useReducer provides more control and flexibility

    • Example: useContext can ...

  • Answered by AI
  • Q14. What is specificity in css
  • Ans. 

    Specificity in CSS determines which style rule is applied to an element when multiple rules have conflicting selectors.

    • Specificity is calculated based on the type of selector used in a CSS rule.

    • Inline styles have the highest specificity, followed by IDs, classes, and elements.

    • Specificity is represented by a four-part value, with each part corresponding to a different type of selector.

    • For example, the selector 'div p' h

  • Answered by AI
  • Q15. Do you know virtualization
  • Ans. 

    Virtualization is the process of creating a virtual version of a device or resource, such as a server, storage device, network or operating system.

    • Virtualization allows multiple virtual instances to run on a single physical machine, maximizing resource utilization.

    • Examples of virtualization technologies include VMware, VirtualBox, and Docker.

    • Virtualization can improve scalability, flexibility, and efficiency in IT envi

  • Answered by AI
  • Q16. What is critical rendering path
  • Ans. 

    The critical rendering path is the sequence of steps browsers take to convert HTML, CSS, and JavaScript into pixels on the screen.

    • Includes steps like parsing HTML, constructing the DOM tree, rendering the CSSOM, combining them into a render tree, layout, and painting.

    • Optimizing the critical rendering path involves minimizing render-blocking resources, reducing the number of critical resources, and optimizing the order ...

  • Answered by AI
  • Q17. What is infinite scrolling?
  • Ans. 

    Infinite scrolling is a design pattern that continuously loads content as the user scrolls down a webpage.

    • Infinite scrolling helps to provide a seamless user experience by eliminating the need for pagination.

    • It is commonly used in social media feeds, image galleries, and news websites.

    • Infinite scrolling can be implemented using JavaScript to fetch and append new content dynamically.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Gyaan AI Junior Frontend Developer interview:
  • Javascript
  • React
  • Flux
  • Typescript
  • Css
Interview preparation tips for other job seekers - Have a good grasp on theory in 2nd round round they ask a lot of indepth theory. If I clear this round I will share experience of 3rd round

Skills evaluated in this interview

Top Gyaan AI Junior Frontend Developer Interview Questions and Answers

Q1.ย What all libraries you have used apart from styling library?
View answer (1)

Junior Frontend Developer Interview Questions asked at other Companies

Q1.ย What all libraries you have used apart from styling library?
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Cutshort and was interviewed in Nov 2024.ย There were 2 interview rounds.

Round 1 - Aptitude Testย 

A Genreral aptitute Test

Round 2 - One-on-oneย 

(5 Questions)

  • Q1. Write a program in React to dispaly a coundown timer using state, where the user can control the countdown and set timer
  • Ans. 

    A program in React to display a countdown timer using state with user control and timer setting

    • Create a React component with state variables for countdown time and user input

    • Implement functions to start, pause, reset, and set the countdown timer

    • Use setInterval to update the countdown timer every second

    • Allow user input to set the countdown timer duration

  • Answered by AI
  • Q2. Hooks in react
  • Ans. 

    Hooks in React 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.

    • Some commonly used hooks are useState, useEffect, useContext, and useReducer.

    • Hooks can be used to manage component state, perform side effects, and share logic across components.

  • Answered by AI
  • Q3. Closures and higher order functions in js
  • Ans. 

    Closures and higher order functions are important concepts in JavaScript for creating modular and reusable code.

    • Closures are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Higher order functions are functions that can take other functions as arguments or return functions as results.

    • Example of closure: function outerFunction() { let outerVar = 'I am ou...

  • Answered by AI
  • Q4. How to manage state, props, transfer data to parent component from child component
  • Ans. 

    State and props are managed in React by using setState and passing data through props. Data can be transferred from child to parent using callback functions.

    • Manage state using setState method in React

    • Pass data from parent to child components using props

    • Transfer data from child to parent components by using callback functions

  • Answered by AI
  • Q5. Lifecycles in react class component
  • Ans. 

    React class components have lifecycle methods that allow developers to run code at specific points in a component's lifecycle.

    • ComponentDidMount() is called after the component is rendered for the first time.

    • ComponentDidUpdate() is called after the component's state or props change.

    • ComponentWillUnmount() is called before the component is removed from the DOM.

  • Answered by AI

Full Stack Developer Interview Questions asked at other Companies

Q1.ย Query And MatrixYou are given a binary matrix with โ€˜Mโ€™ rows and โ€˜Nโ€™ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jun 2024.

Round 1 - Case Studyย 

Explain the projects completed in the past.

Senior UX Designer Interview Questions asked at other Companies

Q1.ย What is the difference between ux and ui ?
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Testย 

Data Structures, SQL, Operating Sytem

Round 2 - Assignmentย 

Full-Stack basic assignment

Full Stack Developer Interview Questions asked at other Companies

Q1.ย Query And MatrixYou are given a binary matrix with โ€˜Mโ€™ rows and โ€˜Nโ€™ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)

Gyaan AI interview questions for popular designations

ย Full Stack Developer

ย (2)

ย Junior Frontend Developer

ย (1)

ย Senior UX Designer

ย (1)

Interview questions from similar companies

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

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

Round 1 - One-on-oneย 

(5 Questions)

  • Q1. How many variance in sap?
  • Q2. We cac explain the all accounts receivable and accounts payable
  • Q3. What is the cost element and cost center?
  • Q4. How many we have currencies in sap?
  • Q5. How many types of projects

Interview Preparation Tips

Topics to prepare for Accenture P2P Accounts Payable Executive interview:
  • mba fresher
Interview preparation tips for other job seekers - 1. Self-Reflection & Goal Setting
* Identify Your Strengths & Weaknesses:
* Strengths: What are you good at? What do you enjoy doing? What are your unique skills and talents?
* Weaknesses: What areas do you need to improve? What are your biggest challenges?
* Define Your Career Goals:
* Short-term: What kind of job are you looking for? What industry are you interested in? What salary range are you targeting?
* Long-term: What is your ideal career path? What are your long-term professional aspirations?
2. Enhance Your Job Search Strategy
* Build a Strong Online Presence:
* LinkedIn: Create a professional and engaging LinkedIn profile.
* Portfolio/Website: If applicable, showcase your work through a portfolio or personal website.
* Network, Network, Network:
* Attend industry events: Conferences, meetups, and workshops.
* Informational interviews: Connect with people working in your field of interest.
* Leverage your existing network: Let your friends, family, and former colleagues know you're job searching.
* Tailor Your Resume & Cover Letter:
* Customize: Tailor your resume and cover letter to each specific job application.
* Keywords: Use keywords from the job description to increase your chances of getting noticed by Applicant Tracking Systems (ATS).
* Quantify your achievements: Use numbers and data to demonstrate your accomplishments.
* Master the Job Interview:
* Practice: Prepare for common interview questions (behavioral, technical, etc.).
* Research: Learn about the company and the role you're interviewing for.
* Ask insightful questions: Demonstrate your interest and engagement.
3. Continuous Improvement
* Skill Development:
* Online courses: Platforms like Coursera, Udemy, and edX offer a wide range of courses.
* Certifications: Obtain relevant industry certifications to enhance your credentials.
* Volunteer work: Gain valuable experience and build your network.
* Stay Updated:
* Industry news: Keep up-to-date with the latest trends and developments in your field.
* Job market trends: Monitor job boards and industry publications to understand the current job market.
Key Advice:
* Be patient and persistent: The job search process can be challenging, but don't give up.
* Stay positive and maintain a growth mindset: Focus on your strengths and opportunities for improvement.
* Take care of yourself: Prioritize your physical and mental well-being during your job search.
Remember: The job market is constantly evolving. Be adaptable, proactive, and resourceful in your job search efforts. Good luck!
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024.ย There were 13 interview rounds.

Round 1 - Technicalย 

(2 Questions)

  • Q1. What is the Entity-Relationship (ER) model?
  • Ans. 

    The Entity-Relationship (ER) model is a data model used to describe the relationships between entities in a database.

    • Entities are objects or concepts in the real world that can be distinguished from each other.

    • Relationships describe how entities are related to each other.

    • Attributes are properties that describe entities and relationships.

    • ER diagrams visually represent the ER model, showing entities, relationships, and a...

  • Answered by AI
  • Q2. What are the advantages of using threads compared to processes?
  • Ans. 

    Threads are lighter weight than processes, share memory space, and are more efficient for multitasking.

    • Threads share the same memory space, making communication between them faster and more efficient.

    • Threads are lighter weight than processes, as they share resources such as memory and file descriptors.

    • Threads are more efficient for multitasking, as they can run concurrently within the same process.

    • Threads are easier to...

  • Answered by AI
Round 2 - Coding Testย 

Google primarily focuses on pure data structures and algorithms-based questions during coding interviews. Other computer science core topics are typically not covered in Google's interviews. Therefore, it is essential to be proficient in data structures and algorithms to succeed in the Google coding interview.

Round 3 - Aptitude Testย 

An aptitude test is a tool used to evaluate a person's skills, abilities, and potential for success in a specific role or activity.

Round 4 - Group Discussionย 

Group discussion is a process of exchanging ideas and opinions among individuals on a specific topic. It is a structured form of communication in which participants have the opportunity to express their views while also listening to others' perspectives on the same subject.

Round 5 - HRย 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include time management and public speaking.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: time management

    • Weaknesses: public speaking

  • Answered by AI
  • Q2. What reasons can you provide for why we should consider hiring you?
  • Ans. 

    I have a strong foundation in web development, a passion for learning, and a proven track record of delivering high-quality projects.

    • I have a solid understanding of HTML, CSS, and JavaScript

    • I am proficient in using various web development tools and frameworks such as React and Node.js

    • I have successfully completed several web development projects, including a responsive e-commerce website for a local business

  • Answered by AI
Round 6 - Assignmentย 

An assignment is a task or piece of work that you are given to complete, particularly as part of your job or studies. The assignment for the course includes written assignments and practical tests, similar to tasks, work, jobs, or charges.

Round 7 - Case Studyย 

A case study is a detailed description and assessment of a specific situation in the real world, created for the purpose of deriving generalized insights and understanding. It can focus on an individual, a group of people, an organization, or an event, among other subjects.

Round 8 - One-on-oneย 

(2 Questions)

  • Q1. What do you consider your greatest accomplishment?
  • Ans. 

    My greatest accomplishment was successfully leading a team to launch a new website for a major client ahead of schedule.

    • Successfully led a team to launch a new website

    • Completed the project ahead of schedule

    • Received positive feedback from the client

  • Answered by AI
  • Q2. What factors motivate you in your professional life?
  • Ans. 

    I am motivated by challenges, learning opportunities, and the ability to make a positive impact.

    • Challenges push me to grow and improve my skills.

    • Learning opportunities allow me to stay updated with the latest technologies and trends.

    • Making a positive impact through my work gives me a sense of fulfillment and purpose.

  • Answered by AI
Round 9 - HRย 

(2 Questions)

  • Q1. What does your ideal work environment look like?
  • Ans. 

    My ideal work environment is a collaborative space with supportive colleagues, opportunities for growth, and a healthy work-life balance.

    • Collaborative team environment where ideas are shared and valued

    • Supportive colleagues who are willing to help and provide feedback

    • Opportunities for growth and learning new technologies

    • Healthy work-life balance with flexible hours and remote work options

  • Answered by AI
  • Q2. How would you impact employee retention?
  • Ans. 

    By creating a positive work environment, offering growth opportunities, and implementing employee recognition programs.

    • Creating a positive work environment through open communication and support

    • Offering growth opportunities such as training programs and career advancement

    • Implementing employee recognition programs to acknowledge and reward hard work

    • Providing competitive salaries and benefits to attract and retain top ta

  • Answered by AI
Round 10 - Technicalย 

(2 Questions)

  • Q1. What are real-time operating systems?
  • Ans. 

    Real-time operating systems are designed to provide predictable response times and prioritize tasks based on timing constraints.

    • Real-time operating systems prioritize tasks based on timing constraints

    • They are designed to provide predictable response times

    • Examples include VxWorks, QNX, and FreeRTOS

  • Answered by AI
  • Q2. Are the applicants first asked several questions regarding data structures and algorithms?
Round 11 - HRย 

(2 Questions)

  • Q1. What topics are typically discussed during the final round of interviews, particularly regarding salary expectations, working hours, and other job requirements?
  • Q2. Are you comfortable working night shifts, considering that many roles at Genpact support international clients?
  • Ans. 

    Yes, I am comfortable working night shifts to support international clients.

    • I have previous experience working night shifts in a customer service role.

    • I am a night owl and tend to be more productive during late hours.

    • I understand the importance of supporting international clients and am willing to adjust my schedule accordingly.

  • Answered by AI
Round 12 - Process associateย 

(2 Questions)

  • Q1. A process associate is crucial in ensuring the smooth operation of various business processes across different industries
  • Q2. What are the operational tasks necessary to maintain efficiency and quality?
  • Ans. 

    Operational tasks for maintaining efficiency and quality include regular testing, monitoring performance, updating software, and implementing best practices.

    • Regularly test website functionality to ensure it is working properly

    • Monitor website performance metrics such as load times and user experience

    • Update software and plugins to the latest versions to prevent security vulnerabilities

    • Implement best practices for coding,

  • Answered by AI
Round 13 - Mangerย 

(2 Questions)

  • Q1. How can you prepare examples demonstrating your leadership, conflict resolution, and prioritization skills to excel in a managerial round interview?
  • Ans. 

    Prepare examples showcasing leadership, conflict resolution, and prioritization skills for a managerial round interview.

    • Leadership: Discuss a project where you led a team to success, highlighting your ability to motivate and guide others.

    • Conflict Resolution: Share a situation where you successfully resolved a conflict within a team or project, emphasizing your communication and problem-solving skills.

    • Prioritization: Ta...

  • Answered by AI
  • Q2. How do you demonstrate adaptability, leadership, and a commitment to fostering a positive work environment?
  • Ans. 

    I demonstrate adaptability, leadership, and commitment by actively seeking feedback, taking on new challenges, and fostering collaboration within the team.

    • Seek feedback from colleagues and supervisors to continuously improve

    • Volunteer for new projects or tasks to expand skills and knowledge

    • Encourage open communication and teamwork among team members

    • Lead by example by showing a positive attitude and willingness to help o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Update your resume, customize your application, and be ready to show kindness.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technicalย 

(2 Questions)

  • Q1. Azure cloud platform tech
  • Q2. Informatica tech stack ques
Round 2 - Technicalย 

(2 Questions)

  • Q1. Adf tech stack que
  • Q2. Scd type 2 implementation
  • Ans. 

    SCD Type 2 implementation involves tracking historical changes in data by creating new records for each change.

    • Identify the columns that need to be tracked for changes

    • Add effective start and end dates to track the validity of each record

    • Insert new records for changes and update end dates for previous records

    • Maintain a surrogate key to uniquely identify each version of the record

  • Answered by AI
Round 3 - Technicalย 

(2 Questions)

  • Q1. Dw related que ans
  • Q2. Solution design related que
Round 4 - HRย 

(2 Questions)

  • Q1. Aspiration from my end
  • Q2. How soon can join
  • Ans. 

    I can join the team within 2 weeks.

    • I can start within 2 weeks of receiving the offer.

    • I need to give notice to my current employer.

    • I may need to relocate, which could affect my start date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join or even I would suggest not to apply or give interview to this pathetic company. I have cleared all my 4 rounds of interview including HR out of which 3 technical and 1 HR. 3 held on video conferencing and one face to face for which I have travelled almost 40 kms from my current location and they said without face to face they cannot proceed hence I had no option left but to travel, then when I entered into the office again put a laptop infront of me which is again video conferencing then I didn't understand why exactly they called me if they want to have it over video online.

Then after putting my lot of time and efforts when finally it comes to release the offer, then they stop picking up the calls and stop responding and the final excuses which I got from them for not releasing the offer is that their software will not allow them to release any offer which is more that 2 days of joining.

Such a pathetic company who even don't know that atleast if you are not releasing the offer, it's your duty to atleast tell the person that either they are not able to provide the compensation as discussed or they are looking parallelly for someone who can settle in less compensation.

Due to all this I have wasted almost my 3-4 weeks of time expecting that I will receive the offer, and didn't focus on other organisations which was ready to provide slightly lower than this.

Hence it's a total scam which is going here suggesting not to get trapped otherwise you will not only waste your time but also other good opportunities as well.

It's a total boycott for me, expecting the same from your end as well, so that they will understand that playing with someone's job is not a joke.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Testย 

For example, a โ‚น10 LPA CTC could mean an in-hand salary of โ‚น70,000โ€“โ‚น75,000 per month, depending on deductions and benefits.

โœจ ๐—ฃ๐—ฟ๐—ผ ๐—ง๐—ถ๐—ฝ: Always request a detailed salary structure during negotiationsโ€”itโ€™s your roadmap to making informed decisions

Round 2 - Coding Testย 

๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€!

Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressive CTC (Cost to Company). But when payday arrives, you wonder

Round 3 - Technicalย 

(2 Questions)

  • Q1. 2๏ธโƒฃ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: This is the actual amount you take home after deductions like: โ€ข Employeeโ€™s contribution to PF โ€ข Income tax (TDS) โ€ข Professional tax
  • Q2. ๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€! Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressi...

Interview Preparation Tips

Interview preparation tips for other job seekers - ๐—–๐—ง๐—– ๐˜ƒ๐˜€ ๐—œ๐—ป-๐—›๐—ฎ๐—ป๐—ฑ ๐—ฆ๐—ฎ๐—น๐—ฎ๐—ฟ๐˜†: ๐—ง๐—ต๐—ฒ ๐—ฅ๐—ฒ๐—ฎ๐—น๐—ถ๐˜๐˜† ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ ๐—˜๐˜ƒ๐—ฒ๐—ฟ๐˜† ๐—ฃ๐—ฟ๐—ผ๐—ณ๐—ฒ๐˜€๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ก๐—ฒ๐—ฒ๐—ฑ๐˜€!

Weโ€™ve all been thereโ€”excitedly discussing job offers and hearing about the impressive CTC (Cost to Company). But when payday arrives, you wonder:

โ€œ๐˜ž๐˜ฉ๐˜บ ๐˜ฅ๐˜ฐ๐˜ฆ๐˜ด๐˜ฏโ€™๐˜ต ๐˜ฎ๐˜บ ๐˜ช๐˜ฏ-๐˜ฉ๐˜ข๐˜ฏ๐˜ฅ ๐˜ด๐˜ข๐˜ญ๐˜ข๐˜ณ๐˜บ ๐˜ฎ๐˜ข๐˜ต๐˜ค๐˜ฉ ๐˜ต๐˜ฉ๐˜ฆ ๐˜Š๐˜›๐˜Š ๐˜ ๐˜ธ๐˜ข๐˜ด ๐˜ฑ๐˜ณ๐˜ฐ๐˜ฎ๐˜ช๐˜ด๐˜ฆ๐˜ฅ?โ€
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technicalย 

(16 Questions)

  • Q1. What are custom hooks in React, and what are their use cases? Additionally, can you provide an example of a custom hook that performs an API call and utilizes the retrieved data?
  • Ans. 

    Custom hooks in React are reusable functions that allow you to extract component logic into separate functions for better code organization and reusability.

    • Custom hooks are created using the 'use' prefix and can be used to share logic between components.

    • Use cases for custom hooks include fetching data from an API, handling form state, managing local storage, and more.

    • Example of a custom hook for API call: const useFetc...

  • Answered by AI
  • Q2. What is the difference between useMemo and useCallback in React?
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to memoize a value and recompute it only when its dependencies change.

    • useCallback is used to memoize a callback function and prevent unnecessary re-renders.

    • Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used to memoize an event handler function.

  • Answered by AI
  • Q3. What is the difference between class-based components and functional components in React?
  • Ans. 

    Class-based components use ES6 classes and have lifecycle methods, while functional components are simpler and use functions.

    • Class-based components use ES6 classes to create components, while functional components are created using functions.

    • Class-based components have lifecycle methods like componentDidMount and componentDidUpdate, while functional components do not.

    • Functional components are simpler and more lightweig...

  • Answered by AI
  • Q4. How can you implement the lifecycle of a React component in a functional component?
  • Ans. 

    Implementing the lifecycle of a React component in a functional component

    • Use the useEffect hook to replicate lifecycle methods like componentDidMount, componentDidUpdate, and componentWillUnmount

    • Pass an empty array as the second argument to useEffect to mimic componentDidMount

    • Pass a variable or state as the second argument to useEffect to mimic componentDidUpdate

    • Return a cleanup function inside useEffect to mimic compo

  • Answered by AI
  • Q5. What are the various state management techniques available in React?
  • Ans. 

    Various state management techniques in React include Context API, Redux, and local state.

    • Context API: React's built-in solution for passing data through the component tree without having to pass props down manually at every level.

    • Redux: A popular state management library for React applications, allowing for a centralized store to manage application state.

    • Local state: Managing state within individual components using us

  • Answered by AI
  • Q6. What is the architecture of Redux, and what purposes do middlewares serve within it?
  • Ans. 

    Redux is a predictable state container for JavaScript apps. Middlewares are functions that intercept actions before they reach the reducer.

    • Redux follows a unidirectional data flow architecture.

    • Middlewares in Redux are functions that can intercept, modify, or dispatch actions.

    • Common use cases for middlewares include logging, asynchronous API calls, and handling side effects.

    • Examples of popular Redux middlewares are Redu...

  • Answered by AI
  • Q7. What is hoisting in JavaScript?
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q8. What is event bubbling in JavaScript?
  • Ans. 

    Event bubbling is the propagation of events from the target element up through its ancestors in the DOM tree.

    • Events triggered on a child element will 'bubble up' and trigger on parent elements.

    • Event listeners can be attached to parent elements to handle events from multiple child elements.

    • Stopping event propagation can be done using event.stopPropagation() or event.stopImmediatePropagation().

  • Answered by AI
  • Q9. What are block scope and function scope in JavaScript?
  • Ans. 

    Block scope and function scope are two types of scopes in JavaScript that determine the visibility and accessibility of variables.

    • Block scope refers to the visibility of variables within a block of code enclosed by curly braces. Variables declared with 'let' and 'const' have block scope.

    • Function scope refers to the visibility of variables within a function. Variables declared with 'var' have function scope.

    • Variables de...

  • Answered by AI
  • Q10. Have you had experience working with semantic tags in HTML?
  • Ans. 

    Yes, I have experience working with semantic tags in HTML.

    • Used semantic tags like <header>, <nav>, <main>, <section>, <article>, <aside>, <footer> for better structure and SEO.

    • Understand the importance of using semantic tags for accessibility and search engine optimization.

    • Semantic tags help in organizing content and making it more readable for developers and browsers.

  • Answered by AI
  • Q11. What are the various methods for creating an object in JavaScript?
  • Ans. 

    Various methods for creating an object in JavaScript include object literals, constructor functions, ES6 classes, and Object.create() method.

    • Object literals: var obj = { key: value };

    • Constructor functions: function ObjectName() { this.key = value; } var obj = new ObjectName();

    • ES6 classes: class ClassName { constructor() { this.key = value; } } var obj = new ClassName();

    • Object.create() method: var obj = Object.create(pr

  • Answered by AI
  • Q12. What are the differences between shallow copy and deep copy in JavaScript?
  • Ans. 

    Shallow copy only copies the references of nested objects, while deep copy creates new copies of nested objects.

    • Shallow copy creates a new object but does not create copies of nested objects, only copies their references.

    • Deep copy creates a new object and also creates new copies of all nested objects.

    • Shallow copy can be achieved using Object.assign() or spread operator, while deep copy can be achieved using JSON.parse(

  • Answered by AI
  • Q13. What will be the output of the following JavaScript code fragment: `const a; function test() { console.log(a); }; test();`?
  • Ans. 

    The code will throw an error because 'a' is declared but not initialized.

    • The code will result in a ReferenceError because 'a' is declared but not assigned a value.

    • Variables declared with 'const' must be initialized at the time of declaration.

    • Initializing 'a' with a value before calling test() will prevent the error.

  • Answered by AI
  • Q14. How can you use CSS to arrange elements in a row and column layout?
  • Ans. 

    CSS can be used to arrange elements in a row and column layout using flexbox or grid layout properties.

    • Use display: flex; for a row layout and display: flex; flex-direction: column; for a column layout

    • Use justify-content and align-items properties to align items in the main axis and cross axis respectively

    • For grid layout, use display: grid; and grid-template-columns or grid-template-rows to define the layout

  • Answered by AI
  • Q15. Have you utilized CSS preprocessors, and if so, which ones?
  • Ans. 

    Yes, I have utilized CSS preprocessors such as SASS and LESS.

    • I have experience using SASS to streamline my CSS workflow by utilizing variables, mixins, and nesting.

    • I have also worked with LESS to improve code organization and maintainability through features like variables and functions.

  • Answered by AI
  • Q16. If I have assigned different colors to an ID and a class and applied both to the same element, which color will be applied based on CSS specificity precedence?
  • Ans. 

    The color applied will be based on the specificity of the selector, with ID having higher specificity than class.

    • ID has higher specificity than class in CSS

    • Color applied will be based on the selector with higher specificity

    • Example: If ID selector has color red and class selector has color blue, the color applied will be red

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Senior Software Engineer interview:
  • Javascript
  • React.Js
  • HTML
  • CSS
Interview preparation tips for other job seekers - Possessing a deep understanding of JavaScript and React is essential. Interviewers may engage in mind games with candidates; therefore, we should remain calm and focused solely on the questions. Additionally, we need to be confident in our answers; otherwise, they may respond with doubt, asking, "Is that so?"

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2024.ย There were 5 interview rounds.

Round 1 - Aptitude Testย 

The assessment focused on general aptitude, which was relatively easy and manageable to pass. However, the pseudo-code section may pose a greater challenge during the first round.

Round 2 - Group Discussionย 

It is very easy; you just need to speak at least once to easily pass through this round. mostly they dont try to reject you unless you are very nervous and very low about confidence they want you to speak atleast once , even the point is valid or not.

Round 3 - Coding Testย 

You will undergo a written test comprising three coding sections (either in Python or C) containing five or six questions each, along with ten multiple-choice questions on software testing, which are relatively easy. However, the most challenging section is networking, for which you will need to write theory responses; therefore, it is important to prepare thoroughly for that part.

Round 4 - One-on-oneย 

(2 Questions)

  • Q1. They first asked for self-introduction and then asked you to explain the programs that were assigned to you in a step-by-step manner.
  • Q2. Then the major part is networking, if you gone through by successfully explains your coding then you will be completely checked with networking which is really tough, like they asked me that to tell port n...
Round 5 - HRย 

(1 Question)

  • Q1. Actually there is HR done in my process , whoever cleared technical all were selected. But the issue is the there is no stipend for internship , and the role is embedded testing which was told only in the ...

Interview Preparation Tips

Interview preparation tips for other job seekers - It is easy to clear first 2 round(aptitude ,gd) and round 3 and round 4 is written and technical panel ,written is in your hand but panel is based on your luck . Thank you

Gyaan AI Interview FAQs

How many rounds are there in Gyaan AI interview?
Gyaan AI interview process usually has 1-2 rounds. The most common rounds in the Gyaan AI interview process are Technical, Coding Test and Assignment.
How to prepare for Gyaan AI 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 Gyaan AI. The most common topics and skills that interviewers at Gyaan AI expect are AWS, Django, Redis, SAAS and reports 9i.
What are the top questions asked in Gyaan AI interview?

Some of the top questions asked at the Gyaan AI interview -

  1. What all libraries you have used apart from styling libra...read more
  2. Does redux have its own ability to persist sta...read more
  3. What version of react u r using current...read more

Tell us how to improve this page.

Gyaan AI Interview Process

based on 4 interviews

Interview experience

2.5
ย ย 
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
ย โ€ขย 10.3k Interviews
Accenture Interview Questions
3.9
ย โ€ขย 8.1k Interviews
Wipro Interview Questions
3.7
ย โ€ขย 5.6k Interviews
Cognizant Interview Questions
3.8
ย โ€ขย 5.5k Interviews
Capgemini Interview Questions
3.8
ย โ€ขย 4.8k Interviews
ICICI Bank Interview Questions
4.0
ย โ€ขย 2.4k Interviews
HDFC Bank Interview Questions
3.9
ย โ€ขย 2.1k Interviews
Innovaccer Interview Questions
3.5
ย โ€ขย 79 Interviews
Mad Street Den Interview Questions
3.7
ย โ€ขย 13 Interviews
SigTuple Interview Questions
4.3
ย โ€ขย 2 Interviews
View all
Technical Recruiter
3 salaries
unlock blur

โ‚น6 L/yr - โ‚น6.2 L/yr

QA Lead
3 salaries
unlock blur

โ‚น24 L/yr - โ‚น32 L/yr

Product Designer
3 salaries
unlock blur

โ‚น18.5 L/yr - โ‚น23.5 L/yr

Explore more salaries
Compare Gyaan AI with

Innovaccer

3.5
Compare

Artivatic

2.9
Compare

SigTuple

4.3
Compare

Mad Street Den

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