Upload Button Icon Add office photos

Filter interviews by

IMAGIC Interview Questions and Answers

Updated 29 Apr 2024

IMAGIC Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 29 Apr 2024

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

I applied via Approached by Company and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Python covered by the functions and much more

Round 2 - Aptitude Test 

Aptitude Round with Many modern ideas

Round 3 - Technical 

(1 Question)

  • Q1. About the Data Structures and Python
Round 4 - One-on-one 

(1 Question)

  • Q1. About the Projects and How you will be good for their organization..

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Interview questions from similar companies

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
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(27 Questions)

  • Q1. Tell me about yourself
  • Q2. Have you ever worked on devops
  • Q3. How do you deploy tags in Jenkins and UCD
  • Q4. What you will do if you get a production issue
  • Q5. If the respective team is responsible to resolve an issue and they are not supporting you because of their priority items what you will do
  • Q6. What is .Net Framework
  • Q7. What is c#
  • Q8. Page life cycle of ASP.NET and explanation
  • Q9. OOPS Concept and Encapsulation Example
  • Q10. Value type and Ref Types
  • Q11. Constant and ReadOnly
  • Q12. How can you delete the duplicate values in a table
  • Q13. Difference between group by and having/ union and union all
  • Q14. Query to select last 5 records in a table
  • Q15. What is SMTP and what is the name space for that
  • Q16. Mention few name spaces you have used in your code
  • Q17. What is WEB API
  • Q18. Why WEB API is crucial over Web Services
  • Q19. How do you provide Security to your WEB API
  • Q20. What is Authentication and Authorization
  • Q21. What is difference between JSON and XML
  • Q22. Filters in MVC
  • Q23. What is MVC
  • Q24. What is Routing in MVC
  • Q25. How an application Interact with API
  • Q26. Architecture of API
  • Q27. What is HTTP

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the job description and find out what are they expecting from you, Prepare based on that.
I would say covering most of the topics in terms of definition would be the first thing we have to do, Then if you are sure about the definitions add example program for every definition by understanding the usage and functionality
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Next company name
  • Q2. What are you post
  • Ans. 

    Backend and office assistant

  • Answered Anonymously
  • Q3. What is your salary expectations
  • Ans. 

    2lakh annual income

  • Answered Anonymously
  • Q4. What is your qualifications
  • Ans. 

    Qualification graduate

  • Answered Anonymously
  • Q5. What is you post

Interview Preparation Tips

Interview preparation tips for other job seekers - Always make 100 persent on your job
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(17 Questions)

  • Q1. How many ways can we call a server side code from Client side?
  • Q2. How to create a new request type in ITSM?
  • Q3. Restrict a characters for 'Investment' field in incident table that characters should not exceed 500 characters do this in client script or UI policy?
  • Q4. What is the use GFST submit?
  • Q5. Using 'IT Service Manager' role description and short description should be visible?
  • Q6. Types of Client Scripts?
  • Q7. Client script or UI Policy which one will runs first and why?
  • Q8. Types of Business rule, difference between after and Async business rule?
  • Q9. There are 4 types of Business rule, can we change the order of Business rule?
  • Q10. Email Notification scripts scenario?
  • Q11. What is the use of isolate checkbox?
  • Q12. Xml() and xml() wait difference?
  • Q13. How will you achieve UI action in server side and client side, I.e both the code should work in client side and server side
  • Q14. There is a 'Investment' field in incident table Old value: Standard New Value: SMA Replace the options, instead of standard, SMA option should be updated to all records in the table.
  • Q15. Can we use previous in Business rule?
  • Q16. Normal change states
  • Q17. What is the use of get reference?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(10 Questions)

  • Q1. Tell me about yourself
  • Q2. Write program to check string is palindrom
  • Q3. Write programm to Remove number from array who occur more than once
  • Q4. String Buffer vs String Builder
  • Q5. If String s="Deloitte"; and String s2=new String("Deloitte"); what will be s1.equals(s2) and if(s1==s2)
  • Q6. Why spring boot is better than spring ? Annotations of spring
  • Q7. Query for count employee in each department
  • Q8. How to create react app ? npm commands to create react app
  • Q9. How routing works in react
  • Q10. Dml dcl and ddl command

Interview Preparation Tips

Interview preparation tips for other job seekers - basic java 8 and spring boot .. I was given almost all answer right except q3 still got rejected
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Why do you want to pursue a career in sales?
  • Ans. 

    I am passionate about building relationships, meeting new people, and helping others find solutions to their needs.

    • Enjoy interacting with people and building relationships

    • Excited about helping others find solutions to their problems

    • Thrilled by the challenge of meeting sales targets

  • Answered by AI
  • Q2. How can we create a sense of urgency for a client to make a purchase, given that they can buy the same product at any time through the website?
  • Ans. 

    Creating a sense of urgency for a client to make a purchase when they can buy the same product anytime online.

    • Offer limited-time promotions or discounts to encourage immediate purchase

    • Highlight scarcity or limited availability of the product

    • Create a sense of FOMO (fear of missing out) by showcasing high demand or low stock levels

    • Utilize countdown timers or limited quantity alerts on the website

    • Provide exclusive deals o

  • Answered by AI
  • Q3. What is the use of BYJUS products, and what are their unique selling points (USPs)?
  • Ans. 

    BYJU'S products are educational tools that offer personalized learning experiences for students.

    • BYJU'S products provide interactive video lessons and adaptive learning techniques.

    • They cover a wide range of subjects from math and science to languages and coding.

    • The products offer personalized feedback and progress tracking for students.

    • BYJU'S unique selling points include engaging content, interactive quizzes, and real-...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Where do you see yourself in five years?
  • Ans. 

    In five years, I see myself as a seasoned Business Development professional leading a team and driving strategic growth initiatives.

    • Leading a team of business development professionals

    • Driving strategic growth initiatives for the company

    • Continuing to learn and grow in the field of business development

  • Answered by AI
  • Q2. How will you manage additional working hours if necessary?
  • Ans. 

    I am willing to adjust my schedule and prioritize tasks to accommodate additional working hours if necessary.

    • I will communicate with my manager to understand the urgency and importance of the additional hours.

    • I will plan my tasks efficiently to ensure that deadlines are met even with extended working hours.

    • I will make sure to take breaks and manage my energy levels effectively to avoid burnout.

    • I will be flexible and ad...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Joining is not recommended, as it may lead to a lack of exposure, and any experience gained will likely go unrecognized by other legitimate organizations.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(8 Questions)

  • Q1. Can you introduce yourself?
  • Ans. 

    I am a Senior Automation Test Engineer with 5+ years of experience in designing and implementing automated testing frameworks.

    • 5+ years of experience in automation testing

    • Proficient in designing and implementing automated testing frameworks

    • Strong knowledge of testing tools like Selenium, Appium, and JUnit

    • Experience in creating test scripts and executing test cases

    • Ability to analyze test results and identify defects

  • Answered by AI
  • Q2. What is the syntax for using driver.findElement in Selenium?
  • Ans. 

    The syntax for using driver.findElement in Selenium is driver.findElement(By locator)

    • Use driver.findElement(By locator) to locate a single element on the web page

    • Specify the locator strategy (e.g. By.id, By.name, By.xpath) to identify the element

    • Example: WebElement element = driver.findElement(By.id("username"));

  • Answered by AI
  • Q3. What are the different types of assertions, and what is the syntax for a hard assertion in TestNG?
  • Ans. 

    Different types of assertions and syntax for hard assertion in TestNG

    • Types of assertions: Hard assertions and Soft assertions

    • Syntax for hard assertion in TestNG: Assert.assertEquals(expected, actual)

  • Answered by AI
  • Q4. What types of wait mechanisms are utilized in your project?
  • Ans. 

    Types of wait mechanisms include implicit wait, explicit wait, fluent wait, and thread.sleep.

    • Implicit wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit wait: Waits for a certain condition to occur before proceeding further.

    • Fluent wait: Waits for a condition to be true with a specified polling frequency.

    • Thread.sleep: Pauses the execution for a specified amount of time.

  • Answered by AI
  • Q5. How do you manage frames in Selenium?
  • Ans. 

    Frames in Selenium can be managed using switchTo() method to navigate between frames.

    • Use driver.switchTo().frame() method to switch to a frame by index, name or WebElement

    • Use driver.switchTo().defaultContent() method to switch back to the main content

    • Use driver.switchTo().parentFrame() method to switch to the parent frame

  • Answered by AI
  • Q6. How do you remove duplicates from an array?
  • Ans. 

    Use a Set data structure to remove duplicates from an array of strings.

    • Create a Set from the array to automatically remove duplicates

    • Convert the Set back to an array to get the unique values

  • Answered by AI
  • Q7. What is the difference between List, Set, and Map collections in Java?
  • Ans. 

    List, Set, and Map are different types of collections in Java used to store and manipulate groups of objects.

    • List is an ordered collection that allows duplicate elements. Example: ArrayList, LinkedList

    • Set is a collection that does not allow duplicate elements. Example: HashSet, TreeSet

    • Map is a collection of key-value pairs where each key is unique. Example: HashMap, TreeMap

  • Answered by AI
  • Q8. What actions would you take if there is a mismatch between user stories and application functionality?
  • Ans. 

    I would analyze the user stories and application functionality to identify the root cause of the mismatch and work towards resolving it.

    • Review the user stories and application functionality to understand the discrepancies

    • Communicate with stakeholders to clarify requirements and expectations

    • Update test cases and automation scripts to align with the corrected user stories

    • Collaborate with developers to address any underly

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. What is your relevant experience, and what are your roles and responsibilities in your current company?
  • Ans. 

    I have over 5 years of experience in automation testing, with a focus on creating and executing test scripts for web applications.

    • Developing automation test scripts using tools like Selenium and TestNG

    • Creating test plans and test cases based on requirements

    • Executing test cases and reporting defects

    • Collaborating with developers and QA team to ensure quality of the product

    • Participating in Agile ceremonies such as sprint

  • Answered by AI
  • Q2. Can you provide a specific scenario from your previous project, and detail the feature file step definitions while demonstrating how to run the scenario with different sets of data?
  • Ans. 

    Demonstrating feature file step definitions with different sets of data in a previous project scenario

    • Create a feature file with a scenario outline that includes placeholders for different sets of data

    • Write step definitions that use the placeholders to run the scenario with different data sets

    • Use data tables or examples in the feature file to provide the different sets of data

    • Run the scenario with different data sets t...

  • Answered by AI
  • Q3. What approach can be used to count the number of URLs in an HTML page using Selenium and open the URL that contains your name?
  • Ans. 

    To count URLs in an HTML page using Selenium and open the URL containing your name, you can use a combination of Selenium WebDriver methods and regular expressions.

    • Use Selenium WebDriver to navigate to the HTML page and retrieve its source code

    • Use regular expressions to identify and count the URLs in the source code

    • Iterate through the list of URLs to find the one containing your name

    • Use Selenium WebDriver to open the U

  • Answered by AI
  • Q4. How can you separate letters and digits from a string in Java? Please provide the Java code for this task.
  • Ans. 

    Use regular expressions to separate letters and digits from a string in Java.

    • Use the String class's split() method with a regular expression to separate letters and digits.

    • Create a regular expression pattern that matches either letters or digits.

    • Store the separated letters and digits in separate arrays.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Senior Automation Test Engineer interview:
  • Java oops
  • Selenium
  • Cucumber
