Upload Button Icon Add office photos

Filter interviews by

Saudi Telecom Company Interview Questions and Answers

Updated 26 May 2020

Saudi Telecom Company Interview Experiences

1 interview found

Project Coordinator and RF ENGINEER Interview Questions & Answers

user image Anonymous

posted on 26 May 2020

I applied via Indeed and was interviewed in Nov 2019. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. What is your last degree name..??
  • Q2. What do you know about CEM customer experience managment system ..?
  • Ans. 

    CEM customer experience management system is a tool used to monitor, measure, and manage customer interactions with a company.

    • CEM systems collect data from various touchpoints such as surveys, social media, and customer feedback.

    • The data is analyzed to identify trends, issues, and opportunities for improvement in customer experience.

    • CEM systems help companies improve customer satisfaction, loyalty, and retention by add...

  • Answered by AI
  • Q3. What do you know about accesibility Key performance indicators ..??
  • Q4. Do you have any past experience in DT drive test..??
  • Q5. What do you know about RF KPIs..??

Interview Preparation Tips

Interview preparation tips for other job seekers - CV should in good formate so that it attract a recruiter .
Donot write any thing what you have never done..
Dressing should be proper
Last but not least is that your english fluency should be in expert level

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Dec 2019. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Related to the optical fibre cable
  • Q2. OTDR traces
Round 2 - Aptitude Test 

A test that measures your ability to succeed at something

Round 3 - Technical 

(2 Questions)

  • Q1. Hard work, dedication, potential,
  • Q2. Master mind for the ofc work
  • Ans. 

    The mastermind for the office work is someone who is highly skilled, organized, and able to effectively manage and coordinate various tasks and projects.

    • Strong technical skills in networking and IT infrastructure

    • Excellent problem-solving abilities

    • Effective communication and teamwork skills

    • Ability to prioritize and multitask

    • Experience with project management tools and software

    • Examples: Cisco Certified Network Profession...

  • Answered by AI
Round 4 - Group Discussion 

Team work any planning work discussed our team for clearing our work and complete our task

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is ur background
  • Ans. 

    I have a Bachelor's degree in Computer Science and have completed multiple internships in software development.

    • Bachelor's degree in Computer Science

    • Multiple internships in software development

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. LTE Frame Structure
  • Q2. Type 1 and Type 2
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 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 

