Upload Button Icon Add office photos

Filter interviews by

Sears IT & Management Services India Senior Technical Associate Interview Questions and Answers

Updated 20 Dec 2019

Sears IT & Management Services India Senior Technical Associate Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Core java, spring, unix and hibernate
  • Q2. All basic concepts need basic explanation with code examples
  • Q3. All questions asked in interview round are basic there is no such advance questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please all basic concepts with clear and short explanation do not include any unnecessary explanation to answers and make sure u give fluently and english should not be broken

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Related to project
  • Q2. Explain the project
  • Ans. 

    The project is a software application designed to provide technical support to customers experiencing issues with a product or service.

    • Developed a user-friendly interface for customers to submit support tickets

    • Implemented a ticketing system to track and prioritize customer issues

    • Integrated knowledge base articles to provide self-help resources for common problems

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

(2 Questions)

  • Q1. Related to project
  • Q2. Explain the project
  • Ans. 

    The project is a software application designed to streamline technical support processes and improve customer satisfaction.

    • Developed a user-friendly interface for customers to submit support tickets

    • Implemented a ticketing system to track and prioritize support requests

    • Integrated knowledge base for quick access to troubleshooting guides

    • Utilized automation tools to expedite resolution times

    • Conducted regular analysis of s

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. About education
  • Q2. Explain them about my education
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Cisco Servers Installation
  • Q2. HPe servers installation

Interview Preparation Tips

Interview preparation tips for other job seekers - For technical persons softenger is best
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your Experience?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Windows technology
Round 2 - One-on-one 

(1 Question)

  • Q1. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discusssion
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 tips
Round 2 - HR 

(2 Questions)

  • Q1. What are you Aiming for ?
  • Ans. Let them what you feel like clearly.
  • Answered Anonymously
  • Q2. What you have done in Education?
  • Ans. You can't lie about it. It is in your Mark sheet.
  • Answered Anonymously
Round 3 - One-on-one 

(1 Question)

  • Q1. Almost same questions. with your expectation and what you understand about the company.
  • Ans. Being fresher, I did R&D about the company and scope of position I will be entering into.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best its great opportunity. Here you can rarn more and more. Just a draw back you will start hating sun after this.
Round 1 - Technical 

(9 Questions)

  • Q1. Explain MVC pipe-line.
  • Ans. 

    MVC pipeline is a design pattern that separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic

    • View displays the data to the user

    • Controller handles user input and updates the model and view accordingly

    • The pipeline ensures separation of concerns and promotes modularity

    • Example: A user enters data in a form (input), the controller receives the i...

  • Answered by AI
  • Q2. Howrouting works in Asp.Net MVC?
  • Ans. 

    Routing in Asp.Net MVC maps incoming requests to appropriate controller actions.

    • Routing is configured in RouteConfig.cs file.

    • Routes are defined using MapRoute method.

    • Routes can have placeholders for dynamic values.

    • Routes can have constraints to restrict the values of placeholders.

    • Routes can be named for easy reference.

    • Default route is defined as {controller}/{action}/{id}.

    • Attribute routing can also be used to define ro

  • Answered by AI
  • Q3. How to move from one entity framework version to another in a project?
  • Ans. 

    To move from one Entity Framework version to another, update the NuGet package and make necessary code changes.

    • Update the NuGet package to the desired version

    • Make necessary code changes to accommodate any breaking changes

    • Test thoroughly to ensure the application still works as expected

  • Answered by AI
  • Q4. How WCF is different from Asp.Net Web Api?
  • Ans. 

    WCF is a framework for building distributed systems while Asp.Net Web Api is for building HTTP services.

    • WCF supports multiple protocols like TCP, HTTP, Named Pipes, etc. while Web Api only supports HTTP.

    • WCF has more configuration options and is more flexible than Web Api.

    • Web Api is more lightweight and easier to use for building RESTful services.

    • WCF is more suitable for building enterprise-level applications with compl...

  • Answered by AI
  • Q5. How to create a restful service without using Asp.Net Web Api template?
  • Ans. 

    Creating a RESTful service without using Asp.Net Web Api template.

    • Use a lightweight framework like Flask or Express

    • Define routes and HTTP methods for each endpoint

    • Serialize data to JSON format

    • Handle errors and exceptions

    • Test the service using tools like Postman or curl

  • Answered by AI
  • Q6. Difference between drop, truncate and delete.
  • Ans. 

    Difference between drop, truncate and delete.

    • DROP command removes a table from the database

    • TRUNCATE command removes all rows from a table

    • DELETE command removes specific rows from a table

  • Answered by AI
  • Q7. How many types of routings are there in Asp.Net MVC?
  • Ans. 

    There are two types of routings in Asp.Net MVC: convention-based routing and attribute routing.

    • Convention-based routing uses default routing rules to map URLs to controller actions.

    • Attribute routing allows developers to define custom routes using attributes on controller actions or at the controller level.

    • Both types of routing can be used together in the same application.

    • Convention-based routing is the default routing ...

  • Answered by AI
  • Q8. How to go about performancetuning in SQL?
  • Ans. 

    Performance tuning in SQL involves optimizing queries, indexes, and server settings to improve database performance.

    • Identify slow queries using profiling tools

    • Optimize queries by rewriting or adding indexes

    • Adjust server settings such as memory allocation and disk usage

    • Consider partitioning large tables

    • Regularly monitor and analyze performance metrics

  • Answered by AI
  • Q9. Given a project requirement, how to choose between .Net framework and .Net Core?
  • Ans. 

    Choose .Net Core for cross-platform and cloud-based applications, .Net Framework for Windows-only applications.

    • Consider the target platform and deployment environment

    • Choose .Net Core for cross-platform and cloud-based applications

    • Choose .Net Framework for Windows-only applications

    • Check for compatibility with existing libraries and frameworks

    • Consider performance and scalability requirements

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why would to like to change your organisation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always try to be prepared as best as one can.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed before Jun 2022. There were 3 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 - Technical 

(1 Question)

  • Q1. Wat was the last project?
Round 3 - HR 

(1 Question)

  • Q1. How much will be the expectation?

Interview Preparation Tips

Topics to prepare for Foray Software Technical Support Engineer interview:
  • Unix Shell Scripting

I applied via Walk-in and was interviewed before Oct 2021. There were 2 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 - Technical 

(2 Questions)

  • Q1. Computer related,and network
  • Q2. Groups discussion , general knowledge, exam mathematics

Interview Preparation Tips

Interview preparation tips for other job seekers - Network, computer normal technical knowledge ,after training attend the exam pass the exam selected
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About previous experience
  • Q2. Relevant skills and projects

Sears IT & Management Services India Interview FAQs

What are the top questions asked in Sears IT & Management Services India Senior Technical Associate interview?

Some of the top questions asked at the Sears IT & Management Services India Senior Technical Associate interview -

  1. All questions asked in interview round are basic there is no such advance quest...read more
  2. All basic concepts need basic explanation with code examp...read more
  3. Core java, spring, unix and hibern...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Sears IT & Management Services India 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

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.8k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.4k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
DXC Technology Interview Questions
3.7
 • 793 Interviews
View all
74% more than the average Senior Technical Associate Salary in India
View more details

Sears IT & Management Services India Senior Technical Associate Reviews and Ratings

based on 15 reviews

3.6/5

Rating in categories

3.4

Skill development

3.6

Work-Life balance

2.8

Salary & Benefits

3.0

Job Security

3.5

Company culture

3.0

Promotions/Appraisal

3.2

Work Satisfaction

Explore 15 Reviews and Ratings
Senior Technical Associate
154 salaries
unlock blur

₹6 L/yr - ₹24 L/yr

Technical Associate
132 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Technical Lead
89 salaries
unlock blur

₹11 L/yr - ₹28 L/yr

Senior Advisor
59 salaries
unlock blur

₹2.5 L/yr - ₹6.8 L/yr

Advisor
57 salaries
unlock blur

₹2.3 L/yr - ₹6.4 L/yr

Explore more salaries
Compare Sears IT & Management Services India with

Accenture

3.9
Compare

IBM

4.1
Compare

TCS

3.7
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