Upload Button Icon Add office photos

Filter interviews by

Britons Carpets Asia Interview Questions and Answers

Updated 8 Oct 2024

Britons Carpets Asia Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Spring boot crud operation

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Interview questions from similar companies

I applied via Company Website and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Firstly They have asked me to introduce myself and further, they questions from manly 3 section from my resume
  • Q2. OOPS 1: Difference between Method overloading and method overriding 2: What is inheritance and it's benifits 3: Define encapsulation and Abstraction.
  • Ans. 

    Questions related to OOPS concepts in software engineering.

    • Method overloading is having multiple methods with the same name but different parameters, while method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Inheritance is the ability of a class to inherit properties and methods from its parent class. It allows for code reuse and promotes modularity.

    • Encapsu...

  • Answered by AI
  • Q3. SQL 1: Difference between primary key and unique key 2: Why we use Normalisation and there different types 3: Some questions from SQL query, Join, delete, update, etc.
  • Ans. 

    Answers to SQL related questions for Software Engineer interview

    • Primary key uniquely identifies a record in a table, while unique key ensures that no two records have the same value for a specific column

    • Normalization is used to eliminate data redundancy and improve data integrity. Types include 1NF, 2NF, 3NF, BCNF, 4NF, 5NF

    • SQL queries can be used to retrieve data from one or more tables using joins. Delete and update s

  • Answered by AI
  • Q4. Aptitude 1: One question from number series

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're going for the interview process for Milliman just well prepared all the above mentioned points, last but not least be genuine about your project

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Related to oops,
  • Q2. Micro services regarding

I applied via Walk-in and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All question related to my profile and relevant to my Experience industries .

Interview Preparation Tips

Interview preparation tips for other job seekers - As you know that my experience is little because many talented and old experience person have in Scm Lines .
After that i will share my views regarding the same , if any candidates have below properties then he is hero .
like as Person should be Honest , Self Confidant , Hard worker,
Discipline and good knowledge as per him/her experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(3 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why do we hire you?
  • Q3. What salary did you expect
Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about your job profile? Roles Responsibilities.
  • Q2. Tell be about manufacturing process which you have been seen in your career
  • Q3. What are core tools of AIAG?
  • Ans. 

    Core tools of AIAG include FMEA, PPAP, MSA, SPC, and APQP.

    • FMEA (Failure Mode and Effects Analysis) is used to identify and prioritize potential failure modes in a process.

    • PPAP (Production Part Approval Process) is used to ensure that suppliers meet customer requirements.

    • MSA (Measurement Systems Analysis) is used to assess the quality of measurement systems.

    • SPC (Statistical Process Control) is used to monitor and contro...

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. What are yours failures?
  • Ans. 

    I have experienced failures in project deadlines, communication, and technical solutions.

    • Missed project deadlines due to underestimating tasks

    • Miscommunication with team members leading to misunderstandings

    • Implemented technical solutions that did not meet requirements

  • Answered by AI
  • Q2. What are your achievements?
  • Q3. What is heat treatment process
  • Ans. 

    Heat treatment process is a method used to alter the physical and sometimes chemical properties of a material through heating and cooling.

    • Involves heating the material to a specific temperature

    • Holding it at that temperature for a set amount of time

    • Then cooling it at a controlled rate

    • Can be used to increase hardness, improve machinability, or enhance other properties

    • Common techniques include annealing, quenching, temper

  • Answered by AI

I applied via LinkedIn and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. It went well, results awaiting

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent company to work. Preparation is the key to crack the interview

I appeared for an interview in Dec 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

There were 5 people in the zoom meet, including me. Rest all 4 were interviewers, 3 from India and 1 from the United Kingdom.
They started with my introduction and then moved on to the questions from my resume, starting with my internship at Samsung Bangalore and then projects.
Then another interviewer asked about my weakness and strength. Then comes the turn of coding questions.
Starting with finding the minimum element in O(1) time, rotating the 2-D array by 90 degrees, OOPS questions were also asked like- polymorphism, abstraction, virtual class. Some OS questions were- cache, paging algorithms.
Then come my POR and other activities.

  • Q1. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    Find the K-th smallest element in an array of distinct integers.

    • Sort the array and return the element at index K-1.

    • Use a min-heap to find the K-th smallest element efficiently.

    • Implement quickselect algorithm for optimal performance.

  • Answered by AI
  • Q2. 

    Inplace Rotate Matrix 90 Degrees Anti-Clockwise

    You are provided with a square matrix of non-negative integers of size 'N x N'. The task is to rotate this matrix by 90 degrees in an anti-clockwise directi...

  • Ans. 

    Rotate a square matrix by 90 degrees anti-clockwise without using extra space.

    • Iterate through each layer of the matrix from outer to inner layers

    • Swap elements in groups of 4 to rotate the matrix in place

    • Handle odd-sized matrices separately by adjusting the loop boundaries

  • Answered by AI
  • Q3. What are the page replacement algorithms in Operating Systems?
  • Ans. 

    Page replacement algorithms are used in operating systems to decide which page to replace when a new page needs to be brought in.

    • FIFO (First In, First Out) - replaces the oldest page in memory

    • LRU (Least Recently Used) - replaces the page that has not been used for the longest time

    • LFU (Least Frequently Used) - replaces the page that has been used the least number of times

    • Optimal - replaces the page that will not be used

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteria7 CGPAJaguar Land Rover interview preparation:Topics to prepare for the interview - Arrays, Strings, Stack and Queue, STL, Object-Oriented Programming, Operating System, Database Management System, Computer NetworksTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice GFG Must Do section, solve at least 5 Questions daily
Tip 2 : Start talking to new people regarding technology to remove hesitation at the time of the interview.
Tip 3 : Be in contact with a senior already working in that company, ask them regarding previous experience and new project the company is working on.
Tip 4 : Once you are done with GFG must do questions, now complete leetcode sorting by your target company.
Tip 5 : For core subjects refer to gate smashers and knowledge gate videos on youtube.

Application resume tips for other job seekers

Tip 1 : Try to modify your resume according to the company you are applying for, for this read their Job Description provided to you.
Tip 2 : Mention no more than 3 projects and 1,2 internships.
Tip 3 : Divide your skills into beginner, intermediate and hard sections, otherwise don't mention too many skills.
Tip 4 : Don't mention to many Position Of Responsibilities( at max 2-3).

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Arithmetic, reasoning, English

Round 2 - Technical 

(1 Question)

  • Q1. Is your coching in progress

Interview Preparation Tips

Topics to prepare for Global Autotech Software Engineer interview:
  • Core Java
Interview preparation tips for other job seekers - Be with self confidence at anything.face problems as a challenge
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me About yourself
  • Q2. Where you see yourself in next 3 years
Round 2 - Technical 

(3 Questions)

  • Q1. Tell me previous jobs profile
  • Q2. Tell me your previous responsibilities
  • Q3. Tell me your achievements
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Basic question about electronic
  • Q2. What is diodes my self and basic

Britons Carpets Asia Interview FAQs

How many rounds are there in Britons Carpets Asia interview?
Britons Carpets Asia interview process usually has 1 rounds. The most common rounds in the Britons Carpets Asia interview process are Coding Test.
How to prepare for Britons Carpets Asia 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 Britons Carpets Asia. The most common topics and skills that interviewers at Britons Carpets Asia expect are AutoCAD, Floor Planning, Ac Motors, Estimation and Interior Designing.

Tell us how to improve this page.

Britons Carpets Asia Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Global Autotech Interview Questions
4.0
 • 47 Interviews
Ag Industries Interview Questions
4.0
 • 40 Interviews
Milliman Interview Questions
3.8
 • 20 Interviews
Interface Interview Questions
4.5
 • 2 Interviews
View all

Britons Carpets Asia Reviews and Ratings

based on 13 reviews

4.0/5

Rating in categories

3.5

Skill development

4.6

Work-life balance

3.2

Salary

3.1

Job security

4.3

Company culture

2.9

Promotions

4.0

Work satisfaction

Explore 13 Reviews and Ratings
Designer
7 salaries
unlock blur

₹5.4 L/yr - ₹7 L/yr

Java Developer
6 salaries
unlock blur

₹1.8 L/yr - ₹4.2 L/yr

Executive Production
5 salaries
unlock blur

₹5.2 L/yr - ₹6.3 L/yr

Project Coordinator
4 salaries
unlock blur

₹7.9 L/yr - ₹10.5 L/yr

Senior Software Developer
4 salaries
unlock blur

₹10.1 L/yr - ₹14.6 L/yr

Explore more salaries
Compare Britons Carpets Asia with

Mohawk Industries

4.4
Compare

Shaw Industries

1.0
Compare

Interface

4.5
Compare

Milliman

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