Upload Button Icon Add office photos

Filter interviews by

Coforge Smartserve Interview Questions, Process, and Tips

Updated 3 Jun 2024

Top Coforge Smartserve Interview Questions and Answers

Coforge Smartserve Interview Experiences

Popular Designations

4 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. Android Basic questions
  • Q2. What is Activity and its lifecycle
  • Ans. 

    Activity in Android is a single screen with a user interface. It has a lifecycle that defines its state at any given time.

    • Activity is a fundamental building block of Android applications

    • It represents a single screen with a user interface

    • Activity lifecycle includes methods like onCreate(), onStart(), onResume(), onPause(), onStop(), onDestroy()

    • Activities can transition between different states based on user interactions

  • Answered by AI
  • Q3. Types if services Services
  • Ans. 

    There are three main types of services: business services, consumer services, and public services.

    • Business services are services provided to other businesses, such as consulting or marketing services.

    • Consumer services are services provided directly to consumers, such as retail or hospitality services.

    • Public services are services provided by the government or non-profit organizations, such as healthcare or education ser

  • Answered by AI
  • Q4. How do you disable screenshot
  • Ans. 

    To disable screenshot, you can use a combination of hardware and software restrictions.

    • Use a mobile device management (MDM) solution to restrict screenshot functionality

    • Implement code in your app to prevent screenshots from being taken

    • Consider using secure containers or environments to prevent unauthorized access to sensitive information

  • Answered by AI
  • Q5. Types of intent
  • Ans. 

    Types of intent refer to the different categories of intentions that a user may have when interacting with a system.

    • Informational intent - user seeks information or answers to questions

    • Transactional intent - user wants to perform a specific action or transaction

    • Navigational intent - user wants to navigate to a specific page or section

    • Commercial intent - user is interested in purchasing a product or service

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 

(4 Questions)

  • Q1. Your ambitions and goals
  • Q2. Keep simple and answer as per your line of business
  • Q3. How to handle high work pressure
  • Ans. 

    To handle high work pressure, it is important to prioritize tasks, delegate responsibilities, take breaks, communicate effectively, and seek support when needed.

    • Prioritize tasks based on urgency and importance

    • Delegate responsibilities to team members to lighten the workload

    • Take short breaks to recharge and avoid burnout

    • Communicate effectively with team members and superiors about workload and challenges

    • Seek support fro...

  • Answered by AI
  • Q4. Your answer should be realistic

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before interview

Team Lead Operations Interview Questions asked at other Companies

Q1. What was thr volume of shipment handled per day in previous designation ?
View answer (19)

Data Analyst Interview Questions & Answers

user image Prasant Palai

posted on 3 Jun 2024

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

I appeared for an interview in May 2024.

Round 1 - Coding Test 

Mainly sql related questions were asked

Round 2 - Coding Test 

Some sql related questions were asked

Round 3 - HR 

(1 Question)

  • Q1. General hr questions and salary discussion

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

I applied via Recruitment Consulltant

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

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer questions confidently .

Front Office Incharge Interview Questions asked at other Companies

Q1. How we deal emergency
View answer (2)

Coforge Smartserve interview questions for popular designations

 Team Lead Operations

 (1)

 Data Analyst

 (1)

 Software Developer

 (1)

 Front Office Incharge

 (1)

Interview questions from similar companies

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

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is done within the same class while method overriding is done in different classes (subclass and superclass).

    • Method overloading is achieved by changing the number of parameters or the data type of ...

  • Answered by AI
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, don't hesitate.

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself Why you want to join axis bank
Round 2 - State head 

(1 Question)

  • Q1. He offered me for the post sales officer first but i refused to do it as i had five year experience then he offered for assistant manager post. And i ageed.

Interview Preparation Tips

Topics to prepare for Axis Bank Assistant Manager interview:
  • Graduation
  • B.com
  • Banking
Interview preparation tips for other job seekers - First of all you will have to confidant. And give your interview without any pressure.

Interview Questionnaire 

1 Question

  • Q1. Be prepared with coding for every concept you have learnt. Be ready to answer regarding exceptions and errors we face generally as a developer.

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

Interview Questionnaire 

1 Question

  • Q1. PI questions and related to my previous experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident in every interview , you will see the difference. Because key to crack any interview is how confident you are while answering interview's questions.

SO JUST BE CONFIDENT WHAT YOU SPEAK.

I applied via Campus Placement and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Better don’t join as a fresher. No career growth

Coforge Smartserve Interview FAQs

How many rounds are there in Coforge Smartserve interview?
Coforge Smartserve interview process usually has 2 rounds. The most common rounds in the Coforge Smartserve interview process are Coding Test, Resume Shortlist and HR.
What are the top questions asked in Coforge Smartserve interview?

Some of the top questions asked at the Coforge Smartserve interview -

  1. What is Activity and its lifecy...read more
  2. How to handle high work press...read more
  3. How do you disable screens...read more

Tell us how to improve this page.

Coforge Smartserve Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Amazon Interview Questions
4.0
 • 5.1k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
Deloitte Interview Questions
3.8
 • 2.9k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.2k Interviews
Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Axis Bank Interview Questions
3.7
 • 1.5k Interviews
View all

Coforge Smartserve Reviews and Ratings

based on 53 reviews

2.7/5

Rating in categories

2.7

Skill development

2.9

Work-life balance

2.0

Salary

3.7

Job security

2.7

Company culture

2.1

Promotions

2.6

Work satisfaction

Explore 53 Reviews and Ratings
Senior Executive
25 salaries
unlock blur

₹2.2 L/yr - ₹6.1 L/yr

Executive
13 salaries
unlock blur

₹1.8 L/yr - ₹2.8 L/yr

Finance Executive
7 salaries
unlock blur

₹2.2 L/yr - ₹2.5 L/yr

Analyst
4 salaries
unlock blur

₹1.9 L/yr - ₹3 L/yr

Test Engineer
4 salaries
unlock blur

₹3.3 L/yr - ₹5 L/yr

Explore more salaries
Compare Coforge Smartserve with

TCS

3.7
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Genpact

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