Upload Button Icon Add office photos

Filter interviews by

Support Sages Interview Questions and Answers for Experienced

Updated 30 Dec 2021

Support Sages Interview Experiences for Experienced

1 interview found

Business Head Interview Questions & Answers

user image Indranil Bhattacharya

posted on 30 Dec 2021

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

Interview Questionnaire 

9 Questions

  • Q1. Describe yourself in a concise manner.
  • Q2. Describe your strengths and weakness
  • Q3. Describe your work experience if any in a very concise manner.
  • Q4. Describe your ideas on crack the deal
  • Q5. Describe your sucess
  • Ans. 

    My success is a result of hard work, determination, and a willingness to learn and adapt.

    • Consistently meeting or exceeding sales targets

    • Leading a successful team that achieved company goals

    • Receiving recognition and awards for outstanding performance

    • Continuously seeking out new opportunities for growth and development

    • Building strong relationships with clients and colleagues

  • Answered by AI
  • Q6. Describe your experience in team work.
  • Q7. Describe your goal (short term and long term)
  • Q8. Describe your idea on present economy
  • Ans. 

    The present economy is facing challenges due to the COVID-19 pandemic and its impact on businesses and employment.

    • The pandemic has caused a significant decline in economic activity and consumer spending.

    • Many businesses have been forced to close or reduce operations, leading to job losses.

    • Governments have implemented various measures to support businesses and individuals, such as stimulus packages and unemployment benef...

  • Answered by AI
  • Q9. Describe your idea on emerging markets
  • Ans. 

    Emerging markets are rapidly growing economies with increasing consumer demand and investment opportunities.

    • Emerging markets are often found in developing countries with expanding middle classes.

    • These markets offer potential for high returns on investment but also come with higher risks.

    • Examples of emerging markets include China, India, Brazil, and South Africa.

    • Companies looking to expand globally should consider enter...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Describe your expectations and reason for job change

Business Head Interview Questions asked at other Companies

Q1. What are the realtime incidences where you have been able to show the entrepreneurial face of your personality in your professional journey so far ? What were the situation and what was your reaction and end results ?
View answer (1)

Jobs at Support Sages

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jun 2021. There were 4 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 

(7 Questions)

  • Q1. What is the difference between List and Tuple?
  • Ans. 

    List is mutable and Tuple is immutable in Python.

    • List can be modified after creation while Tuple cannot be modified.

    • List uses square brackets [] while Tuple uses parentheses ().

    • List is used for homogenous data while Tuple is used for heterogenous data.

    • List is slower than Tuple in terms of performance.

    • Example of List: [1, 2, 3] and Example of Tuple: (1, 'hello', 3.14)

  • Answered by AI
  • Q2. What is __init__ ? Follow up question why is __ (double underscore) used?
  • Q3. A SQL query based on group by and order by DESC LIMIT 1 in order to fetch highest row of a group in a dataset given by panelist.
  • Q4. A simple query on SQL using group by and aggregate function.
  • Q5. Panelist asked about my previous work experience and projects I worked upon earlier and the technologies used.
  • Q6. Question on how do we create table using SQL Alchemy in Flask (since I had used Python Flask in one of my previous projects and had highlighted it pretty well on my resume).
  • Q7. How is memory managed in Python?
  • Ans. 

    Python uses automatic memory management through garbage collection.

    • Python uses reference counting to keep track of memory usage.

    • When an object's reference count drops to zero, it is deleted.

    • Python also uses a garbage collector to handle circular references.

    • Memory allocation is handled by the Python memory manager.

    • Python provides tools like the 'gc' module for managing memory usage.

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. Question on List operation.
  • Q2. Do you know numpy pandas?
  • Ans. 

    Yes, numpy and pandas are Python libraries used for data analysis and manipulation.

    • NumPy is used for numerical operations on arrays and matrices.

    • Pandas is used for data manipulation and analysis, providing data structures like DataFrame.

    • Both libraries are commonly used in data science and machine learning.

    • Example: import numpy as np; import pandas as pd;

  • Answered by AI
  • Q3. A question to count number of times a letter occurs in a sentence and then also find the maximum occurring letter.
  • Q4. Difference between generator and iterator?
  • Ans. 

    Generator generates values on the fly while iterator iterates over a collection of values.

    • Generator is a function that returns an iterator.

    • Generators use 'yield' keyword to return values one at a time.

    • Iterators are objects that implement the 'next' method to return the next value in a collection.

    • Iterators can be created from arrays, strings, maps, sets, etc.

    • Generators are useful for generating large sequences of values...

  • Answered by AI
  • Q5. What is the selling point about you why should we consider you over other candidate?
Round 4 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. What are your salary expectations?

Interview Preparation Tips

Topics to prepare for Tiger Analytics Senior Software Engineer interview:
  • Python
  • SQL
  • Logic Building
  • Numpy
  • Pandas
Interview preparation tips for other job seekers - Be honest about what you know and what you don't. Prepare your resume very well highlighting your best projects and keep good knowledge about them. Search for common interview questions asked for the role you are applying. Practice coding questions over coding platforms whichever you like , if required (depends on the role you are applying for)

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. What is means by react ?
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • React is used for creating reusable UI components.

    • It uses a virtual DOM for efficient rendering.

    • React allows for declarative programming.

    • It was developed by Facebook and is open source.

    • React Native is a framework for building mobile apps using React.

  • Answered by AI
  • Q2. What is Hooks ? What is redux?
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components. Redux is a state management library for JavaScript applications.

    • Hooks are functions that let you use React state and lifecycle features in functional components.

    • Hooks provide a way to reuse stateful logic between components.

    • Redux is a predictable state container for JavaScript apps.

    • Redux helps manage the state of...

  • Answered by AI
  • Q3. Difference between class and functional component?
  • Ans. 

    Class components are ES6 classes that extend the React.Component class, while functional components are just plain JavaScript functions.

    • Class components are more feature-rich and have access to lifecycle methods.

    • Functional components are simpler and easier to read and test.

    • Class components can have state and use lifecycle methods like componentDidMount and componentDidUpdate.

    • Functional components are stateless and do n...

  • Answered by AI
  • Q4. Difference between ES5 and ES6
  • Ans. 

    ES5 is the older version of JavaScript, while ES6 is the newer version with added features and syntax improvements.

    • ES6 introduced let and const for variable declaration.

    • ES6 introduced arrow functions for shorter syntax.

    • ES6 introduced classes for object-oriented programming.

    • ES6 introduced template literals for easier string interpolation.

    • ES6 introduced destructuring assignment for extracting values from objects and arra...

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

7 Questions

  • Q1. It's about angular and .net core
  • Q2. How to work with authentication part with .net
  • Ans. 

    Authentication in .NET involves using various authentication mechanisms such as Forms Authentication, Windows Authentication, and OAuth.

    • Use Forms Authentication for web applications

    • Use Windows Authentication for intranet applications

    • Use OAuth for third-party authentication

    • Implement authentication using ASP.NET Identity

    • Use secure password storage mechanisms such as hashing and salting

  • Answered by AI
  • Q3. What Is dependancy injunction
  • Ans. 

    Dependency injection is a design pattern where an object's dependencies are provided externally rather than created internally.

    • Dependency injection helps to decouple components and make them more modular.

    • It allows for easier testing and maintenance of code.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of creating a database connection ob...

  • Answered by AI
  • Q4. What is pipe, how to write custom pipe
  • Ans. 

    A pipe is a feature in Angular that allows you to transform data before displaying it.

    • Pipes are used in Angular templates with the '|' symbol.

    • There are built-in pipes like 'uppercase' and 'date'.

    • Custom pipes can be created using the 'Pipe' decorator and implementing the 'PipeTransform' interface.

    • Custom pipes can take arguments to modify their behavior.

    • Pipes can be chained together to perform multiple transformations on

  • Answered by AI
  • Q5. What is middlewear
  • Ans. 

    Middleware is software that acts as a bridge between different applications, allowing them to communicate and exchange data.

    • Middleware is a layer of software that sits between applications and operating systems

    • It provides services such as message routing, authentication, and data transformation

    • Examples include Apache Tomcat, Microsoft IIS, and IBM WebSphere

  • Answered by AI
  • Q6. What if array get assign with null does it still has array length
  • Ans. 

    No, assigning null to an array makes it empty and its length becomes 0.

    • Assigning null to an array makes it empty.

    • The length of an empty array is 0.

    • Trying to access length property of null will result in an error.

  • Answered by AI
  • Q7. What is null value in JavaScript
  • Ans. 

    Null value in JavaScript represents absence of any object value.

    • Null is a primitive value in JavaScript.

    • It is assigned to a variable to indicate that it has no value.

    • It is different from undefined, which means a variable has been declared but not assigned a value.

    • Null is falsy in JavaScript, meaning it is considered false in a boolean context.

    • Null can be used to clear the value of an object property.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on core part and be confident it's not much difficult be confident

Skills evaluated in this interview

Specialist SE Interview Questions & Answers

Societe Generale Global Solution Centre user image Anonymous

posted on 19 Nov 2020

I applied via Referral and was interviewed in Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. Why am I looking for a job change?
  • Q2. 2. Will I be interested in ups killing myself with new technologies?
  • Q3. 3. How would I contribute to the corporate community?

Interview Preparation Tips

Interview preparation tips for other job seekers - Well, in an interview it is very important to be positive and keeping your mind calm. Some of the tips are as shared below, these are the points I always followed for my interviews:

1. Understand the Job Description and be aware of the related questions. If the JD contains something that's not been your expertise, go through briefly on those subjects online and tell the interviewer that you never had exposure to this tool/app/technology/domain and would be willing to learn and tell them what you learnt about it.
2. Attention: Never show that you're too smart even if you are !! Humble nature and giving an impression that you are open for feedback creates a positive impression. The corporate world needs more of such people.
3. Throughout the interview process ask questions about their work and culture, show interest in the company you're attending interview for. They would not want to focus on what you did previously but they would definitely want to see if you're a good fit for their company and team.
4. Always have a long term plan with the organisation. Bigger companies look for such candidates. Your words should make them believe that you can stay there for a longer period of time.
5. Stay calm stay focused...it will be all okay !! Mantra for any interview.

Hope the above points help.

Thanks!

Medical coding, and medical billing Interview Questions & Answers

Episource user image Anonymous

posted on 8 Feb 2022

I applied via campus placement at Thiruvalluvar University and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - One-on-one 

Interview Preparation Tips

Topics to prepare for Episource Medical coding, and medical billing interview:
  • Anatomy
Interview preparation tips for other job seekers - Continues to u get a job so many more times try it

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What was the architecture used in your project?
  • Q2. What is the IDisposal? Give an example used in the applicstion.
  • Ans. 

    IDisposable is an interface used to release unmanaged resources.

    • It is used to release unmanaged resources like file handles, database connections, etc.

    • It has a single method called Dispose() which is used to release the resources.

    • It is implemented by classes that use unmanaged resources and needs to be disposed of.

    • Example: SqlConnection class implements IDisposable to release the database connection.

    • Example: FileStream...

  • Answered by AI
  • Q3. What is Dependency Injection and how can we inplement those?
  • Ans. 

    Dependency Injection is a design pattern that allows objects to receive dependencies rather than creating them internally.

    • Dependency Injection is used to reduce tight coupling between software components.

    • It allows for easier testing and maintenance of code.

    • There are three types of Dependency Injection: Constructor Injection, Setter Injection, and Interface Injection.

    • Frameworks like Spring and Angular provide built-in s

  • Answered by AI
  • Q4. Write the code to concatenate the value with comma in the given array. int[] arr = {1, 2, 3,4,5}
  • Ans. 

    Concatenate the values in the given integer array with comma.

    • Convert the integer array to string array using Arrays.toString()

    • Use String.join() method to concatenate with comma

  • Answered by AI
  • Q5. Explaination of Interface and Abstract classes.
  • Ans. 

    Interfaces and abstract classes are used for abstraction and defining contracts.

    • Interfaces are a collection of abstract methods that define a contract for a class to implement.

    • Abstract classes are classes that cannot be instantiated and can have both abstract and concrete methods.

    • Interfaces can be implemented by multiple classes, while a class can only inherit from one abstract class.

    • Interfaces are used for loose coupl...

  • Answered by AI
  • Q6. Is it possible to instanciate the abstract class? Explain.
  • Ans. 

    No, abstract classes cannot be instantiated.

    • Abstract classes are incomplete and cannot be instantiated on their own.

    • They can only be used as a base class for other classes.

    • Instantiation of an abstract class will result in a compile-time error.

    • However, concrete classes that inherit from the abstract class can be instantiated.

  • Answered by AI
  • Q7. What is Solid Principle? Give the examples used in your application.
  • Ans. 

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

    • S - Single Responsibility Principle

    • O - Open/Closed Principle

    • L - Liskov Substitution Principle

    • I - Interface Segregation Principle

    • D - Dependency Inversion Principle

    • Example: Using Single Responsibility Principle to separate UI and business logic

    • Example: Using Open/Closed Principle to extend functionality without mo

  • Answered by AI
  • Q8. Explain about the design pattern used in your application.
  • Ans. 

    We used the Model-View-Controller (MVC) design pattern in our application.

    • MVC separates the application into three interconnected components: the model, the view, and the controller.

    • The model represents the data and business logic of the application.

    • The view displays the data to the user.

    • The controller handles user input and updates the model and view accordingly.

    • MVC promotes separation of concerns and modularity.

    • Examp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare strongly whatever you have worked practically in your projects.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Bulk binding variables, procedure function difference, SQL loader, Cursor types in details, collections in details