(5 Questions)

  • Q1. Difference btwn jdk , jre and jvm
  • Ans. 

    JDK is a development kit that includes JRE and tools for developing Java applications. JRE is a runtime environment for executing Java programs. JVM is a virtual machine that runs Java bytecode.

    • JDK (Java Development Kit) includes JRE (Java Runtime Environment) and development tools like compiler and debugger.

    • JRE (Java Runtime Environment) is a software package that provides the libraries and components necessary for ru...

  • Answered by AI
  • Q2. Difference btwn static and volatile
  • Ans. 

    Static variables are shared among all instances of a class, while volatile variables are used to indicate that a variable's value will be modified by different threads.

    • Static variables are initialized only once at the start of the program and retain their value throughout the program's execution.

    • Volatile variables are used to ensure visibility of changes to variables across multiple threads.

    • Static variables are accesse...

  • Answered by AI
  • Q3. What is final keyword
  • Ans. 

    Final keyword is used in Java to declare constants, prevent method overriding, and prevent class inheritance.

    • Used to declare constants - value cannot be changed once assigned

    • Prevents method overriding - method cannot be overridden in child classes

    • Prevents class inheritance - class cannot be extended

  • Answered by AI
  • Q4. Difference btwn paralle stream and stream
  • Ans. 

    Parallel stream allows processing elements concurrently, while stream processes elements sequentially.

    • Parallel stream can improve performance by utilizing multiple threads for processing.

    • Stream processes elements one by one in a sequential manner.

    • Example: stream().parallel() vs stream().sequential()

  • Answered by AI
  • Q5. What is stream used for
  • Ans. 

    Streams are used in Java to process collections of objects in a functional style.

    • Streams allow for concise and readable code when working with collections.

    • They support operations like filter, map, reduce, and collect.

    • Streams can be sequential or parallel, depending on the processing requirements.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().filter(name -> name.startsWith("A")).forEach(S

  • Answered by AI

Skills evaluated in this interview

IT TECH II Interview Questions & Answers

Dish Network user image Anonymous

posted on 12 Sep 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 5 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 - HR 

(1 Question)

  • Q1. Screening your profile and try to understand your profile
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions related to your project
Round 4 - Technical 

(1 Question)

  • Q1. Technical questions communication skills etc
Round 5 - HR 

(1 Question)

  • Q1. Final discussion

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Oct 2022. There were 5 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 - Coding Test 

It was a combination of coding and aptitude test. The test had four section and each section had it's time limit.

Round 3 - Technical 

(3 Questions)

  • Q1. The interviewer asked me question based on my resume. He also asked me question related to DBMS, OS & DSA.
  • Q2. Define polymorphism.
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It can be achieved through method overloading or method overriding.

    • For example, a parent class Animal can have child classes like Dog, Cat, and Bird, each with their own unique implementation of the method 'makeSound'.

  • Answered by AI
  • Q3. Difference between SQL & NoSQL.
  • Ans. 

    SQL is a relational database management system, while NoSQL is a non-relational database management system.

    • SQL databases use structured query language for defining and manipulating the data.

    • NoSQL databases are schema-less and use various data models like key-value, document, columnar, or graph.

    • SQL databases are suitable for complex queries and transactions.

    • NoSQL databases are horizontally scalable and provide high perf...

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. It was a managerial round.
Round 5 - HR 

(1 Question)

  • Q1. It asked me some situational based questions.

Interview Preparation Tips

Topics to prepare for Telstra Associate Software Engineer interview:
  • DBMS
  • DSA
  • OS
Interview preparation tips for other job seekers - Do revise core java concepts. Also be clear with what you know and what you don't. Hope you crack the interview. All the best :))

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. All basic questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic questions
Round 4 - Group Discussion 

Experience location family etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Final HR round on Salary negotiate

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

There will be some mcq and coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. This is will be a 30 mins interview.
  • Q2. Questions on python,networking,ds,os
Round 3 - Technical 

(1 Question)

  • Q1. Coding question on c,c++,python. Basics of networking ,oops and os.

Interview Preparation Tips

Topics to prepare for CommScope Software Engineer interview:
  • Python
  • OOPS
  • Computer Networking
Interview preparation tips for other job seekers - Brush up your coding skills and networking then you will ace it. Best of luck.
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Safety related questions
  • Q2. Permit to work related
Round 3 - Technical 

(1 Question)

  • Q1. Tool box talk related

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was amazing and my experience also good

Saudi Telecom Company Interview FAQs

What are the top questions asked in Saudi Telecom Company interview?

Some of the top questions asked at the Saudi Telecom Company interview -

  1. Do you have any past experience in DT drive test....read more
  2. What do you know about accesibility Key performance indicators ....read more
  3. What do you know about RF KPIs....read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Jio Interview Questions
3.9
 • 1.6k Interviews
Bharti Airtel Interview Questions
4.0
 • 836 Interviews
Vodafone Idea Interview Questions
4.1
 • 554 Interviews
Ericsson Interview Questions
4.1
 • 411 Interviews
Aircel Interview Questions
4.4
 • 8 Interviews
View all

Saudi Telecom Company Reviews and Ratings

based on 70 reviews

4.2/5

Rating in categories

3.5

Skill development

4.3

Work-life balance

3.9

Salary

3.8

Job security

4.2

Company culture

3.3

Promotions

3.9

Work satisfaction

Explore 70 Reviews and Ratings
Telecom Engineer
9 salaries
unlock blur

₹3.9 L/yr - ₹16 L/yr

Network Engineer
6 salaries
unlock blur

₹6 L/yr - ₹10.1 L/yr

Fiber Optic Technician
5 salaries
unlock blur

₹5.4 L/yr - ₹10.4 L/yr

Solution Architect
5 salaries
unlock blur

₹23.5 L/yr - ₹38 L/yr

Technical Solution Analyst
4 salaries
unlock blur

₹28 L/yr - ₹35 L/yr

Explore more salaries
Compare Saudi Telecom Company with

Bharti Airtel

4.0
Compare

Jio

3.9
Compare

Vodafone Idea

4.1
Compare

Tata Communications

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