Interview preparation tips for other job seekers - Review fundamental concepts, practice coding daily, and utilize free websites for practice. Be well-versed in the roles and responsibilities of your current or previous projects, and answer confidently.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. Tell me About Yourself
  • Q2. Project working and day to day activities I do
  • Q3. Rate Yourself In SQL out of 5
  • Q4. Sql 3 question based on windows function
  • Q5. Very basic python 2 Question
  • Q6. What You do on power bi in your work Explain with full details workflow
Round 2 - Technical 

(1 Question)

  • Q1. All 3 sql Questions very simple Round but they didn't provide any Data tables just tell this and that so it may get confusing I slove 2 out of three but rejected on this Round questions Are intermidate

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall interview Is Very simple just listen there Questions Clearly on sql You Will Crack Deloitte
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. About your self
  • Q2. Regarding sales
  • Q3. If we will hire you you will be able work long shift
  • Ans. 

    Yes, I am willing and able to work long shifts to meet the needs of the business.

    • I am committed to meeting the demands of the job and am willing to work long hours when necessary.

    • I understand the importance of flexibility in business development roles and am prepared to adjust my schedule accordingly.

    • I have previous experience working long shifts in high-pressure environments and have proven my ability to perform well

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

(2 Questions)

  • Q1. How to convence the parents
  • Ans. 

    Convince parents by highlighting benefits, addressing concerns, and providing evidence.

    • Highlight the benefits of the decision, such as potential career growth or financial stability.

    • Address any concerns the parents may have, such as job security or work-life balance.

    • Provide evidence to support your argument, such as successful track record or testimonials from others.

    • Listen to their perspective and try to understand th...

  • Answered by AI
  • Q2. Tell me about sell sop
  • Ans. 

    A sell sop is a sales technique used to persuade customers to make a purchase by highlighting the benefits and features of a product or service.

    • Sell sop involves identifying customer needs and demonstrating how the product or service can meet those needs.

    • It often includes creating a sense of urgency or scarcity to encourage immediate action.

    • Effective sell sop also involves building rapport with customers and addressing...

  • Answered by AI

IMAGIC Interview FAQs

How many rounds are there in IMAGIC interview?
IMAGIC interview process usually has 4 rounds. The most common rounds in the IMAGIC interview process are One-on-one Round, Coding Test and Aptitude Test.
How to prepare for IMAGIC 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 IMAGIC. The most common topics and skills that interviewers at IMAGIC expect are Photoshop, Digital Marketing, Social Media, Web Technologies and Content Writing.

Tell us how to improve this page.

Interview Questions from Similar Companies

Technicolor Interview Questions
4.0
 • 21 Interviews
FUJIFILM Interview Questions
4.1
 • 12 Interviews
Animaker Inc Interview Questions
3.5
 • 8 Interviews
InVideo Interview Questions
3.2
 • 6 Interviews
BOT VFX Interview Questions
4.0
 • 4 Interviews
Alamy Images Interview Questions
3.6
 • 4 Interviews
View all
Compare IMAGIC with

Technicolor

4.0
Compare

FUJIFILM

4.1
Compare

Prime Focus

3.7
Compare

DNEG CREATIVE SERVICES

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