Upload Button Icon Add office photos

Filter interviews by

MobileComm Technologies India DT Engineer Interview Questions and Answers

Updated 28 Feb 2024

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tems ,excal,azq related questions ask
  • Q2. Explein how handle , how to see rf parameter
  • Ans. 

    RF parameters can be handled by using specialized equipment and software to measure and analyze signal strength, frequency, bandwidth, and other characteristics.

    • Use spectrum analyzers to measure signal strength and frequency

    • Utilize network analyzers to analyze impedance, return loss, and VSWR

    • Perform site surveys to assess coverage and interference

    • Monitor and adjust antenna orientation and power levels for optimal perfo

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join company no job security

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Aug 2022. 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 

(3 Questions)

  • Q1. How to check cyclic swap in sector?
  • Ans. 

    To check cyclic swap in sector, verify if the data is shifted by a fixed number of positions.

    • Check if the data in the sector is shifted by a fixed number of positions

    • Compare the original data with the shifted data to identify cyclic swap

    • Use algorithms like bubble sort or rotation to detect cyclic swaps

  • Answered by AI
  • Q2. If u visit the site at first what will you do?
  • Ans. If I visit the site first I will call the technician and take the permission from technician if he garent me permission then I will raise my ptw .Ptw is very necessary working from height.
  • Answered Anonymously
  • Q3. If you visiting the site what what things you will carry?
  • Ans. 

    I would carry necessary tools, safety equipment, documentation, and a mobile device.

    • Tools such as multimeter, screwdrivers, pliers

    • Safety equipment like hard hat, gloves, safety glasses

    • Documentation including site plans, project specifications

    • Mobile device for communication, accessing digital resources

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't fear of interview that if I not qualified then if you will not qualified no problem u gain the skills and u know how to behave how to give answer

Skills evaluated in this interview

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

I applied via campus placement at Sastra University and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

60 minutes 60 aptitude and logical reasoning questions questions

Round 2 - Technical 

(2 Questions)

  • Q1. Can you write a program to demonstrate soccket programming
  • Ans. 

    Yes

    • Socket programming is a way to establish communication between two computers over a network using sockets.

    • It involves creating a socket, binding it to an IP address and port, listening for incoming connections, and sending/receiving data.

    • Examples of socket programming include creating a chat application, a file transfer program, or a web server.

  • Answered by AI
  • Q2. What do you know about ipv4 vs ipv6,ip masking and more computer network related stuff
  • Ans. 

    IPv4 and IPv6 are internet protocol versions. IP masking is a technique to hide IP addresses.

    • IPv4 is the fourth version of the Internet Protocol, while IPv6 is the sixth version.

    • IPv4 uses 32-bit addresses, allowing for approximately 4.3 billion unique addresses.

    • IPv6 uses 128-bit addresses, providing a significantly larger address space.

    • IP masking, also known as IP anonymization, is the process of hiding the IP address ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with computer network and java

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Team work - how to participate, foster etc.

Round 2 - HR 

(2 Questions)

  • Q1. Ambition and how to work towards it
  • Q2. How to function in a team
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Interview 

(1 Question)

  • Q1. Construction and work experience
Round 2 - Assignment 

Construction and relevant questions

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

I applied via campus placement at Sastra University and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions based on resume
Round 3 - One-on-one 

(1 Question)

  • Q1. More based on resume but from managers
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 Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Technical Questions relevant to your domain and your previous experience.
Round 3 - One-on-one 

(1 Question)

  • Q1. This Round is with your manager and Questions relevant to behavior, self-confidence, technical in quick overview
Round 4 - HR 

(1 Question)

  • Q1. Relevant to experience and self confidence, salary Discussion and further process guidelines

I was interviewed in Jan 2022.

Round 1 - Video Call 

(4 Questions)

Round duration - 40 Minutes
Round difficulty - Medium

Round 1 was mainly focused on data structures and algorithms ,core java concepts and dbms

  • Q1. Minimum Characters For Palindrome

    you are given a string and you have to find the minimum number of characters to be inserted to convert it to a palindrome.

  • Ans. 

    Tip 1 : Be clear and loud while solving problem , discuss approach with interviewer.

  • Answered by CodingNinjas
  • Q2. Next Greater Element

    Given an array, print the Next Greater Element (NGE) for every element. The Next greater Element for an element x is the first greater element on the right side of x in the array. Eleme...

  • Ans. Brute Force

    For every element in the array, we will run a loop on its right side. As soon as we find an element on its right side which is greater than it, we will break the loop, assign it as the NGE of this element, move forward, and do the same for the next element.

    Space Complexity: O(1)Explanation:

    O(1)

     

    No extra space is used.

    Time Complexity: O(n^2)Explanation:

    O(N ^ 2),  Where N is the number of elements ...

  • Answered by CodingNinjas
  • Q3. OOPS based Questions

    brush up basic core java concepts like oops concepts, serialization and also java 8 new features, was asked to write codes with java 8 features

  • Q4. DBMS Questions

    ACID properties,sql quries like 2nd highest salary from employee table and more dbms concepts.

