Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Asianet Satellite Communications Team. If you also belong to the team, you can get access from here

Asianet Satellite Communications Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Asianet Satellite Communications Interview Questions and Answers

Updated 20 Sep 2024

Asianet Satellite Communications Interview Experiences

Popular Designations

4 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Area of Experience detailing
  • Ans. 

    Area of experience detailing refers to providing a comprehensive overview of one's relevant work history and skills.

    • Highlight specific roles and responsibilities in previous key accounts management positions

    • Discuss successful strategies implemented to grow key accounts and increase revenue

    • Explain how you have effectively managed relationships with key clients and resolved any issues that arose

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - very bad job

Key Account Manager Interview Questions asked at other Companies

Q1. What is the reason behind introduction of Loan secure products amongst lenders and Insurance companies.
View answer (5)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic networking
Round 3 - Technical 

(1 Question)

  • Q1. Advanced networking
Round 4 - HR 

(1 Question)

  • Q1. Experience and salary negotiations

Network Engineer Interview Questions asked at other Companies

Q1. TCP/IP layers, why is transport needed for communication? What is Subnet mask and how does it help in data communication. Why is Vlan needed? Based on what information does a switch and router send a packet or frame? Types of arp, What is p... read more
View answer (2)
Asianet Satellite Communications Interview Questions and Answers for Freshers
illustration image

I applied via Job Fair and was interviewed in Dec 2021. 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 Resume tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Pay Package Providing by Asianet

Management Trainee Interview Questions asked at other Companies

Q1. What do you mean by balance sheet reconciliation could you explain briefly?
View answer (45)

Interview Questionnaire 

1 Question

  • Q1. First round was based on aptitude and basic english.You can easily clear it by some basic knowledge.Then come to the second round they asked some basic questions from communication like satellite communica...

Asianet Satellite Communications interview questions for popular designations

 Management Trainee

 (1)

 Key Account Manager

 (1)

 Network Engineer

 (1)

 Engineer Network Management

 (1)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

I applied via Referral and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical Questions (SQL and Python)
  • Q2. Business case studies

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up SQL skills, learn different methods of solving the same problem, learn basics of python, especially Pandas and Numpy

I applied via Referral and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. It is relevant to area where you are expertises and for position you applied for
  • Q2. Relevant to position

Interview Preparation Tips

Interview preparation tips for other job seekers - Really good company and can enjoy myntra benefits a lot .

I applied via Naukri.com and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell about yourself
  • Q2. What is your salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview wa easy and can crack it

I applied via Approached by Company and was interviewed before Aug 2021. There were 2 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 Resume tips
Round 2 - Aptitude Test 

My work experience and my knowledge

Interview Preparation Tips

Topics to prepare for Udaan Sales Executive interview:
  • Hard-work
  • Self confidence
  • Punchualty
  • customer support
  • Computer operator
Interview preparation tips for other job seekers - Only experience person and very hardworking person and honest and punchal
Contribute & help others!
anonymous
You can choose to be anonymous

Asianet Satellite Communications Interview FAQs

How many rounds are there in Asianet Satellite Communications interview?
Asianet Satellite Communications interview process usually has 2-3 rounds. The most common rounds in the Asianet Satellite Communications interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for Asianet Satellite Communications 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 Asianet Satellite Communications. The most common topics and skills that interviewers at Asianet Satellite Communications expect are ISP, Corporate Sales, Telecom, Broadband and Business Development.
What are the top questions asked in Asianet Satellite Communications interview?

Some of the top questions asked at the Asianet Satellite Communications interview -

  1. Area of Experience detail...read more
  2. First round was based on aptitude and basic english.You can easily clear it by ...read more
  3. Advanced network...read more

Recently Viewed

LIST OF COMPANIES

Northwest Executive Education

Overview

INTERVIEWS

AppViewX

No Interviews

INTERVIEWS

PVR Inox

No Interviews

SALARIES

Synamedia

SALARIES

SmartQ - Bottle Lab Technologies

LIST OF COMPANIES

Synamedia

Overview

SALARIES

Northwest Executive Education

INTERVIEWS

Bain & Company

No Interviews

INTERVIEWS

ValGenesis

No Interviews

INTERVIEWS

HT Media

No Interviews

Tell us how to improve this page.

Asianet Satellite Communications Interview Process

based on 8 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 424 Interviews
Udaan Interview Questions
3.9
 • 333 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Myntra Interview Questions
4.0
 • 213 Interviews
Blinkit Interview Questions
3.7
 • 178 Interviews
Tata Play Interview Questions
4.0
 • 70 Interviews
DISH TV Interview Questions
3.5
 • 59 Interviews
Videocon d2h Interview Questions
3.8
 • 23 Interviews
SUNDIRECT Interview Questions
4.0
 • 4 Interviews
View all

Asianet Satellite Communications Reviews and Ratings

based on 108 reviews

3.0/5

Rating in categories

2.5

Skill development

3.0

Work-life balance

3.0

Salary

2.5

Job security

2.4

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 108 Reviews and Ratings
Management Trainee
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

NOC Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Key Account Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Asianet Satellite Communications with

Tata Play

4.0
Compare

SUNDIRECT

4.0
Compare

Airtel DTH Services

4.1
Compare

DISH TV

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent