Upload Button Icon Add office photos

Filter interviews by

Gulf Craft Interview Questions and Answers

Updated 3 Aug 2024

Gulf Craft Interview Experiences

Popular Designations

3 interviews found

Steel Fabricator Interview Questions & Answers

user image Anonymous

posted on 1 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What your responsibility
  • Ans. 

    As a steel fabricator, my responsibility is to cut, shape, and assemble steel components according to blueprints and specifications.

    • Cutting and shaping steel components

    • Assembling steel components according to blueprints

    • Ensuring accuracy and precision in fabrication

    • Following safety protocols and guidelines

    • Maintaining equipment and tools

  • Answered by AI
  • Q2. Tell me about your self
  • Ans. 

    Experienced steel fabricator with 10+ years in the industry. Skilled in welding, cutting, and blueprint reading.

    • 10+ years of experience in steel fabrication

    • Proficient in welding, cutting, and blueprint reading

    • Strong attention to detail and quality craftsmanship

    • Ability to work independently or as part of a team

    • Certified in relevant safety protocols

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Only skill checking
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Work team welding fabrication flame cutting over head crean drilling granding and more

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to good condition
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 Jun 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What work have u done before ?
  • Q2. What skills do u have regarding Electrical

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Symptoms of vaginism
  • Q2. Uses of HCG test in pregnancy

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with medical terminology and its basics

Senior Analyst - Data Science Interview Questions & Answers

Merilytics user image Shubham Prakash

posted on 10 Mar 2022

I applied via Naukri.com and was interviewed in Feb 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

2 rounds of 15 min each
1st was probability and statistics
2nd was data science

Round 3 - Assignment 

A problem statement was given to build a predictive model to help a CFO of an IT company to predict the time taken by an issue to resolve and classify the issue to high and low priority. Give some insights on the dataset to reduce the time to resolve the issue

Round 4 - Technical 

(4 Questions)

  • Q1. What is onehotencoding?
  • Q2. What do you mean by cross validation?
  • Q3. Explain Random Forest Classifier.
  • Q4. What are API and restful API?
Round 5 - Case Study 

Estimate the market size for a babysitter company across India? How will you proceed to expand the company across India?

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical rounds were easy to crack. Case study are of medium difficulty and can be cracked easily with a little bit of preperation.

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Started with basic introduction about myself and then 2 DSA problems to be solved on CodeChef or any IDE of your preference. Interviewer was helpful throughout the interview and helped with syntaxes at one point as well.
Parameters tested - 
1. Ability to think of edge test cases.
2. Coding Practices like naming variables and functions properly and using the most suitable access modifiers.
3. Ability to think of time and space complexity and optimise it.
Reaching the correct output was not mandatory but was preferred. Priority to coding practices was given.

  • Q1. 

    Next Greater Element Problem Statement

    You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater ele...

  • Ans. 

    The task is to find the next greater element for each element in the given array.

    • Iterate through the array from right to left.

    • Use a stack to keep track of the next greater element.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • If the stack is empty, there is no greater element, so assign -1.

    • If a greater element is found, assign it as the next greater element.

    • Push the current element ...

  • Answered by AI
  • Q2. 

    Zigzag Binary Tree Traversal Problem Statement

    Determine the zigzag level order traversal of a given binary tree's nodes. Zigzag traversal alternates the direction at each level, starting from left to rig...

  • Ans. 

    The zigzag level order traversal of a binary tree is the traversal of its nodes' values in an alternate left to right and right to left manner.

    • Perform a level order traversal of the binary tree

    • Use a queue to store the nodes at each level

    • For each level, alternate the direction of traversal

    • Store the values of the nodes in each level in separate arrays

    • Combine the arrays in alternate order to get the zigzag level order tra

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Started with basic introduction about myself and then 2 DSA problems to be solved on google doc. Interviewer was helpful throughout the interview.
Parameters tested - 
1. Ability to think of edge test cases.
2. Coding Practices like naming variables and functions properly and using the most suitable access modifiers.
3. Ability to think of time and space complexity and optimise it.
4. Making it to the correct output.

Reaching the correct output was mandatory in best possible time comlexity.

  • Q1. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Ans. 

    This is a problem where a sorted array is rotated and we need to search for given numbers in the array.

    • The array is rotated clockwise by an unknown amount.

    • We need to search for Q numbers in the rotated array.

    • If a number is found, we need to return its index, otherwise -1.

    • The search needs to be done in O(logN) time complexity.

    • The input consists of the size of the array, the array itself, the number of queries, and the q

  • Answered by AI
  • Q2. 

    K-th Element of Two Sorted Arrays

    You are provided with two sorted arrays, arr1 and arr2, along with an integer k. By merging all elements from arr1 and arr2 into a new sorted array, your task is to ident...

  • Ans. 

    The task is to find the kth smallest element of a merged array created by merging two sorted arrays.

    • Merge the two sorted arrays into a single sorted array

    • Return the kth element of the merged array

  • Answered by AI
Round 3 - HR 

Round duration - 40 minutes
Round difficulty - Easy

I was asked to introduce myself and general family background check and then discussion around salary negotiation.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Data Engineer in BangaloreEligibility criteriaDecent work experience (for SDE-1 1-2 years experience was expected), self projects in any domain,Sigmoid interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice popular questions from Arrays, Binary Trees, LinkedLists from CodeStudio's Interview Problems
Tip 2 : Make sure you are aware of calculating the time and space complexity for every problem you're coding.
Tip 3 : Prepare through Mock Interviews to practice explaining your approach while solving in an actual interview.

Application resume tips for other job seekers

Tip 1 : Describe best of your projects in minimum words. Don't forget to add buzz words like REST APIs/ DB Indexing/ Benchmarking etc if you worked on backend.
Tip 2 : Don't add school achievements like Olympiads or Class Topper in your resume.
Tip 3 : If you've some work experience, put it in a way ,you're marketing yourself. Add terms like 'Created/Owned the Project through entire SDLC' 
Tip 4 : Make sure you mention how your work experience actually impacted the company. Or how your self project can be actually useful to end user.

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - Assignment 
Round 2 - Technical 

(2 Questions)

  • Q1. How to sale the prodect
  • Ans. 

    To sell a product, understand the customer's needs, highlight the benefits, and create a sense of urgency.

    • Research the customer's needs and tailor your pitch accordingly

    • Highlight the unique benefits and features of the product

    • Create a sense of urgency by emphasizing limited availability or time-sensitive deals

    • Build rapport and establish trust with the customer

    • Address any objections or concerns the customer may have

    • Clos...

  • Answered by AI
  • Q2. How to make profit and which easy root . How to atrect the consumer
  • Ans. 

    To make profit and attract consumers, focus on providing value, building relationships, and utilizing effective marketing strategies.

    • Provide high-quality products or services that meet the needs of your target market

    • Build strong relationships with customers through excellent customer service and personalized experiences

    • Utilize effective marketing strategies such as social media advertising, email marketing, and influen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare God quality and give the advatisment

Interview Questionnaire 

3 Questions

  • Q1. Any chemistry
  • Q2. What was organichemistry
  • Ans. 

    Organic chemistry is the study of carbon-based compounds and their properties, reactions, and synthesis.

    • It is a branch of chemistry that deals with the structure, properties, and reactions of organic compounds.

    • Organic compounds are molecules that contain carbon atoms bonded to hydrogen atoms and other elements such as oxygen, nitrogen, sulfur, and halogens.

    • Organic chemistry has many applications in fields such as medic...

  • Answered by AI
  • Q3. Compound interest

I applied via Naukri.com and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. About the previous experience?
  • Q2. About your interest and few behavioural questions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you explain, don't be worry for something that dont know, coz there is always that someone has yet to know.

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1st round was an online test, which was pretty forward, thereafter I went onto a technical interview with Director & Lead Data Scientist where they asked very few basic questions.
  • Q2. The interview was really basic and any fresher can achieve iff they want you to get in!
  • Q3. Questions were asked on the topics like SQL, Python programming questions, a couple of coding questions, and some HR-related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience for me but feedback is expected because the questions asked from them were easy and I don't know how did they judge me based on that.

Gulf Craft Interview FAQs

How many rounds are there in Gulf Craft interview?
Gulf Craft interview process usually has 1-2 rounds. The most common rounds in the Gulf Craft interview process are Technical, Group Discussion and Resume Shortlist.

Tell us how to improve this page.

Gulf Craft Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 729 Interviews
Mu Sigma Interview Questions
2.6
 • 228 Interviews
Access Healthcare Interview Questions
3.9
 • 202 Interviews
Straive Interview Questions
3.4
 • 170 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
Nielsen Interview Questions
3.7
 • 116 Interviews
Kantar Interview Questions
3.5
 • 105 Interviews
Netscribes Interview Questions
2.8
 • 82 Interviews
Cotiviti Interview Questions
3.9
 • 71 Interviews
View all

Gulf Craft Reviews and Ratings

based on 10 reviews

4.6/5

Rating in categories

4.8

Skill development

4.8

Work-life balance

4.8

Salary

4.8

Job security

4.9

Company culture

4.9

Promotions

4.9

Work satisfaction

Explore 10 Reviews and Ratings
Compare Gulf Craft with

EXL Service

3.7
Compare

Access Healthcare

3.9
Compare

AGS Health

4.0
Compare

Straive

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