Upload Button Icon Add office photos

Filter interviews by

Headstream Technologies Interview Questions and Answers

Updated 1 Mar 2022

21 Interview questions

A Senior Software Engineer was asked
Q. How do you transfer data from one controller to another?
Ans. 

Data can be transferred between controllers using various methods such as delegation, notifications, or segues.

  • Delegation pattern can be used to transfer data between controllers

  • Notifications can be used to broadcast data to multiple controllers

  • Segues can be used to pass data between controllers during a transition

  • Data can also be stored in a shared data model or database for access by multiple controllers

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Explain the differences between Collections, Dictionaries, and KeyValuePairs.
Ans. 

Collections are generic classes to store and manipulate groups of objects. Dictionary is a collection of key-value pairs. KeyValuePair is a struct that represents a key-value pair.

  • Collections are used to store and manipulate groups of objects.

  • Dictionary is a collection of key-value pairs where each key is unique.

  • KeyValuePair is a struct that represents a key-value pair and is used in Dictionary.

  • Collections and Dic...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What are Async and Await?
Ans. 

Async and Await are keywords used in asynchronous programming in JavaScript.

  • Async and Await are used to handle asynchronous operations in JavaScript.

  • Async is used to define a function that returns a promise.

  • Await is used to wait for the promise to resolve before continuing the execution.

  • Async and Await make asynchronous code look like synchronous code.

  • Async and Await are supported in modern browsers and Node.js.

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Why would you choose to use an abstract class, and how do you implement it?
Ans. 

Abstract classes provide a blueprint for other classes to follow and cannot be instantiated.

  • Abstract classes are used when we want to provide a common interface for a group of related classes.

  • They cannot be instantiated and must be extended by a subclass.

  • Abstract methods are declared in the abstract class and implemented in the subclass.

  • They can have both abstract and non-abstract methods.

  • Example: Animal is an abs...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is a temporary table, where is it stored, and what is its lifetime?
Ans. 

Temporary table is a table that exists temporarily in the database and is used to store intermediate results.

  • Temporary tables are created and used within a single session or transaction.

  • They are stored in the tempdb database in SQL Server.

  • They can be used to store intermediate results during complex queries or to simplify complex joins.

  • They are automatically dropped when the session or transaction ends or when the...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. There are 100,000 records in an employee table. How can we optimize the query: SELECT * FROM dbo.Employees WHERE City="Chennai"?
Ans. 

Optimizing query to fetch records from employee table based on city

  • Create an index on the City column

  • Use a WHERE clause with an index hint

  • Use a stored procedure to cache the query results

  • Use a materialized view to precompute the query results

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is a SQL covered index?
Ans. 

SQL covered index is an index that contains all the columns needed for a query, reducing the need for table lookups.

  • A covered index can improve query performance by reducing the number of disk I/O operations.

  • It is created by including all the columns needed for a query in the index.

  • Covered indexes are particularly useful for queries that involve large tables or complex joins.

  • Example: CREATE INDEX idx_name ON table...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked
Q. What are MVC Data Annotations?
Ans. 

MVC Data Annotations are attributes used to define validation rules and metadata for model properties in ASP.NET MVC applications.

  • Used to validate user input on the server-side

  • Can be used to specify display names, format strings, and more

  • Examples include [Required], [StringLength], and [RegularExpression]

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is CLR, and what does it do?
Ans. 

CLR stands for Common Language Runtime. It is a component of .NET framework that manages execution of .NET programs.

  • CLR is responsible for memory management, security, and exception handling.

  • It compiles the intermediate language code into machine code.

  • CLR provides a common type system and runtime environment for all .NET languages.

  • It allows for cross-language integration and interoperability.

  • Examples of languages ...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What are Association, Composition, and Aggregation?
Ans. 

Association, Composition and Aggregation are three types of relationships between classes in object-oriented programming.

  • Association is a relationship between two classes where one class uses the other class as a parameter or return type.

  • Composition is a relationship between two classes where one class owns the other class and is responsible for its creation and destruction.

  • Aggregation is a relationship between tw...

View all Senior Software Engineer interview questions

Headstream Technologies Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Feb 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 - One-on-one 

(24 Questions)

  • Q1. How do you create a Vehicle management application? There we need to manage Car, Van, Bus, Truck, Bike and Bicycle
  • Q2. What is Garbage collection? Explain
  • Ans. 

    Garbage collection is an automatic memory management process that frees up memory occupied by objects that are no longer in use.

    • Garbage collection is a process of identifying and freeing up memory that is no longer in use by the program.

    • It is done automatically by the programming language runtime environment.

    • Garbage collection helps prevent memory leaks and improves program performance.

    • Examples of programming languages...

  • Answered by AI
  • Q3. What is SOLID Principle and explain about it....
  • Ans. 

    SOLID is a set of principles for object-oriented programming to make software more maintainable, scalable, and robust.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open-Closed Principle: A class should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes should be substitutable for their base types.

    • I - Interface Segregation Principle: A c...

  • Answered by AI
  • Q4. What is CLR, and what will do
  • Ans. 

    CLR stands for Common Language Runtime. It is a component of .NET framework that manages execution of .NET programs.

    • CLR is responsible for memory management, security, and exception handling.

    • It compiles the intermediate language code into machine code.

    • CLR provides a common type system and runtime environment for all .NET languages.

    • It allows for cross-language integration and interoperability.

    • Examples of languages that ...

  • Answered by AI
  • Q5. Why do we go for an abstract class and how do you implement it
  • Ans. 

    Abstract classes provide a blueprint for other classes to follow and cannot be instantiated.

    • Abstract classes are used when we want to provide a common interface for a group of related classes.

    • They cannot be instantiated and must be extended by a subclass.

    • Abstract methods are declared in the abstract class and implemented in the subclass.

    • They can have both abstract and non-abstract methods.

    • Example: Animal is an abstract...

  • Answered by AI
  • Q6. What is Association, Composition and Aggregation
  • Ans. 

    Association, Composition and Aggregation are three types of relationships between classes in object-oriented programming.

    • Association is a relationship between two classes where one class uses the other class as a parameter or return type.

    • Composition is a relationship between two classes where one class owns the other class and is responsible for its creation and destruction.

    • Aggregation is a relationship between two cla...

  • Answered by AI
  • Q7. In a stored procedure there are 1000 lines of statement, how do you identify a slow running query
  • Ans. 

    Identifying slow running query in a 1000 line stored procedure

    • Use SQL Server Profiler to trace the stored procedure and identify the slow running query

    • Check the execution plan of the stored procedure to identify the slow running query

    • Use SET STATISTICS TIME ON to measure the execution time of each query in the stored procedure

    • Divide the stored procedure into smaller parts and test each part to identify the slow running...

  • Answered by AI
  • Q8. Why the clustered index is only one for a table
  • Ans. 

    Clustered index is only one for a table to ensure efficient data retrieval and storage.

    • Clustered index determines the physical order of data in a table.

    • Only one clustered index can be created per table.

    • It is recommended to choose a column with unique and sequential values as the clustered index.

    • Clustered index is used for range searches and sorting.

    • Non-clustered indexes can be created for additional search paths.

  • Answered by AI
  • Q9. What is a temporary table, where it is stored, what is the lifetime
  • Ans. 

    Temporary table is a table that exists temporarily in the database and is used to store intermediate results.

    • Temporary tables are created and used within a single session or transaction.

    • They are stored in the tempdb database in SQL Server.

    • They can be used to store intermediate results during complex queries or to simplify complex joins.

    • They are automatically dropped when the session or transaction ends or when they are...

  • Answered by AI
  • Q10. What is SQL covered index
  • Ans. 

    SQL covered index is an index that contains all the columns needed for a query, reducing the need for table lookups.

    • A covered index can improve query performance by reducing the number of disk I/O operations.

    • It is created by including all the columns needed for a query in the index.

    • Covered indexes are particularly useful for queries that involve large tables or complex joins.

    • Example: CREATE INDEX idx_name ON table_name...

  • Answered by AI
  • Q11. What is table variable and its lifetime
  • Ans. 

    Table variable is a variable that holds a table-like structure in memory for temporary use.

    • Table variables are declared using the DECLARE keyword in SQL Server.

    • They can be used to store temporary data within a stored procedure or a batch of SQL statements.

    • Table variables have a scope limited to the batch or stored procedure in which they are declared.

    • They are automatically dropped when the batch or stored procedure com...

  • Answered by AI
  • Q12. There are 1 lakh records on an employee table. How do we can optimize the below query? SELECT * FROM dbo.Employees WHERE City="Chennai"
  • Ans. 

    Optimizing query to fetch records from employee table based on city

    • Create an index on the City column

    • Use a WHERE clause with an index hint

    • Use a stored procedure to cache the query results

    • Use a materialized view to precompute the query results

  • Answered by AI
  • Q13. Can we create the index for a varchar column (based on the previous question)?
  • Ans. 

    Yes, we can create an index for a varchar column to improve query performance.

    • Indexes can be created on varchar columns to speed up searches.

    • Example: CREATE INDEX idx_name ON table_name (varchar_column);

    • Consider the length of the varchar; longer lengths may impact performance.

    • Partial indexes can be created for large varchar columns: CREATE INDEX idx_name ON table_name (varchar_column(10));

    • Using indexes on varchar colum...

  • Answered by AI
  • Q14. How the URL acts in MVC, Which one called first (Model, View and Controller)
  • Q15. What is MSDB in SQL Server
  • Ans. 

    MSDB is a system database in SQL Server used for managing SQL Server Agent jobs, alerts, and operators.

    • MSDB stands for Microsoft SQL Server Database

    • It stores metadata and configuration information for SQL Server Agent

    • It contains tables for job scheduling, alerts, and operators

    • It also stores backup and restore history information

  • Answered by AI
  • Q16. What is SQL NOLOCK..?
  • Ans. 

    SQL NOLOCK is a query hint used to allow a SELECT statement to read data from a table without acquiring a shared lock.

    • NOLOCK is used to improve query performance by allowing dirty reads

    • It is not recommended to use NOLOCK in production environments

    • Other query hints include UPDLOCK, ROWLOCK, and XLOCK

  • Answered by AI
  • Q17. What is Async and Await
  • Ans. 

    Async and Await are keywords used in asynchronous programming in JavaScript.

    • Async and Await are used to handle asynchronous operations in JavaScript.

    • Async is used to define a function that returns a promise.

    • Await is used to wait for the promise to resolve before continuing the execution.

    • Async and Await make asynchronous code look like synchronous code.

    • Async and Await are supported in modern browsers and Node.js.

  • Answered by AI
  • Q18. Explain about Collections Vs Dictionary Vs KeyValuePair
  • Ans. 

    Collections are generic classes to store and manipulate groups of objects. Dictionary is a collection of key-value pairs. KeyValuePair is a struct that represents a key-value pair.

    • Collections are used to store and manipulate groups of objects.

    • Dictionary is a collection of key-value pairs where each key is unique.

    • KeyValuePair is a struct that represents a key-value pair and is used in Dictionary.

    • Collections and Dictiona...

  • Answered by AI
  • Q19. Can we use SQL Functions on the JOIN Clause
  • Ans. 

    Yes, SQL Functions can be used on the JOIN Clause.

    • SQL Functions can be used on the JOIN Clause to manipulate the data before joining.

    • Examples of SQL Functions that can be used on the JOIN Clause are CONCAT, SUBSTRING, and DATE_FORMAT.

    • Using SQL Functions on the JOIN Clause can improve query performance and reduce the amount of data transferred.

  • Answered by AI
  • Q20. What a SQL Function returns (what are the return type of function)
  • Ans. 

    SQL functions return a single value of a specified data type.

    • SQL functions can return various data types such as integer, string, date, etc.

    • The return type of a function is specified in the function declaration.

    • Functions can be used in SELECT, WHERE, and other SQL statements to manipulate data.

    • Examples of SQL functions include COUNT, AVG, MAX, MIN, and CONCAT.

    • Functions can also be user-defined using the CREATE FUNCTION...

  • Answered by AI
  • Q21. What is MVC Data Annotations
  • Ans. 

    MVC Data Annotations are attributes used to define validation rules and metadata for model properties in ASP.NET MVC applications.

    • Used to validate user input on the server-side

    • Can be used to specify display names, format strings, and more

    • Examples include [Required], [StringLength], and [RegularExpression]

  • Answered by AI
  • Q22. Form validations and model validation
  • Q23. What is partial views and how it is differs from View
  • Ans. 

    Partial views are reusable components of a view that can be rendered within other views.

    • Partial views are used to break down complex views into smaller, more manageable pieces.

    • They can be used to display common elements across multiple views, such as headers or footers.

    • Partial views can be rendered within other views using the @Html.Partial() method in ASP.NET MVC.

    • They can also be passed data from the parent view using...

  • Answered by AI
  • Q24. How to transfer data from controller to controller
  • Ans. 

    Data can be transferred between controllers using various methods such as delegation, notifications, or segues.

    • Delegation pattern can be used to transfer data between controllers

    • Notifications can be used to broadcast data to multiple controllers

    • Segues can be used to pass data between controllers during a transition

    • Data can also be stored in a shared data model or database for access by multiple controllers

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Headstream Technologies Senior Software Engineer interview:
  • ASP.Net MVC
  • OOPS
  • SQL Server
Interview preparation tips for other job seekers - Was interviewed by Tamil persons.
Was asked based on the working experience, how do you implement this?

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Headstream Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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

Round 1 - Aptitude Test 

Easy aptitude questions based on logical reasoning and basic maths.

Round 2 - Coding Test 

Easy logic-based question based on arrays and strings with some javascript output-based questions.

Round 3 - Coding Test 

Discussion about the projects that I made in college and the tech stack I know.
1 basic array/string-based problem.

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy to crack as no extensive DSA knowledge is required, basic logical reasoning and coding skills are enough.
PS: This was in 2015 but as per my knowledge the process is still the same.

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to work profile
  • Q2. Related to interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go well groomed

Interview Questionnaire 

1 Question

  • Q1. SDLC Model

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What were you stressed last time?
  • Ans. 

    I felt stressed last month while managing a tight project deadline and coordinating with multiple stakeholders.

    • Tight deadlines: I had to deliver a project report within a week, which usually takes two weeks.

    • Stakeholder communication: Coordinating with different teams created confusion and misalignment.

    • Work-life balance: I struggled to maintain my personal time due to extended work hours.

  • Answered by AI
  • Q2. Explain C language to a non technical person?
  • Ans. 

    C is a programming language used to create software and operating systems.

    • C is a low-level language that allows direct access to computer hardware.

    • It is used to create efficient and fast programs.

    • C is the foundation for many other programming languages such as C++, Java, and Python.

    • Examples of C programs include operating systems, device drivers, and video games.

  • Answered by AI
  • Q3. Why you want to join XenonStack?
  • Ans. 

    I am drawn to XenonStack for its innovative approach to technology and commitment to driving impactful business solutions.

    • XenonStack's focus on cutting-edge technologies like AI and cloud computing aligns with my passion for innovation.

    • The company's commitment to data-driven decision-making resonates with my analytical skills and experience in data analysis.

    • I admire XenonStack's collaborative culture, which fosters tea...

  • Answered by AI
  • Q4. Why should we hire your?
  • Ans. 

    I bring a unique blend of analytical skills, industry knowledge, and a passion for problem-solving that aligns with your team's goals.

    • Proven track record in data analysis: Successfully improved operational efficiency by 20% in my previous role through data-driven insights.

    • Strong communication skills: Effectively collaborated with cross-functional teams to gather requirements and deliver actionable solutions.

    • Adaptabilit...

  • Answered by AI
  • Q5. What are your weekness?
  • Ans. 

    I tend to be overly detail-oriented, which can slow down my decision-making process at times.

    • I often spend too much time on data analysis, which can delay project timelines. For example, in a recent project, I took extra time to ensure every data point was accurate, which pushed back our delivery date.

    • I sometimes struggle with delegating tasks because I want to ensure everything is done perfectly. This was evident when...

  • Answered by AI
  • Q6. Introduce yourself?
  • Ans. 

    I am a detail-oriented Business Analyst with a passion for data-driven decision-making and a strong background in project management.

    • Over 5 years of experience in business analysis across various industries, including finance and healthcare.

    • Skilled in gathering and analyzing requirements, as demonstrated in a project where I improved a client's reporting process by 30%.

    • Proficient in using tools like SQL and Tableau for...

  • Answered by AI
  • Q7. Asked about project i have done
  • Q8. Your Hobbies
  • Ans. 

    My hobbies include hiking, photography, and cooking.

    • Hiking: I enjoy exploring nature trails and challenging myself physically.

    • Photography: I love capturing beautiful moments and landscapes through my camera lens.

    • Cooking: I find joy in experimenting with new recipes and creating delicious meals for my friends and family.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a smartness test. How to tackle things. How you aproch or deal with senior. Also you need to know deep basics of technical things.
Don't lie in any way.
Say no to things ypu don't know about.

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java basics oops selenium framework

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn java basic on strings and selenium

Interview Questionnaire 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

  • Answered by AI

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

Headstream Technologies Interview FAQs

How many rounds are there in Headstream Technologies interview?
Headstream Technologies interview process usually has 2 rounds. The most common rounds in the Headstream Technologies interview process are Resume Shortlist and One-on-one Round.
How to prepare for Headstream Technologies 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 Headstream Technologies. The most common topics and skills that interviewers at Headstream Technologies expect are Business Development, .Net, Software Sales, ASP.Net and Client Management.
What are the top questions asked in Headstream Technologies interview?

Some of the top questions asked at the Headstream Technologies interview -

  1. There are 1 lakh records on an employee table. How do we can optimize the belo...read more
  2. Can we create the index for a varchar column (based on the previous questio...read more
  3. Why do we go for an abstract class and how do you implement...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 144 Interviews
Zeus Learning Interview Questions
3.1
 • 36 Interviews
Appsierra Interview Questions
4.3
 • 32 Interviews
XenonStack Interview Questions
3.1
 • 29 Interviews
Moris Media Interview Questions
4.3
 • 26 Interviews
View all

Headstream Technologies Reviews and Ratings

based on 4 reviews

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.3

Salary

3.3

Job security

3.8

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
4 salaries
unlock blur

₹5 L/yr - ₹10.4 L/yr

HR Manager
4 salaries
unlock blur

₹7.2 L/yr - ₹9.6 L/yr

Senior Quality Analyst
4 salaries
unlock blur

₹6 L/yr - ₹8.1 L/yr

Senior Technical Developer Lead
4 salaries
unlock blur

₹18.5 L/yr - ₹25 L/yr

Senior Business Analyst
3 salaries
unlock blur

₹14 L/yr - ₹15.3 L/yr

Explore more salaries
Compare Headstream Technologies with

HCL Infosystems

3.9
Compare

Northcorp Software

4.5
Compare

Jetking Infotrain

3.7
Compare

Apex CoVantage

3.0
Compare
write
Share an Interview