Upload Button Icon Add office photos

Filter interviews by

Samrat Gems Impex Front Office Coordinator Interview Questions and Answers

Updated 20 Jul 2021

Interview questions from similar companies

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

(7 Questions)

  • Q1. Css flexbox and grid
  • Q2. Pagination on scroll
  • Ans. 

    Implementing pagination on scroll allows for loading more content as the user reaches the bottom of the page.

    • Use a scroll event listener to detect when the user has reached the bottom of the page

    • Make an API call to fetch more data when the bottom is reached

    • Append the new data to the existing content on the page

  • Answered by AI
  • Q3. Immediately invoked fn and anonymous fn
  • Ans. 

    Immediately invoked function expressions (IIFE) are functions that are executed immediately after they are created.

    • IIFE is defined and invoked at the same time using parentheses at the end of the function declaration.

    • Anonymous functions do not have a name and can be used as IIFE by wrapping them in parentheses.

    • IIFE is commonly used to create a private scope for variables and functions.

  • Answered by AI
  • Q4. What are closures
  • Ans. 

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

    • Closures allow functions to access variables from their parent function even after the parent function has returned

    • They help in creating private variables and functions in JavaScript

    • Closures are commonly used in event handlers and callbacks

  • Answered by AI
  • Q5. What is promise? explain
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

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

    • Promises can be chained using .then() method to handle success and failure callbacks.

    • Example: Fetch API returns a promise when making an HTTP request.

  • Answered by AI
  • Q6. What is lazy loading -explain
  • Ans. 

    Lazy loading is a technique used in web development to defer loading non-essential resources until they are needed.

    • Lazy loading helps improve page load times by only loading resources when they are required.

    • It is commonly used for images, videos, and other media files on a webpage.

    • Lazy loading can be implemented using JavaScript libraries like Intersection Observer or by using native browser features like loading='lazy

  • Answered by AI
  • Q7. Media query and css selectors

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Codility consists of two Angular questions: the first involves creating a form, while the second pertains to developing a searchable input field, along with one DSA coding question.

Round 2 - Technical 

(3 Questions)

  • Q1. How do you build form validations in angular
  • Ans. 

    Form validations in Angular are built using Angular forms and validators.

    • Use Angular forms to create form controls and group them together

    • Apply built-in validators like required, minlength, maxlength, pattern, etc.

    • Create custom validators for complex validation requirements

    • Display error messages based on validation status

    • Use reactive forms for more control and flexibility

  • Answered by AI
  • Q2. How will you create reusable loading logic in angular
  • Ans. 

    Create a service with a loading state and methods to show/hide loading indicators

    • Create a loading service with a boolean property 'isLoading'

    • Add methods in the service to set isLoading to true/false

    • Inject the loading service in components where loading indicators are needed

  • Answered by AI
  • Q3. JS questions which includes closure and promise.race
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Discussion about my previous project
  • Q2. Question on html, css, javascript & react
  • Q3. Explain about promises
  • Ans. 

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

    • Promises are used to handle asynchronous operations in JavaScript.

    • 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
  • Q4. Use state, context api
  • Q5. Box modelling in css, css pre processors
  • Ans. 

    Box model in CSS refers to the way elements are rendered in a web page. CSS preprocessors like SASS or LESS help streamline CSS development.

    • Box model in CSS includes content, padding, border, and margin.

    • CSS preprocessors like SASS or LESS allow for variables, nesting, and mixins to be used in CSS.

    • Example: box-sizing: border-box; in CSS changes the box model to include padding and border in the element's total width and

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I got a call that i have been selected to the final round, but the final round never did happend

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Interviewer was not letting complete my response
  • Q2. If i was giving correct response, then he was interrupting and changing the question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Depends on the interviewer. But prepare the topics in detail
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Online Hackathon test was taken.

Round 2 - Technical 

