Upload Button Icon Add office photos

Filter interviews by

Scarlet Wireless Interview Questions and Answers

Updated 9 May 2023

Scarlet Wireless Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before May 2022. There were 3 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. Regarding requirements i worked
  • Q2. Rewarding how to approach while speaking to a candidate
Round 3 - HR 

(2 Questions)

  • Q1. Why i am looking for a job
  • Q2. Current CTC and expected CTC
  • Ans. 

    I prefer not to disclose my current CTC. My expected CTC is based on the market rate for this position.

    • It is okay to not disclose your current CTC if you are uncomfortable.

    • Research the market rate for the position and base your expected CTC on that.

    • Consider other factors such as benefits and work-life balance when negotiating.

    • Example: My current CTC is confidential, but based on my research and experience, I am expecti

  • Answered by AI

Technical Recruiter Interview Questions asked at other Companies

Q1. What different visas are you aware of. Can you name some of them.
View answer (1)

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Mcq based on language

Round 2 - One-on-one 

(1 Question)

  • Q1. Do you know STL. Find loop in linked list.
  • Ans. 

    STL knowledge and finding loop in linked list

    • STL (Standard Template Library) is a C++ library that provides containers, algorithms, and iterators.

    • To find a loop in a linked list, we can use Floyd's cycle-finding algorithm.

    • In this algorithm, we use two pointers, one moving at a slower pace and the other at a faster pace.

    • If there is a loop in the linked list, the faster pointer will eventually catch up to the slower poin...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have basic DSA and OOPs understanding. Questions are not tough. Basic knowledge is enough.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics
  • Q2. Work experience and job profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Better

I applied via LinkedIn and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. All About General Interview questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Before Apply any job any Refference is Compulsory who is working in Jio in same Dept.

I applied via Other and was interviewed before Mar 2018. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Serivece expression plz told
  • Q2. Customer choice given service and reply best response
  • Q3. How much transfer customer
  • Ans. 

    The question is unclear and lacks context.

    • Request clarification on what is meant by 'transfer customer'

    • Ask for more information about the specific role and responsibilities of an Assistant Manager

    • Seek clarification on the purpose or objective behind the question

  • Answered by AI
  • Q4. 6000/ customer satisfaction guaranteed service

Interview Preparation Tips

General Tips: Maruti home relocation movers and packers door to door delivery All responsibility packing and moving service
Skills: Communication

I appeared for an interview in Aug 2017.

Interview Questionnaire 

1 Question

  • Q1. About my current status

Interview Preparation Tips

Round: HR Interview
Experience: I have discussed about present and able to attend the training

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. Why this specific profile? (analyst)
  • Ans. 

    I am passionate about analyzing data and deriving insights to drive strategic decision-making.

    • I have a strong background in data analysis and statistics.

    • I enjoy problem-solving and finding patterns in data.

    • I believe that my analytical skills can add value to the organization by providing actionable insights.

    • I have experience using various analytical tools such as Excel, SQL, and Tableau.

    • I am detail-oriented and thrive

  • Answered by AI
  • Q2. Why finance?
  • Ans. 

    Passion for analyzing data and making informed financial decisions.

    • I have always been fascinated by numbers and analyzing trends.

    • I enjoy the challenge of making sense of complex financial data.

    • I believe finance plays a crucial role in driving business success and growth.

    • I am motivated by the opportunity to help companies make informed financial decisions.

    • I find satisfaction in using data to identify opportunities for i

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: Q: Give me five steps to estimate the number of traffic lights in Bombay.
Me: I will divide the city into equidistant lines, both vertical and horizontal; sort of a mesh. Then I would take vertical and horizontal rectangles i.e. the rectangles which fall on length and breadth of the city. Starting with the horizontal ones I would try to estimate the number of roads going from east to west in each rectangle(depending on the type of area: residential, commercial or a highway) Similarly I would try to estimate the number of roads going from north to south in each vertical rectangle. Now I have the average number of roads per unit length and per unit breadth. Now, I can calculate the average number of roads intersecting per rectangle. Now if I have the data, I can also use the traffic density data to further improve my estimate, i.e. whether the traffic light is required in that rectangle or not.(depending upon the traffic density)
Q: Lets say that golden quadrilateral gets completed tomorrow. What would be its impact on the sales of Ashok Leyland?
Me: Sir, they would increase, as more and more traffic will shift from railways to roadways as the average time taken by road will decrease.
Q: If I say that the sales will decreases by road, the truk will make the same number of trips in less amount of time, thereby rendering overcapacity in the road transport market therefore the sales will decrease.
Me: (I actually didn't let him complete, I interrupted him in between and said that I got the logic)
Tips: Don't try to overstate the facts.

Skills:
Duration: 3
College Name: IIM Lucknow

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between multi tasking, multi processing and multi programming operating systems with examples ?
  • Ans. 

    Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.

    • Multi tasking allows multiple tasks to run concurrently on a single processor.

    • Multi processing involves multiple processors running tasks simultaneously.

    • Multi programming allows multiple programs to be loaded into memory and executed concurrently.

    • Examples of multi tasking operating systems include Wi...

  • Answered by AI
  • Q2. Tell me about memory allocation (stack vs. heap)?
  • Ans. 

    Memory allocation refers to the process of assigning memory to programs during runtime.

    • Stack allocation is done automatically and is limited in size.

    • Heap allocation is done manually and is larger in size.

    • Stack memory is used for local variables and function calls.

    • Heap memory is used for dynamic memory allocation.

    • Memory leaks can occur if heap memory is not properly managed.

  • Answered by AI
  • Q3. You have two threads one printing even numbers in order and other odd numbers. Design an algorithm so that it prints numbers in natural order?
  • Ans. 

    Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.

    • Create two threads, one for printing even numbers and the other for printing odd numbers.

    • Use a shared variable to keep track of the current number to be printed.

    • Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.

    • Each thread should check if it is i...

  • Answered by AI
  • Q4. Print a matrix in spiral order?
  • Ans. 

    Printing a matrix in spiral order

    • Start from the first element and print it

    • Move in a spiral order towards the center of the matrix

    • Repeat until all elements are printed

  • Answered by AI
  • Q5. Thread class and Runnable Interface?
  • Ans. 

    Thread class and Runnable Interface are used for multithreading in Java.

    • Thread class is a predefined class in Java that provides methods to create and control threads.

    • Runnable interface is used to define a task that can be executed by a thread.

    • Thread class implements Runnable interface.

    • Thread class provides more control over threads than Runnable interface.

    • Example: Thread t = new Thread(new MyRunnable()); t.start();

    • Exa...

  • Answered by AI
  • Q6. What’s the difference between a Linked List and an ArrayList and give me an example of when to use which?
  • Ans. 

    Linked List is a dynamic data structure while ArrayList is a static data structure.

    • Linked List is best for frequent insertion and deletion operations.

    • ArrayList is best for frequent access operations.

    • Linked List uses more memory than ArrayList.

    • ArrayList is faster than Linked List for accessing elements.

    • Use Linked List when you need to frequently add or remove elements from the list.

    • Use ArrayList when you need to frequen

  • Answered by AI
  • Q7. Questions of OS concepts?
  • Q8. A role play scenario was given. With a clear instruction on I don’t need to know the basis and the hypothetical assumption was presented. I was told that I was expected to respond to the given scenario, in...
  • Q9. Why are you interested in a career in investment banking?
  • Ans. 

    I am not interested in a career in investment banking.

    • I am more interested in a career in software development

    • I enjoy problem-solving and creating innovative solutions through coding

    • Investment banking does not align with my passion and skill set

  • Answered by AI
  • Q10. Why have you chosen to apply to J.P. Morgan?
  • Ans. 

    I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.

    • J.P. Morgan has a strong reputation in the financial industry.

    • They have a global presence with offices in multiple countries.

    • The company offers various opportunities for career growth and development.

    • J.P. Morgan is known for its innovative technology solutions in the financial sector.

    • I am impressed by their ...

  • Answered by AI
  • Q11. Have you ever made a mistake? Tell us about it?
  • Ans. 

    Yes, I have made a mistake in my previous project.

    • I underestimated the complexity of a task and ended up missing the deadline.

    • I failed to properly test a feature, resulting in a bug that affected user experience.

    • I accidentally deleted an important file without having a backup.

    • I misunderstood a requirement and implemented a feature incorrectly.

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 1

General Tips: Interview Process: Aptitude test, followed by 3 rounds of interview. Interview process was very good. Just be positive to clear the interview.
Check this link before appearing for interview with JP Morgan. It will help  -----
Skills: Algorithm, Data structure, Stack
College Name: Na

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. All questions were related to procurement
  • Q2. Technocommercial knowledge check done

Interview Preparation Tips

Interview preparation tips for other job seekers - All questions were related to technical knowledge and related to work profile only. So better be prepared for questions related to all the activities you are looking after. Don't misguide the interviewer give your best.

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1.  Question about in depth working of Angular.io and nodejs. Also the basic mongodb questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Tata communications does not have a very big team for software development. The person has to manage from UI to backend database everything. The questions are asked on almost all the languages/tools etc.
There will be 3 technical rounds as to say and a HR round.
First round of interview is taken by the junior developer. This will be pure technical and lots of questions related to mostly one tech. Either front end and backend. Easy to clear if the basics are clear.
Second round is more technical and mostly related to integration of different services and architectural styles etc. Not so difficult to clear if you know industry best practices for designs.
Third round is with manager who checks the candidates and explains the business need and his role. Not to worry about.
Last is an HR round for package discuss and stuff.

Scarlet Wireless Interview FAQs

How many rounds are there in Scarlet Wireless interview?
Scarlet Wireless interview process usually has 3 rounds. The most common rounds in the Scarlet Wireless interview process are Resume Shortlist, Technical and HR.
How to prepare for Scarlet Wireless 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 Scarlet Wireless. The most common topics and skills that interviewers at Scarlet Wireless expect are Agile, C++, Python, Computer science and Javascript.

Tell us how to improve this page.

Scarlet Wireless Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Jio Interview Questions
3.9
 • 1.7k Interviews
Bharti Airtel Interview Questions
4.0
 • 848 Interviews
Vodafone Idea Interview Questions
4.1
 • 554 Interviews
Indus Towers Interview Questions
3.8
 • 176 Interviews
Hathway Interview Questions
3.5
 • 42 Interviews
View all

Scarlet Wireless Reviews and Ratings

based on 27 reviews

3.4/5

Rating in categories

3.1

Skill development

3.8

Work-life balance

3.7

Salary

3.2

Job security

3.4

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 27 Reviews and Ratings
Technical Recruiter
25 salaries
unlock blur

₹2 L/yr - ₹5.7 L/yr

HR Recruiter
9 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

US IT Recruiter
8 salaries
unlock blur

₹2.2 L/yr - ₹3.2 L/yr

HR Executive
7 salaries
unlock blur

₹3 L/yr - ₹4.6 L/yr

Team Lead
6 salaries
unlock blur

₹5.2 L/yr - ₹8 L/yr

Explore more salaries
Compare Scarlet Wireless with

Bharti Airtel

4.0
Compare

Vodafone Idea

4.0
Compare

Jio

4.0
Compare

Bharat Sanchar Nigam

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