Interview Preparation Tips

Interview preparation tips for other job seekers - Attended 2 technical and 1 Client round.
In the 1st technical round asked deep questions on advanced Pl SQL as well as Some SQL queries.
2nd technical round was happened based on the current role and experience.
And in the client round check the ability of candidate. By giving some scenario like what is the complex situation you face in the work and how you have resolved that.
In this sort of questions take your time about 30 sec think about what to tell and how to tell. You ll judge you on the basis of, the way you answer the question.

Interview Questionnaire 

3 Questions

  • Q1. Professional introduction
  • Q2. Project handled and details
  • Q3. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - The company being into engineering services they would look for a balance between your technical and behavioral skills. You need to be very good with the project you have handled in your current/previous organization(s) and the way you present your technical skills will add more to the score. This company also seeks an excellent presentation skill and good communication.

Bid Desk Analyst Interview Questions & Answers

Hewlett Packard Enterprise user image Anonymous

posted on 22 Nov 2020

Interview Questionnaire 

5 Questions

  • Q1. What do you know about HPE?
  • Q2. Why HPE?
  • Q3. Why MBA in Finance Specialisation?
  • Q4. What challenges have you faced in your life?
  • Q5. What are all the products of HPE?

Skills evaluated in this interview

Support Sages Interview FAQs

How to prepare for Support Sages interview for experienced candidates?
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 Support Sages. The most common topics and skills that interviewers at Support Sages expect are Python, AWS, DNS, Linux Administration and Perl.
What are the top questions asked in Support Sages interview for experienced candidates?

Some of the top questions asked at the Support Sages interview for experienced candidates -

  1. Describe your idea on emerging mark...read more
  2. Describe your idea on present econ...read more
  3. Describe your suce...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Support Sages interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
HGS Interview Questions
3.9
 • 228 Interviews
Bobcares Interview Questions
3.4
 • 2 Interviews
Go4customer Interview Questions
5.0
 • 1 Interview
View all

Support Sages Reviews and Ratings

based on 6 reviews

4.4/5

Rating in categories

4.9

Skill development

2.6

Work-Life balance

4.3

Salary & Benefits

3.5

Job Security

3.5

Company culture

4.4

Promotions/Appraisal

4.4

Work Satisfaction

Explore 6 Reviews and Ratings
Designer Internship

Kochi

0-1 Yrs

Not Disclosed

DevOps Engineer

Kochi

5-10 Yrs

Not Disclosed

Business Development Associate

Kochi

0-1 Yrs

Not Disclosed

Explore more jobs
System Engineer
7 salaries
unlock blur

₹1.9 L/yr - ₹3.2 L/yr

Devops Engineer
6 salaries
unlock blur

₹4.7 L/yr - ₹9.6 L/yr

Explore more salaries
Compare Support Sages with

Bobcares

3.4
Compare

Go4customer

5.0
Compare

HGS

3.9
Compare

Wipro

3.7
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