(6 Questions)

  • Q1. Tell Me About Yourself.
  • Ans. 

    I am a passionate React Js Frontend Developer with experience in building user-friendly and responsive web applications.

    • Experienced in developing web applications using React Js

    • Proficient in HTML, CSS, and JavaScript

    • Familiar with state management libraries like Redux

    • Strong understanding of responsive design principles

    • Ability to work collaboratively in a team environment

  • Answered by AI
  • Q2. Tell me about your roles and responsibilities in your current project.
  • Ans. 

    I am responsible for developing and maintaining the frontend of the project using React Js.

    • Developing user-friendly interfaces using React Js

    • Implementing responsive design and ensuring cross-browser compatibility

    • Collaborating with backend developers to integrate frontend with backend services

    • Optimizing application performance and troubleshooting issues

    • Participating in code reviews and providing feedback to team members

  • Answered by AI
  • Q3. How we implement SSR in React.
  • Ans. 

    SSR in React is implemented using server-side rendering to pre-render React components on the server before sending them to the client.

    • Use libraries like Next.js or Gatsby to implement SSR in React.

    • Configure server to render React components on the server side.

    • Optimize server-side rendering for performance by caching rendered components.

  • Answered by AI
  • Q4. How can we change our project in production mode from development mode.
  • Ans. 

    To change a React project from development mode to production mode, you need to build the project using the 'npm run build' command.

    • Run 'npm run build' command in the terminal to create a production build of the project.

    • This command will generate a 'build' folder with optimized and minified files for production.

    • You can then deploy the contents of the 'build' folder to a web server for production use.

  • Answered by AI
  • Q5. What is lazy loading and how we can implement in our project.
  • Ans. 

    Lazy loading is a technique used to defer loading non-essential resources until they are needed.

    • Lazy loading helps improve performance by only loading resources when they are required.

    • In React, lazy loading can be implemented using React.lazy() and Suspense components.

    • Example: const MyComponent = React.lazy(() => import('./MyComponent'));

    • Example: Loading...

  • }>

Answered by AI
  • Q6. What is react routing and how it is different from other conventional routing methods.
  • Ans. 

    React routing is a way to handle navigation in a React application by defining routes and rendering components based on the URL.

    • React routing allows for declarative routing, where routes are defined using JSX elements.

    • It enables dynamic routing based on the URL, allowing for different components to be rendered based on the route.

    • React Router is a popular library for handling routing in React applications.

    • Unlike convent...

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Depends on interviewers skill set.

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    No response

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

    Round 1 - Group Discussion 

    What is React? What is React architecture ? What is dynamic imports? What is interceptor?

    Interview Preparation Tips

    Topics to prepare for Ernst & Young React Js Frontend Developer interview:
    • react
    • jwt
    • Architecture
    • interceptor
    Interview preparation tips for other job seekers - Get a good grasp on basics of react
    Interview experience
    5
    Excellent
    Difficulty level
    Hard
    Process Duration
    Less than 2 weeks
    Result
    -

    I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. What is the difference between debounce and throttling
    • Ans. 

      Debounce delays the execution of a function until after a specified time period, while throttling limits the rate at which a function can be executed.

      • Debounce waits for a specified time period of inactivity before executing the function, while throttling limits the rate at which the function can be called.

      • Debounce is useful for scenarios like search bars where you want to wait for the user to finish typing before makin...

    • Answered by AI
    • Q2. What was used before Rest APIs
    • Ans. 

      SOAP (Simple Object Access Protocol) was used before Rest APIs for web services communication.

      • SOAP was a protocol for exchanging structured information in the implementation of web services.

      • SOAP used XML for message format and relied heavily on HTTP for communication.

      • SOAP was more rigid and complex compared to Rest APIs, which are more lightweight and flexible.

      • Examples of SOAP-based web services include Microsoft's .NE

    • Answered by AI

    Skills evaluated in this interview

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

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

    Round 1 - Technical 

    (1 Question)

    • Q1. 1. Html related tags questions, new tags in htmls, what is inline block, sigular tag 2. css related question: what is selector, how to apply css for global, flex 3. javascript questions, need to give outpu...
    Round 2 - Technical 

    (1 Question)

    • Q1. 2nd round was also the technical. those who are selected in both round was going to get result in next working day.

    Interview Preparation Tips

    Topics to prepare for Hexaware Technologies Angular Frontend Developer interview:
    • HTML
    • Javascipt
    • output
    • Angular
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

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

    Round 1 - Technical 

    (7 Questions)

    • Q1. Types of Promises
    • Ans. 

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

      • Promises 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.

      • Promises can be created using the Promise constructor or by using async/await syntax.

    • Answered by AI
    • Q2. Difference between useState and useEffect
    • Ans. 

      useState is used to manage state in functional components, while useEffect is used to perform side effects in functional components.

      • useState is used to declare state variables in functional components.

      • useEffect is used to perform side effects in functional components, such as data fetching, subscriptions, or manually changing the DOM.

      • useState does not trigger re-renders, while useEffect can be used to trigger re-render...

    • Answered by AI
    • Q3. What is Callback hell
    • Ans. 

      Callback hell is a situation where multiple nested callbacks make the code difficult to read and maintain.

      • Occurs when multiple asynchronous operations are nested within each other

      • Leads to deeply nested code structure which is hard to understand

      • Can be avoided by using Promises, async/await, or modularizing code

    • Answered by AI
    • Q4. Difference between traditional function and arrow function
    • Ans. 

      Traditional functions are defined using the function keyword, while arrow functions are defined using a concise syntax with =>.

      • Traditional functions are hoisted, while arrow functions are not.

      • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

      • Arrow functions are more concise and easier to read compared to traditional functions.

      • Traditional functions are better for methods in obje...

    • Answered by AI
    • Q5. Usecase to create counter in react
    • Ans. 

      Creating a counter in React to increment and decrement a value.

      • Create a state variable to store the count value

      • Use setState to update the count value

      • Render the count value in the component

      • Add buttons to increment and decrement the count value

    • Answered by AI
    • Q6. Program to find frequency of letters in a string
    • Ans. 

      Program to find frequency of letters in a string

      • Create an object to store the frequency of each letter

      • Loop through the string and increment the count of each letter in the object

      • Convert the object into an array of strings with letter and frequency pairs

    • Answered by AI
    • Q7. Program to find if substring is present in a given string without using predefined functions
    • Ans. 

      Iterate through the given string to check if the substring is present.

      • Iterate through the given string and check if each character matches the first character of the substring.

      • If a match is found, check the subsequent characters to see if they form the substring.

      • Return true if the entire substring is found within the given string, otherwise return false.

    • Answered by AI

    Skills evaluated in this interview

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    Cognizant Interview Questions
    3.8
     • 5.5k Interviews
    Deloitte Interview Questions
    3.8
     • 2.8k Interviews
    BYJU'S Interview Questions
    3.1
     • 2.2k Interviews
    Teleperformance Interview Questions
    3.9
     • 1.7k Interviews
    Reliance Retail Interview Questions
    3.9
     • 1.5k Interviews
    Ernst & Young Interview Questions
    3.4
     • 1.1k Interviews
    WNS Interview Questions
    3.4
     • 968 Interviews
    Google Interview Questions
    4.4
     • 862 Interviews
    Nagarro Interview Questions
    4.0
     • 775 Interviews
    View all

    Samrat Gems Impex Front Office Coordinator Reviews and Ratings

    based on 1 review

    1.0/5

    Rating in categories

    1.0

    Skill development

    1.0

    Work-life balance

    1.0

    Salary

    1.0

    Job security

    1.0

    Company culture

    1.0

    Promotions

    1.0

    Work satisfaction

    Explore 1 Review and Rating
    Senior Merchandiser
    7 salaries
    unlock blur

    ₹4.2 L/yr - ₹7.2 L/yr

    Accountant
    4 salaries
    unlock blur

    ₹3 L/yr - ₹4.6 L/yr

    Executive Accountant
    4 salaries
    unlock blur

    ₹2.8 L/yr - ₹4.7 L/yr

    Merchandiser
    3 salaries
    unlock blur

    ₹1.3 L/yr - ₹7 L/yr

    Senior Manager
    3 salaries
    unlock blur

    ₹5 L/yr - ₹12.5 L/yr

    Explore more salaries
    Compare Samrat Gems Impex with

    Cognizant

    3.8
    Compare

    Teleperformance

    3.9
    Compare

    Reliance Retail

    3.9
    Compare

    iEnergizer

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