Round 2 - Video Call 

(1 Question)

Round duration - 40 to 50 min
Round difficulty - Medium

Focussed mainly on projects and system design

  • Q1. Technical Questions

    I was asked about projects.HLD of my current project and my role in it.Different design patterns were asked .discussed various architectural approach for solving problem according to req...

Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

Managerial round

  • Q1. Project Based Questions

    Mainly about my current role and projects i worked on.Discussed HLD problems from projects i worked on and side projects.

Round 4 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

  • Q1. Basic HR questions

    Introduction ,Where do you see yourself in 2-3 years?
    What do you know about Airtel Xlabs?
    Why do you want to join Airtel?

  • Ans. 

    Tip 1 : read about company before applying.
     

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteria1+ year of experienceAirtel interview preparation:Topics to prepare for the interview - 1. Data Structure and algorithms (arrays, queue, stack, LinkedList, Dynamic programming,Graph,Trees) 2. DBMS 3.System Design(might not asked to freshers) 4.Core and advanced Java 5. Computer Networks (not much)6. Operating SystemsTime required to prepare for the interview - 1.5 - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Make you Data Structure and algorithms , Problem solving strong ( use to do some dsa problems on code studio and leetcode daily.
Tip 2 : Practiced Quality questions and mostly asked questions list available on codestudio( used company tags and topic tags) as quality matters more than quantity of questions .
Tip 3 : Give mock interviews, this really helped me as it gives you clearity and builds confidence.
Tip 4 : Read respective company’s interview experiences available on codestudio and other websites before going to actual interview, as this gives you idea about level of interviews and you can prepare beforehand.
Tip 5 : after solving dsa problem .Try to look in discussion section too as you can get more optimised or more efficient approach used by others to solve the problem.
Tip 6 : Prepare important concepts from Operating system,DBMS,System design too as that might also be asked.
Tip 7 : Do atleast 2 quality projects.
Not a Tip But : Lot of quality content available online, whenever felt like stuck with some concepts take help from senior or colleagues ( I use to watch coding ninja shorts by parikh jain whenever felt demotivated or stuck with concepts)

Application resume tips for other job seekers

Tip 1 : Have a concise resume , don't fill your resume with unnecessary details like your address, relationship status etc.
Tip 2 :Resume should not be more than 2 pages( try to make it very concise in 1 page)

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral

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 - Technical 

(2 Questions)

  • Q1. About coding and all oops concept SQL, unix
  • Q2. Unix, sql, language and oops concepts questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare yourself for aptitute test and some language

MobileComm Technologies India Interview FAQs

How many rounds are there in MobileComm Technologies India DT Engineer interview?
MobileComm Technologies India interview process usually has 1 rounds. The most common rounds in the MobileComm Technologies India interview process are Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Bharti Airtel Interview Questions
4.0
 • 813 Interviews
Samsung Interview Questions
4.0
 • 551 Interviews
Vodafone Idea Interview Questions
4.1
 • 542 Interviews
Ericsson Interview Questions
4.2
 • 403 Interviews
Cisco Interview Questions
4.2
 • 395 Interviews
Dell Interview Questions
4.1
 • 386 Interviews
Qualcomm Interview Questions
3.8
 • 270 Interviews
View all
MobileComm Technologies India DT Engineer Salary
based on 10 salaries
₹2 L/yr - ₹3.2 L/yr
At par with the average DT Engineer Salary in India
View more details

MobileComm Technologies India DT Engineer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

2.0

Skill development

4.0

Work-Life balance

5.0

Salary & Benefits

4.0

Job Security

3.0

Company culture

2.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 2 Reviews and Ratings
RF Engineer
80 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Integration Engineer
53 salaries
unlock blur

₹4.2 L/yr - ₹11.3 L/yr

RF Drive Test Engineer
42 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Senior Integration Engineer
39 salaries
unlock blur

₹5.2 L/yr - ₹12 L/yr

RAN Integration Engineer
28 salaries
unlock blur

₹3.8 L/yr - ₹11.5 L/yr

Explore more salaries
Compare MobileComm Technologies India with

Ericsson

4.2
Compare

Nokia Networks

4.3
Compare

Huawei Technologies

4.0
Compare

Cisco

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview