Premium Employer

i

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

Softenger Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Softenger Application Support Engineer Interview Questions and Answers

Updated 11 Dec 2024

Softenger Application Support Engineer Interview Experiences

4 interviews found

Application Support Engineer Interview Questions & Answers

user image Indrajeet Kumar Goyal

posted on 11 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Ten commands of linux
  • Ans. 

    Ten essential commands in Linux for Application Support Engineers

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • cp - copy files and directories

    • mv - move/rename files and directories

    • rm - remove files and directories

    • grep - search text patterns

    • chmod - change file permissions

    • ps - display information about running processes

    • top - display and update sorted information about processes

  • Answered by AI
  • Q2. Sql queries
Round 2 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Relocation to office location
  • Ans. 

    Yes, I am willing to relocate to the office location.

    • I am open to relocating for the right opportunity.

    • I understand the importance of being present in the office for effective communication and collaboration.

    • I have relocated for previous job opportunities and have had positive experiences.

    • I am excited about the prospect of working in a new location and embracing new challenges.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql and linux for this position

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2023.

Round 1 - Technical 

(1 Question)

  • Q1. All OS level basic questions Database related questions
Round 2 - HR 

(1 Question)

  • Q1. Your self Other questions

Application Support Engineer Interview Questions Asked at Other Companies

Q1. what do you know about SQL , Unix , explain in brief
Q2. Add one more column in that table, without using create?
asked in CGI Group
Q3. How do you check how much space is left in the current drive?
asked in CGI Group
Q4. How do you find all the processes that have opened a file in Linu ... read more
Q5. what you will do if application perform slow,

I appeared for an interview before Jun 2021.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you find the heap dump files in Linux? What is the role of the superuser What can be used to modify file permissions? What are the different commands available to check the disk usage? what is the u...
  • Ans. 

    Answers to Linux-related questions for Application Support Engineer role

    • Heap dump files can be found using the jmap command

    • The superuser has complete control over the system and can perform any action

    • chmod command can be used to modify file permissions

    • Commands like df, du, and ls can be used to check disk usage

    • GREP command is used to search for a specific pattern in a file or output

  • Answered by AI
  • Q2. How do you find the second highest salary in the employee table? How do you find the duplicate rows in a table? How do you remove the duplicate rows from the table?

Interview Preparation Tips

Interview preparation tips for other job seekers - 2)Calm your mind
2)Dont stress your mind over the rejections. ·
3) Never miss an opportunity
gg4) look carefully for every job

Skills evaluated in this interview

I appeared for an interview before Jun 2016.

Interview Preparation Tips

Round: Technical Interview
Experience: First round was telephonic

Round: Technical Interview
Tips: It's a face 2 face technical round

Round: HR Interview
Tips: Salary discussion

Softenger interview questions for designations

 Technical Support Engineer

 (2)

 Information Technology Support Engineer

 (1)

 end User Support Engineer

 (1)

 IT Technical Support Engineer

 (1)

 Software Engineer

 (2)

 System Engineer

 (1)

 QA Engineer

 (1)

 Cloud Devops Engineer

 (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the issues you are facing daily?

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. OOPs concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself.

Interview Questionnaire 

1 Question

  • Q1. What are different programming languages, you worked previously... ???
  • Ans. 

    I have worked with Java, Python, and SQL.

    • Proficient in Java for developing enterprise applications

    • Experience in Python for data analysis and automation

    • Skilled in SQL for database management and querying

  • Answered by AI

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

Interview Questionnaire 

2 Questions

  • Q1. More questions on which topic
  • Q2. Focus on c#, MVC and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well technically and scenario based questions also prepared.

I applied via Naukri.com and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. OOPS, collection, database
  • Q2. Method overload and overrding, interface, abstract class, one small program on string manipulation,database queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Have your core java basics revised and keep sound knowledge of your project

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Online test of 90 minutes at 5:30 pm

  • Q1. What are the basic concepts of Object-Oriented Programming, and how do they relate to data structures and algorithms?
  • Ans. 

    Object-Oriented Programming concepts include encapsulation, inheritance, and polymorphism, which are used to organize and manipulate data in data structures and algorithms.

    • Encapsulation: Bundling data and methods that operate on the data together in a single unit (object). Example: a class representing a car with properties like color and methods like drive().

    • Inheritance: Allowing a class to inherit properties and meth...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Online coding interview of 45 minutes at 6:10PM.

  • Q1. 

    String Compression Problem Statement

    Implement a program that performs basic string compression. When a character is consecutively repeated more than once, replace the consecutive duplicates with the coun...

  • Ans. 

    Implement a program to compress a string by replacing consecutive duplicates with the count of repetitions.

    • Iterate through the string and keep track of consecutive characters and their counts.

    • Replace consecutive duplicates with the count of repetitions.

    • Handle the case where the count of repetitions is greater than 1 and less than or equal to 9.

  • Answered by AI
  • Q2. Can you explain queries related to insert, selection, and joins in a database management system?
  • Ans. 

    Explanation of insert, select, and join queries in a database management system.

    • Insert query is used to add new records to a table.

    • Select query is used to retrieve data from a table based on specified criteria.

    • Join query is used to combine rows from two or more tables based on a related column between them.

    • Examples: INSERT INTO table_name (column1, column2) VALUES (value1, value2); SELECT * FROM table_name WHERE condit...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round of 30 minutes at 6pm

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in NoidaEligibility criteriaAbove 7 cgpaNewgen Software interview preparation:Topics to prepare for the interview - Data Structures and algorithms(arrays,strings,linked list,graphs,trees,recursion,backtrack),OOPS,Relational Database Management System, Operating SystemTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be accurate in one language rather than doing more languages but not perfect in anyone
Tip 2 : Revise your concepts regularly and try to attempt 3-4 times a question which you cannot do in first time so that after that if u see question of that type u know how to approach 
Tip 3 : Do practice of quality questions not only quantity.

Application resume tips for other job seekers

Tip 1 : One page resume 
Tip 2 : Only mentioned that projects and skills in which you are really good don't write anything just to fulfill the space

Final outcome of the interviewSelected

Skills evaluated in this interview

Softenger Interview FAQs

How many rounds are there in Softenger Application Support Engineer interview?
Softenger interview process usually has 1-2 rounds. The most common rounds in the Softenger interview process are Technical and HR.
How to prepare for Softenger Application Support Engineer 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 Softenger. The most common topics and skills that interviewers at Softenger expect are Application Support, Linux, Monitoring, SQL and Troubleshooting.
What are the top questions asked in Softenger Application Support Engineer interview?

Some of the top questions asked at the Softenger Application Support Engineer interview -

  1. How do you find the heap dump files in Linux? What is the role of the superuser...read more
  2. Ten commands of li...read more
  3. All OS level basic questions Database related questi...read more

Tell us how to improve this page.

Softenger Application Support Engineer Interview Process

based on 3 interviews

2 Interview rounds

  • Technical Round
  • HR Round
View more
Join Softenger Your Technology Solution Partner since 1999

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 341 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
3i Infotech Interview Questions
3.5
 • 145 Interviews
Microland Interview Questions
3.4
 • 132 Interviews
Sify Technologies Interview Questions
3.8
 • 123 Interviews
Mastek Interview Questions
3.5
 • 120 Interviews
Maveric Systems Interview Questions
3.5
 • 118 Interviews
View all
Softenger Application Support Engineer Salary
based on 82 salaries
₹2 L/yr - ₹6.7 L/yr
15% less than the average Application Support Engineer Salary in India
View more details

Softenger Application Support Engineer Reviews and Ratings

based on 28 reviews

3.9/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.4

Salary

3.8

Job security

3.9

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 28 Reviews and Ratings
Application Support Engineer
82 salaries
unlock blur

₹2 L/yr - ₹6.7 L/yr

System Administrator
77 salaries
unlock blur

₹1.8 L/yr - ₹9.1 L/yr

Oracle Database Administrator
77 salaries
unlock blur

₹1.8 L/yr - ₹7.1 L/yr

Software Developer
55 salaries
unlock blur

₹6.5 L/yr - ₹15.5 L/yr

Linux System Administrator
50 salaries
unlock blur

₹2.1 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Softenger with

ITC Infotech

3.6
Compare

3i Infotech

3.5
Compare

Sify Technologies

3.8
Compare

Microland

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