App Support Interview
App Support Interview
com
Question 1 : What is mean by Technical Support in your words? Why you choose career in
it?
Answer :
The above questions is more behavioral question rather than the technical
question.According to the situation candidate needs to answer that questions. I will give
you example for the same.
I choose to go into technical support because I‟ve been fascinated by technology all my
life, and I also like working with people. I want to use my technical knowledge to solve
issues customers are having.I also wants to apply my knowledge which is related to unix
as well as related to SQL to solve the customer issues.
I would like to explain the application crash scenario. Application crash is one of the
most common scenario technical support engineer facing. The most basic reason of
application crash is unhandled exceptions. Due to some unhandled exceptions and
different structures of looping in application user will face application crash.
Question 4 : How user can handle application crash issue? Is there any troubleshooting
mechanism for the same?
Answer :
The System crash issue mainly occurs due to the unhandled exceptions. There are
multiple ways to troubleshoot this issue and following are most common ways to resolve
application crash issue .
1. Just try to check for Unhanded exception. If there are unhandled exceptions user need to add
the Error code and Error description for the same.
2. The Full stack trace of exceptions so that user will check what is happened from application
end.
WWW.COMPLEXSQL.COM
Subscribe Channel : IT Certification’s Guru Powered By : www.complexsql.com
3. After taking the permission just restart the unix server and check whether application is
working or not.
Question 5 : Tell me some important skill to do technical support job?
Answer:
The technical support engineer should know all the technical skills related to that
application. I would like to give you most important skills required by technical support
engineers .
1.Technical Knowledge of Front End : User must know about the technologies used in
that specific application. Whether it is java,.net or any other technology.
2.Technical Knowledge about back end : User must know about back-end technologies
used in that application.
3.SQL Skills : User must know the SQL to troubleshoot the application level issues.
4.Communication skill : User must have good communication skill so that user can
understand the exact issue.
5.Knowledge of Tools : There are so many tools for issue tracking and management.
The application support engineer must have knowledge of different tools.
Question 6 : What is SQL? How it is used in application support.( 100 % asked Application
Support Interview Questions )
Answer :
SQL Stands for Structured Query Language which is specially designed to communicate
with databases.SQL pronounced as Sequel is very widely used language in most of the
database management systems like Oracle,MySQL,PostgreSQL etc.SQL provides us a
simple and efficient way of reading,writing,executing the data from the system.this is one
of the SQL Interview Question ever asked in interviews.
For application support engineers SQL is useful in troubleshooting the issue. There are
so many request to check whether that user is active or not active. In such cases the
application support engineer checks by firing some queries from back-end.
1.Single Line comment: Two dashes (–) before begining of the line
2. Multi-line comment/Block comment:When user wants to comment multiple line /* */
operators are used.
WWW.COMPLEXSQL.COM
Subscribe Channel : IT Certification’s Guru Powered By : www.complexsql.com
Answer:
It is a collection of Inter-Related data. Records the data in HDD (Permanent Memory).
Inter-Related data means relation among data values
Objective of DB is to record data & save it for future use.
Question 10 : .What is RDBMS?
Answer:
RDBMS stands for Relational DataBase Management System. RDBMS is the basis for
SQL, and for all modern database systems like MS SQL Server, IBM DB2, Oracle,
MySQL, and Microsoft Access.
A Relational database management system (RDBMS) is a database management
system (DBMS) that is based on the relational model as introduced by E. F. Codd.
Example:Table
Name(Field 1) Salary(Field 2)
WWW.COMPLEXSQL.COM
Subscribe Channel : IT Certification’s Guru Powered By : www.complexsql.com
Question 14 :If user wants to display current user information which command is useful?
Answer :
Whoami :
This command displays current user information.
Example:
$Whoami
Output : Amit
Question 15.Which command is useful to show present working directory?
Answer:
PWD :
PWD is most commonly used command which is used to show the present working
directory of the user.
Example:
$PWD
Output:\home\Amit
Question 16 : How to switch from one user account to other user account in Unix?
Answer:
The SU (Super user command) is used to switch from one user account to another user
account.
Example :
$SU Rohit
the above command switches account named “Amit” to account named “Rohit”.
Question 17 : Have you done any automation for monitoring the system tasks?
Answer :
WWW.COMPLEXSQL.COM
Subscribe Channel : IT Certification’s Guru Powered By : www.complexsql.com
The above questions is more behavioral question rather than the technical question.According to
the situation candidate needs to answer that questions. I will give you example for the same.
Example:
$ rm file1 file2 ……File_N
E.g: rm Amit_Emptyfile
This may not seem very useful at first, but using (.) as the name of the current
directory will save a lot of typing.
(..) Means the parent of the current directory, so typing cd .. Will take you one directory
up the hierarchy (back to your home directory).
WWW.COMPLEXSQL.COM