Application Support Interview Questions :
In my previous articles I have added many SQL interview questions for helping the people. In this article i will share Application Support Interview Questions with answers. I will focus on SQL as well as unix interview questions which are useful for Technical Support Engineers. The Application Technical support is not only development work but also testing work. It is combination of both work and supporting the client. There are two types of Technical Supports available. I will try to give you Application level Technical support interview questions which includes not only system related questions but also SQL related questions as well.
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.
Answer from user perspective :
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.
Question 2 :What is application support?What technologies it includes.( 100 % asked Application Support Interview Questions )
Answer :
The application support is supporting the delivered application to the customer with using different technical skills.The user will require any of the technical skills. The Unix and SQL skills are required to troubleshoot the application related issues.Mainly to work with technical support user needs to know about basics of SQL as well as basics of unix.
The Required technologies for application support are :
- Any front End technology (java,.net)
- Any back-end technology (Oracle,Mysql)
- Unix Commands
DOWNLOAD FREE Application Support interview Questions
Question 3 : Explain one common scenario of application support you have faced.( 100 % asked Application Support Interview Questions )
Answer :
The above question is also more behavioral question you need to answer it technically. According to situation candidate need to answer that.
Answer from user perspective :
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 .
- 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.
- The Full stack trace of exceptions so that user will check what is happened from application end.
- 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.
Question 7 : What is difference between varchar and varchar2 datatype?
Answer:
Varchar can store up to 2000 bytes and varchar2 can store up to 4000 bytes of memory space.Varchar will occupy the space for null values whereas varchar2 can not occupy the space for null values.So varchar2 is good to use not to face performace related problems.varchar2 is faster than varchar datatype.
Question 8 : How to represent comments in oracle?
Answer:
There are following 2 ways for commenting in oracle:
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.
Question 9 : What is Database?( 60 % asked Application Support Interview Questions )
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.
Question 11 : What are tables and Fields?
Answer:
A table is set of data which is organized in to specific structured manner.Table is made up of combination of columns and rows. A table has specified number of column called fields but can have any number of rows which is called record.
Example:Table
Name(Field 1) | Salary(Field 2) |
Amit S(Record1) | 10000(Record1) |
Question 12 : What are different challenges user will face while doing application support duties?
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.
Answer from user perspective :
The most important quality of Technical support engineer is patience as well as calmness.There are so many times the frustrated customers who use abusive language. At such times its important to remain calm and show empathy towards the customer.
Question 13 : How knowledge of Unix helpful in technical support?( 100 % asked Application Support Interview Questions )
Answer:
Unix operating system is one of the most used and secure operating system which is using in development and deployment of lot of applications. Because of the Security of the UNIX operating system this is used in 90 percent of applications as a server operating system. Unix is Multi-user and Multitasking operating system which is used mainly as server in most of the applications. Now a days unix is using as a server operating system to handle so many applications .So if user have good knowledge of unix it will be helpful.
“Unix is simple,stable,multi-user,multitasking operating system which is used for Servers,Desktops and laptops..”
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 :
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.
Answer from user perspective :
I had developed Log monitoring system’s scripts to keep track of exceptions. I am also using tool that notifies the stakeholders if any exceptional happen within the system.
Question 18 : Can we delete multiple files at a same time in Unix? How?
Answer:
rm command is used to delete multiple files at a same time.
Example:
$ rm file1 file2 ……File_N
E.g: rm Amit_Emptyfile
Question 19 : What does (.) And (..) means in unix?
Answer:
The current directory (.)
In UNIX, (.) means the current directory, so typing cd .
NOTE: there is a space between cd and the dot
Means stay where you are (the unixstuff directory).
This may not seem very useful at first, but using (.) as the name of the current directory will save a lot of typing.
The parent directory (..)
(..) Means the parent of the current directory, so typing cd .. Will take you one directory up the hierarchy (back to your home directory).
Question 20 : What is the UNIX command to list files/folders in alphabetical order?
Answer:
The ‘ls –l’ command is used to list down files and folders in alphabetical order. When you use ‘ls –lt’ is list down files /folders sorted with modified time.
Question 21: What code would you use in a shell script to determine if a directory exists?
Answer:
The UNIX test command with the -d option can be used to determine if a directory exists.
Example:
The following test command expression would be used to verify the existence of a specified directory, which is stored in the variable $mydir:
if [ -d $mydir ]
then
command(s)
fi
If the value stored in the variable mydir exists and is a directory file, the command(s) located between then and fi will be executed.
You can consult the test command’s man page (“$ man test”) to see what test command options are available for use.
Question 22 : What is the biggest challenge you come across as IT support analyst role and how did you solve the problem ?
Answer :
The support analyst role itself is a challenge. We require to deal with multiple teams and customers as well. I would like to give a simple example about the challenge which i have faced.
In one of the application the high priority incident came. I have access of logs and servers. But there is tier-3 team who has to deal with this code related issue. But The tier-3 team is somehow not available. So by taking permission of client we have updated millions of values on database. The impact was so high and we have resolved that.
Question 23 :How did you manage the urgent issue when customer request and how did you mange it with time to over the situation to solve the problem ?( 100 % asked Application Support Interview Questions )
Answer :
As “customer is king” we require to manage or plan some time in work day to handle customer related issues. May customer will give you the ad-hoc issues. But in that case i am resolving issue then after that logging that issue in issue management system. It will show my work as well as time spent on customer issue.
Question 24 : How did you manage the difficult customer request and what action took to solve the issue ?
Answer :
The key work of Support analyst is to prioritize the work according to business impact. If some of the difficult customer requests are coming and which has huge business impact we require to give the highest priority to that incidents.
Question 25 : If application down how to troubleshoot the issue?
Answer :
This is the most asked application support interview question. So there are so many causes of the application down. If you require to troubleshoot the issue if application down kindly use the following steps ,
- Check whether application server is reachable. Most of the cases the application will down if server is down. If server has issues then tell server team to troubleshoot issue or restart the server.
- If any other issue check the deployment architecture of the application side.
- Else check application configurations and resolve issue accordingly.
Question 26 : How to resolve P1 issue? If 2 P1 issues come at a same time how to act?
Answer :
The P1 issue is always critical .You should have list ready for contact persons of dependent services. You require to contact those immediately. You need to be calm and check all configurations,databases and troubleshoot issue accordingly.
If two P1 issues come at a time you require to prioritize the issue. You require to inform to your higher management in that case and ask for quick resource allocation if both issues are important.
These are above some important interview questions for application support engineer. Hope you like this article on Application Support Interview Questions.If you like this article on Application Support Interview Questions kindly comment in to comment section.
Nice Article……but questions are not enough.
Please add atleast 100 question and answers.
Sure Tushar I will add more questions as per your request 🙂 Thanks for valueble suggestions
Can you also mail me at kumarayush23@yahoo.com
I have mailed you interview questions..
hi could you mail me interview questions to my mail id – abhoi148@gmail.com
Abinash..Kindly check your inbox…
Hi,
can you please send application support interviews question and answer to my blow mention mail id.
msd.3474@gmail,com.
thanks.
sure mahesh..Kindly check your inbox for application support interview questions for professionals in mail.
Could you please share the interview questions to me thomasct16@gmal.com much appreciated
Sure Thomas. Kindly check your inbox for same 🙂
Good morning Amit,
I just gone through the questions in this website. It is more helpful, can you please send me more questions to pasupuletim4@gmail.com
Thanks,
Mahesh P.
sure mahesh!
Me also mohdsuhail8437@gmail.com
sure mohd
can you mail me interview question and answer on Unix application support engineer on nitinbiradar998@gmail.com
Hello Nitin,
Joins Interview Questions : http://www.complexsql.com/sql-joins-interview-questions/http://www.complexsql.com/category/this-category-includes-sql-interview-questions/
http://www.complexsql.com/pl-sql-examples/.http://www.complexsql.com/unix-scripting-interview-questions/
http://www.complexsql.com/etl-testing-interview-questions/
http://www.complexsql.com/data-modeling-interview-questions-with-answers-for-professionals/
Like this page on Facebook for More Updates :
https://www.facebook.com/Complexsqlcom-1302739539812605/
Regards and thanks,
Amit Shiravadekar
Hi Amit
Can you please send me he production support real time questions to my email? Most probably on Linux and sql
Sure Gouri. Kindly check your mailbox for Application Support interview questions.
Can you please mail me the questions ?
My email ID is tuhinch80@gmail.com
Sure tuhin..I sent you application support interiview questions
plz send me application support interview question 2-3 years of experience..
top mnc companies interview question
santosh.rane9090@gmail.com
Sure santosh..Kindly check your inbox..
Hi Amit
Thanks, It’s looking a good question could you send me on email my id is suneeta567gupta@gmail.com
Sure Sunita ..Kindly check your inbox
Hello, can you please mail me the interview questions. My email id is : aamir.4009@gmail.com
Thank you
sure aamir..check your inbox
Hi Amit,
This is Ramesh I am searching for job in Unix production support,so can you please send me the below questions answers asap.
1.If application down how to troubleshoot the issue?
2.How to resolve the P1 issue?
3.If you alone in the shift how to resolve the two P1 issues?
Can you please send me the answers asap.
Hi Ramesh,
I have provided the answer in question 24 and 25 of this article.
NICE Article
Thank you very much for Comments!!
Hi Amit
can you send me the application support interview questions.it will be helpful for me.
my email d-subhransu000@gmail.com
Thank you
Sure Subhanshu..check your inbox
Hi Amit,
could you please send me the application support interview questions. it will be really helpful for me.
aakumar06@gmail.com
Thanks
Sure Ayush.
Kindly check your mailbox
Very informative article. Thanks Amit.
Can you please send more Unix and SQL interview questions to my mail id: sibhyraj@gmail.com
Thanks Sibhy for good words..sent you interview questions
Hi,
Could you mail me production support interview questions and answers to my mail id: rajasekarreddy.golla@gmail.com
Sure Rajasekar..check inbox
Please add some more questions.
As soon as possible.
Sure Sonam..I am working on it..:)
Awsome. Add some server and OS related questions
Sure Vishal..I will add OS related interview question in seperate article and provide link on this article..
Really helpful
Thank you Lakshmi!!
Request you to share the interview questions for unix, sql, , aws cloud support
guru.mhase9@gmail.com
Kindly check your inbox
Can you please send me more application support interview questions? Thanks.
Hello Dipa,
Mailed you the interview questions.
Regards,
Amit S
HI amit,
can u plz email me with intrw question for application support at
santosh.k.roy2025@gmail.com
Sure Santosh.. I sent you application support interview questions 🙂
Hi Amit, please share interview questions for application support both technical and behavioral at below mentioned email address
Sure Anne.
I have sent you Application Support Interview Questions for Professionals.
Pl send sql /unix production support interview questions and answer
Sent you interview questions on your mail id!!
Really Very Helpful Who Started Carrier As a Production Support Engineer,So plz Mail me Some Depth Questions and Answer For L2,L3 level,So that I can update my skills sets,
Mail-rashmi18ranjan@gmail.com
Sure Rashmi!! Kindly check your inbox!!
Great set of questions, also if you could email more complexed App support Interview Questions on rustagi.prateek@gmail.com. Thanks in Advance!
Sure Prateek..I sent you Interview Questions 🙂
Hi..please mail me interview questions for level L2 and L3.
Sent you interview questions on your mail id..
Hi Amit,
Can u also share me L2 – L3 support interview question ; Thanks in advance
Thanks
Sure Ayush!!!
Hi Amit,
Really helpful….. plz mail me some more important questions on Unix/Sql production support .
satish.sn403@gmail.com
Thanks for good words satish…
Kindly check your inbox for interview questions…
Nice article bro…Really helpfl…Can you pls mail me SQl & Unix Application support interview questions at veereshkumar111@gmail.com.
Thanks in advance
Mailed you the interview questions..
Hi Amit,
This is really helpful.. can u also send few more questions for l2/l3 for 3-5 year experienced. That would be really helpful..
Thanks Anjy..I sent you interview questions…
Hello Amit,
Do you have dot net production support questions as well as SQL.
Can you please send me on below mail ID.
sgahan553@gmail.com
Regards
Susanta Gahan
mailed you interview questions
Hi Amit, Please send sql /unix production support interview questions and answers to my mail id.
Sure Naveen sent you interview questions..
Hello Amit, please mail me interview questions for level L2 and L3. Thanks!!
Hey Bhushan,
I sent you the interview questions for database on your mail id.
Regards,
Amit Shiravadekar
Hi Amit, Please send sql /unix production support interview questions and answers to my mail id and questions related to monitoring tools and ticketing tools Please.
Sent you interview questions on your mail id.
mail this qs also to me bhanjas450@gmail.com
sent mail to you!!!
hi amit, send me the same @ mrunali.orake@gmail.com
thanks,
Sure Mrunali..I sent you interview questions..
Hi Amit, Can You please send me sql /unix production support interview questions and answers to my mail id and questions related to monitoring tools and ticketing tools.Below is my MailID
santhisiri1@gmail.com
Really helpful, please send me ,Thanks a lot
Thanks for praising !! I sent you interview questions.
I have sent you interview questions for Application support on your mail id.
Hi Amit,really good job,can you please share me these interview questions and answers to my mailid please
santhisiri1@gmail.com
Hi Motupalli,
I have sent you application support interview questions for professionals on your mail id.
Regards and thanks,
Amit S
Hi Amit,
Please send the questions for DotNet production support for more experienced people.
Thanks
Hello Sachin,
I sent you Application support interview questions for professionals on your mail id.
Regards,
Amit S
HI please send sql/unix production support interview questions with answers
Hi Sowmiya,
I sent you interview questions on your specified id.
Regards,
Amit S
Hi Amit,
Really helpful and nice article.Can you send some more interview questions related to production support (Unix and SQL) on below mail id.
lenka.sangeeta108@gmail.com
Thanks and regards,
Sangeeta
Thanks Sangita for good words!! I sent you interview questions on your mail id.
Hi Amit
Thanks for the article it is quite useful.. Can you pls upload some Java Production Support interview questions too. and pls mail me the question and answers for Unix and SQL production support interviews at email: au2006del10@gmail.com.
I have sent you SQL related interview questions with answers on your mail id.
Hi Amit
Pl email SQL Server and T Sql questions for Product Support.
Thank you!
Hello Kumaran,
I have sent you the interview questions related to SQL.
Regards and thanks,
Amit S
Do you have dot net production support questions as well as SQL.
Can you please send me on below mail ID.
santoshnadem@gmail.com
Hello Santosh,
I will help you with only SQL and PL SQL interview questions. I have sent you interview questions on your mail id.
Hi Amit,
Thanks for help, But I have 2 questions Can you help me .
rashmiranjan1796@gmail.com
Sure Rashmi..Request you to send the questions.
hi i need more question for java production support can you mail to me
I really dont have Java interview questions..But i have sent you application support interview questions on your mail id.
Please mail me unix and sql prod support questions and answer
Yeah Manas Sent you Application support interview questions for professionals 🙂
Please send me more application support interview questions my interview will on Monday for same position Nd I am fresher
Sure Anuja..sent you interview questions on your mail id.
It was a good article..Can you please share me few more questions for 3yrs exp in application support?
Thanks Kiruthika for good words!! I have sent you the Application Support Interview Questions for Professionals on your mail id.
Awesome article thanks Amit … I am looking for more questions can you please mail me all the questions … Thanks so much
Thanks for nice words Maulik…Kindly check your inbox..
Nice and Usefull question selection. Can you please add more questions related to tail, grep, head command of unix.
Sure Sagar..You can refer Unix interview questions for the same..
Got a better idea from these .Could you please mail me this as well some more Q&A . and also send me some SQL Q&A related to production support.
Hey Viki..
I sent you interview questions…
thanks,
Amit Shiravadekar
That’s a comprehensive list of important questions. Kindly share some advanced production support questions for 5 years experienced. Thanks.
Sure Pandy..Kindly check your inbox..
Could you send me SQL, Unix, vi, interview questions?
Sure Supriya ..Check your inbox for the same..
very good information Amit – Thanks for sharing.
Can you please share more questions & answers in Java L2/L3 production support real time scenario based questions.
my email is inbox2bhas@gmail.com
Sure Bhasniv..Check your inbox..
very good information Amit – Thanks for sharing.
Can you please share more questions & answers in Java L2/L3 production support real time scenario based questions.
Thanks Bhasniv for Good Words..Kindly check your inbox for more information!!
It was a good article..Can you please share me more questions and answer for 3+ exp in application support?
Sure prakash..Check your mail id…
Hi Amit,
Can you please provide me some troubleshooting scenarios (Issues & Solutions) that i can tell in interview, Troubleshooting related to Desktop, Web application issue.
Sure Prathamesh..I sent you interview questions and scenarios on your mail id.
Hi Amit,
This is of great help and thanks a lot for the details. Could you be please send me more SQL and UNIX questions for Application/Production support engineer
Thanks Biswa for your good words 🙂 I sent you SQL interview questions 🙂
Hi , thanks for this article.
Could you please send me interview questions for Unix SQL senior prod support engineer. Here- somitrasanyal0601@gmail.com
Hello Somitra,
Sent you impotant interview questions.
Regards and thanks,
Amit Shiravadekar
Can you please share more questions & answers in sql and asp.net L1/L2 Application support real time scenario based questions.
Troubleshooting related to OS, Desktop, Web application issue(Issues & Solutions).
Ticketing Tools related .
Sure Prakash..Sent you interview questions..
Hi Amit, Please send sql /.net production support interview questions and answers to my mail id and questions related to monitoring tools and ticketing tools Please.
I need help on senior production support interview questions and answers for Unix SQL PLSQL
Thank you Amit for your great work for helping candidates
Sure Richa..Kindly check your inbox for the same.
Awesome job bro…..Can you please mail me questions for application/production support profile(sql and unix )?
My mail id-
prshavar@gmail.com
Thanks buddy for good words..Check your mailbox..
Hi sir,
Can you send me more interview questions on SQL and linux Commands
check your mailbox
Really awesome bro. Keep writing new topics.
Can u pls shre me application support experience level question with ans troubleshooting scenarios (Issues & Solutions).
dharmeshtn@gmail.com
Sure Dharmesh 🙂 I have shared you interview questions 🙂
Sure Dharmesh..Check your inbox 🙂
Hi Amit,
Can you send me SQL question for Sr. application support role.
Thanks
Irfan
sure irfan.I shared you Application support interview questions for professionals..
send me on atuljesus@gmial.com
Sure Atul..Kindly check your mailbox
Hi Amit,
Thanks for this article.Can you send me SQL / linux question for Sr. application support role & some troubleshooting scenarios (Issues & Solutions) as well.
Email:- amitkrkota@outlook.com
Hi Amit,
Could you please help me with some SQL,UNIX and application support interview questions for experienced professionals.
Thanks in advance.
Sure Shwetha..
Hi Amit,
I went through your post questions and it is really helpful.
It would be great if you could share some more production support interview questions related to SQL and Unix.
Thanks Sristi for good words 🙂
Hi Amit,
Could you please answer these questions as well .
1.how to troubleshoot application performance issues .
2.How to check solution for query running for a long time than the usual time..
Please send me the interview questions for app support , Unix and SQL as well for experienced professionals.
Thanks,
Thank u Anjana for questions.. There are so many methods of troubleshooting performance issues. I will write article on it soon 🙂
Hi Amit, many thanks for your valuable inputs in this post. Can you please send me some more production support related interview questions? I have an experience of about 3 years in L3.5 support. My email id is apurvaj1204@gmail.com
Sure Apurva..
Nice article..Can you please mail me questions for application/production support profile(sql and unix ) for experienced people?
hi , thank you .
please mail me the interview questions too
Sure Sonia ..Kindly check your inbox
Hi Amit,
Thanks for this content. Could you please send me more questions at sakshirandhawa05@gmail.com
Hi Sakshi,
Kindly check your inbox for the same.
Amit
Can you please share more questions & answers in sql and unix L1/L2 Production/ Application support real time scenario based questions for 3+ exp.
amitk.singh412@gmail.com
Sure Amit ..Kindly check your inbox.
Please send me sql and unix interview questions for production support mail id:prashanthrambabu@gmail.com
Sure Prashanth..Kindly check the inbox.
Hi sir,
Can you send me more interview questions on SQL and linux Commands.
asp.net L1/L2 Application support real time scenario based questions, Web application issue(Issues & Solutions).
Sure Gulab:) Sent you application support interview questions 🙂
Hi Amit,
Could you please help me with some SQL,UNIX and application support interview questions for experienced professionals.
Email id :- atul125@gmail.com
Thanks in advance.
Sure Atul..I sent you interview questions on mail
Hi amit S,
i’m following your articles, Please help me with if have any Oracle PLSQL , unix interview quesions for experienced professionals. send me (pvinod0770@gmail.com)
Thanks in advance.
I have sent you all interview questions
Nice,
Can you please share me some more application support interview questions and answers related sql and unix for 3-5 years experienced.
Sure San 🙂 Check your inbox for the same.
Hi Amit,
Kindly share the application support / production support interview questions & answers including SQL/ FIX/ Scripting (Perl & Python) on my email police.raj@gmail.com . I have an interview on this Saturday, any help is much appreciated.
Sure Nagraj..I sent you interview questions
hey Amit
can you send more interview quedtions for L2 application support on my email id, it would be very grateful
thanks in advance 🙂
email : ishasiddharth31@gmail.com
Thanks ISha..Sent you interview questions
Hi Amit,
Can you please share interview questions for application support role for sql and unix commands.
Mail id :saikumarstkm@gmail.com
Sure Saikumar.Kindly check the inbox for the same.
hey..plz share interview questions for application support role for sql and unix commands.
bohari.wasim@gmail.com
Sure Wasim .. Kindly check your inbox 🙂
Hi ,
Can you share some questions and answers of issues which are faced in production support environment apart from Unix , SQL .?
Sure Ankush 🙂 Kindly check your inbox for the same
Hi Amit very nice Article,
Can you please send me the interview questions on Application support engineer role. Thanks in advance.
Mail id: y.teja15@gmail.com
Sure Teja.. I sent interview qustions on your mail id 🙂
Hello Amit, Nice Article Please send me the all application support question and answer please.
My EMAIL – d.gouda1592@gmail.com
Thanks for good words. I sent you Application support Interview questions for professionals on your mail id.
could you please send me the support interview questions for java, sql and unix .
mail – mazymanick@gmail.com
Sure ..I sent you application support interview questions for professionals 🙂
Hi Amit, Thanks for the questions. Can you also please send me the application support engineer & production support engineer interview question. My email address is NANDI.ORACLE12@gmail.com
Thanks & regards.
KC NANDI
Sure Nandi. I sent you Application support interview questions for professionals 🙂
Nice, very helpful and valuable guidance.
Can you please share me some more application support interview questions related sql and unix.
Mail Id :- omkanade123@gmail.com
Sure Om ! I sent you Application Support Interview Questions for professionals on your mail id .
hi amit bro,
can u pls send me list of que (more in number) for L2 support to my mail id.
shanawaz1419@gmail.com
thank you in advance
Sure Shanawaz..I sent you interview questions on mail id .
Hi Amit, pls mail me more application support interview ques on SQL and Shell scripting for experienced role.
email id – babitagangurde7@gmail.com
Sure Babita..
Kindly check your inbox for the same.
Hi Amit,
Very Nice and Helpful article, Please share more interview questions for application support role for sql and unix commands. E-mail hemantptl07@gmail.com
Sure Hemant.
Kindly check your inbox for the same.
hi Amit ,
your article is useful,please hep me application support interview question using unix and sql
Thanks Karthik..Sent you interview question.
Hi Amit,
Can you please share interview questions for sql and Unix production support L1/L2.
alekhya.saini@gmail.com
Thank you
Sure Alekhya..
Hi Amit Sir,
Such a great work and very helpful and valuable guidance.
Could you please help me with some SQL,UNIX and application support interview questions(L1 & L2) for experienced professionals.
My email id :- pankajkumar1605@gmail.com
Thanks in advance.
Sure Pankaj 🙂 Thanks for your nice words 🙂
Hi Amit Sir,
I have an interview day after tomorrow. I have 1.5 yrs of experience(Legacy support project- JAVA, mybatis, XLA , Struts framework and Sybase based project). kindly provide me with the kind of interview questions that may be asked. My Email Id: krishna99zx@gmail.com
Thanks in Advance,
Krishna.
Check your inbox for same 🙂
Hi Amit,
Please share interview question for production support for PL/SQL and Unix . Please share to sarpesh@gmail.com.
Sure Sarpesh..I sent you interview questions
Hi,
Can you plaese mail me more application support interview questions.Thanks in advance.
Sure aamir. Check your inbox for the same.
Hi Amit will you please share some good production support interview questions.
Your above article very help full for me.
Thanks
Sure Shray. I sent you Application Support Interview Questions for professionals on your mail id.
Hello Amit,
Thanks for sharing the article,it is very useful. Can you please share additional interview questions related to application support?
Thanks in advance.
Sure Vignesh…
Check your inbox for interview questions.
Hi Amit,
Could you please mail me with more Unix and Oracle Production Support Engineer interview questions and answers.
Thanks in advance
Sure Ashok 🙂
Hi Amit,
Your article is so helpful…. actually I’m looking for L2 Production support interview questions based on “BANKING” Domain and Technology –> ORACLE, SQL, UNIX could you plz share me the questions based on my requirements.
Sure Albert.
I sent you interview questions on your mail id. Kindly check your inbox.
Hi Amit,
Really your blog is too good and very helpful ..
could you please mail me for production support/Application support interview questions on Unix,SQL,Shell Script and Autosys.
mail id : suresh.srh001@gmail.com
Thanks in advance.
Hi Amit,
Your article is very helpful and interactive. I’m looking for scenario-based L2 Production support interview questions based on “BANKING” Domain. Technology:- ORACLE, SQL, UNIX could you plz share me the questions.
Many Thanks
Sent You interview questions.
Hi Amit,
your questions are more helpful for the interview.Could you please share the UNIX and SQL interview questions related to PRODCUTION Support profile.
Can you share the questions to the mail id : madhuchnr@gmail.com
Thanks for your good words!
Sent you interview questions.
Very helpful. Could you please send me the more SQL java unix interview questions.please.
Thanks Padmavati for your words.. 🙂 sent you interview questions.
Hello Amit,
Thanks for sharing the article,it is very useful. Can you please share additional interview questions related to application support?
Thanks in advance.
Sure Vignesh..
I will share you interview questions
hi Amith,
can u pls send the L2/Production support interview questions to my email id : raman.msc@gmail.com
Sure..Sent you production support interview questions.
Hi Amit,
You have a great patience in replying each and everyone .
It would be highly appreciable if you kindly send those all questions related to L1,L2,L3 questions for Production Support.
Thanks in Advance!
Regards,
Subham Siddharth Maharshi
Thanks Shubham for your good words..
I sent you interview questions.
Hii Amit, Could you please share some production support related common issues and answer.
my mail id -sidharthasahoo89@gmail.com
Sure Siddartha..Check your inbox for interview questions.
Excellent article… could u please send me also the questions for Java DB interview questions please..
Sure Rashmi.. Kindly check your inbox for Java related interview questions.
Excellent article. It would be highly appreciable if you kindly send those all questions related to L1,L2,L3 questions for Production Support.
Thanks Vij for your nice comments . I sent you interview questions.
Hi Amit,
Please send me the more questions for Dot Net Application Support & Data Analyst interview.
Sure Abhishek.
Please check your inbox.
Hi Amit, thanks for your valuable inputs in this post.
Can you please send me some more SQL production support related interview questions? I have an experience of about 3 years in L2 support. My email id is shivani.vy592@gmail.com
Hi,
Can you please help me with L2/L1 questions on sql, unix?
For a developer, how working on support would be different?
Sure Payal.
I will send you questions. Developer always works on development tasks. Support engineer supports live application.
Hii Amit, your interview questions are very much helpful in interview point of view.Could you please share some production support related common issues and answer in banking domain.
And also looking for scenario-based L2 Production support interview questions based on “BANKING” Domain. Technology:- ORACLE, SQL, UNIX could you plz share me the questions.
Sure Sherin.
I will try to send the Banking and Unix related questions 🙂
Hi,
Thanks for these!
could you please mail me some more question about asp.net, sql support engineer. Thanks in advance!
amay.dy99@gmail.com
Sure Amay..
I will send you more interview questions on your id.
Hi amit
can u pls send the tier2 /Production support interview questions to my email id : sunitasdabhi@gmail.com
Sure Sunita.. I will send you interview questions.
Hi Amit,
Can you send me interview question?
hp10291@gmail.com
Harish,
Thanks
Can you also tell us in detail abut project. in banking domain if possible.
Sure Harish.. Kindly check
Hi Amit
Could you pls send Application support interview questions for 3 years experienced to my email id : g.saritha3899@gmail.com
Sure Saritha! I sent you Application Support Interview Questions for professionals.
Hi Amit. Thanks for your interview questions guide. very helpful. Can you please share interview questions for unix nd sql production support. my emailid- shibani97nayak@gmail.com
Thanks Shibani for your nice words. I have shared you some links as well as interview questions on your mail id.
Hi Amit
Could please share with me the expected interview questions to my mail ID.
THANKS SIR….YOU ARE DOING A GREAT JOB SIR… KINDLY SHARE SOME PRODUCTION SUPPORT JOB INTERVIEW QUESTIONS…….
Thanks for your nice words 🙂 I sent you interview questions. Kindly check your mailbox.
Wonderful job, can you please send me L3 application support interview questions and answers as well SQL questions and answers to my email: samolagu@gmail.com, Thank you. Great Job.
Thanks Sammy Ola for your good words.
I sent you Application Support Interivew Questions.
Really helpful..please share Production support interview qus with me
Email ID – sachincharapale@gmail.com
sure Sachin. I will send you production support interview questions.
nice article can you mail me specific interview question related SQL & queries, Unix and shell scripting and application issues?
Thanks Manish for good words. I sent you SQL queries and questions related to Application Support.
please share with me the application support interview questions.
Sure Vinay 🙂
Hello Amit,
Can you please share the production support interview question on tharunreddy@yahoo.in
Sure Tharun. Kindly check the inbox.
can you email me the Interview questions in the below given email
Khanna.gary@gmail.com
Sure Gaurav.. Sent interview questions in mailbox.
HI..i really liked your questions.
Can you please share me some more questions related to L2 support in banking domain . Thanks in advance.
Thanks Parneet for your good words.
Interview questions and important links shared with You!
Please share L2/L3 Oracle & Linux Application support questions and answers
Email ID: snemm.1983@gmail.com
Thanks in advance!
Sure Akansha.. I sent you Application support Interview questions .
Thanks Amit, can you share me the l2/3 qsn set as well.. this was very helpfull
Sure Hasan.. Kindly check your inbox!
Hi Amit ,
Your question are really help full .
Could you please share L2 level support question for SQL and Unix releated to banking domain.
It will be a great help .
Thanks in advance !
Thanks shweta for good words!
Sent you interview questions
Good job Amit.
Kindly share the application support interview qstns for L2/L3.
Also, share SQL & PL/SQL queries qstns.
Mail Id: shwetha20sl@gmail.com
Thanks Shwetha for good words..
sent you interview questions
thank you amit, could you please share me LI,L2 and L3 interview questions,
Shared you interview questions for application support
please send me all the interview related questions for IIS, application support, unix and sql
Shared you interview questions related to application support
Hi Amit sir …
Really helpful..please share some Production support interview questions with me
mail id:-ravigcp7@gmail.com
Hi Ravi,
Shared you interview questions
Muzhe bhi eh batao ki
1 Application support post ka company me work Kya hota hai aur
2 muzhe Application support questions answers chahiye
Sure Prashant…
Application support companies working on different issues and problems happened on application production enviroment.
sent you questions
Hi Amit,
Could you please help me with some SQL,UNIX and application support interview questions for experienced professionals.
Email id :- pawar.rohit1616@gmail.com
Thanks in advance.
Sure rohit..kindly check your inbox
Hi Amit,
Your article is very helpful and life saving. Also it will be so kind of you to provide scenario based L2 L3 Production support interview questions on “BANKING” Domain.
Technology:- Flexcube, PLSQL, SQL, UNIX
mailto: jagan2678@gmail.com
A Thousand Thanks…
sure Jagan! Kindly check your inbox
Hi sir. will you please send me some interview questions on Application Support with relevant to Technical also to my mail id:arungopavaram@gmail.com, am having interview on January. Please suggest me. Thanks.
sure arun. Check inbox
Thanks for the QA , could you please share me more L2 application support interview question to dhivyavittal1991@gmail.com
Welcome Divya!
Sent you more interview questions 🙂
Can you please share me application/production support interview questions with answers (SQL queries,Unix & shell script). srjenaa2299@gmail.com
Sure SRJ.
Kindly check your inbox.
Hello Sir, Could you be please send me more SQL and UNIX questions for Application/Production support engineer to my ail id ishuglitz@gmail.com .
Thanks in advance.
Sure Iswarya 🙂 Check your inbox
please mail me the interview questions at hanish113038@gmail.com
Sure Hanish 🙂
please send me unix/linux command which one help me for interview
Email id – jagdishuprati@gmail.com
Sure Jagdish.
Check your inbox.
Sure Jagadish.
You can check on website. You will get unix interview questions 🙂
Please share Application support questions and answers
Email ID: ptakalkar99@gmail.com
Thanks in advance!
Sure Pramod..Check your inbox.
Hello,
Thanks for sharing this beautiful thing.
Could you please send more QA’s on Application L2 Support on tandon.shivang@gmail.com
Sure Shivang.. Kindly check your inbox
Hi Amit,
Your article is so helpful…. actually I’m looking for L2 Production support interview questions based on “BANKING” Domain and Technology –> ORACLE, SQL, UNIX could you plz share me the questions based on my requirements
Sure Girish..
Check your inbox
Hi sir,
It was helpful can u send more related questions
mayankyadav3200@gmail.com
Sure Mayank! I will share you interview questions
Very helpful article.
thanks for good words satappa
I am looking for job change and I need some depth interview questions and answers for production support role can you please help me .
sure satappa..check your inbox
please send me all the interview questions you have for 2 year Application Support (plsql and unix )
Sure Anurag!
Hi Amit,
Your article is so helpful thanks for your article …. actually I’m looking for L2 Production support interview questions based on “BANKING” Domain and Technology –> ORACLE, SQL, UNIX could you plz share me the questions based on my requirements
sure kiran
Could you please share interview questions for experienced L2 application support
sure bharti..check your inbox
Hello Amit,
Good interview questions and answers I am looking for job in production support and my domain is banking. Can you please provide me interview questions on banking domain for 3 years experience.
sure sudarshan..check your inbox
Hi Amit,
Your article is very short and crispy while reading, actually I’m looking for L2 & L3 Production support interview questions and answers in ORACLE, SQL, UNIX could you please share me the docs based on my requirements
Email id: vijayvicky8788@gmail.com
sure vijay..
check your inbox
I am looking for application support can you share the interview questions related to that.. Thank you advance..
Sure Rajkumar.. Check your inbox
Hi Amit S,
Request you to share the interview questions to my mail id.
kjagu123@gmail.com
Thanks in Advance
Sure jagannath..
Hi Amit,
Please send me application support interview questions of SQL,Unix,Oracle on my mailid.
Sure Sandip. Kindly check your inbox. Sent you interview questions.
Hi Amit,
I need production support questions.
rashmiranjan1796@gmail.com
Sure Rashmi..
Hi Amit,
Please send me application support interview questions of SQL,Unix,Oracle on my mailid.
sure datta..check your inbox
Hi Amit,
Please send me latest application support interview questions of SQL,Unix,Oracle as well as Banking domain questions(Transaction Processing) My mail id is gohelbhavin4849@gmail.com
sure Bhavin..Kindly check your inbox
Hi Amit,
Thanks for your help, Please send me some scenario based L2 application support interview questions.
Sure Vinay! We will share you Application Support Interview Questions for professionals 🙂
Hi Amit,
Please send me application/production support interview questions of SQL,Unix,Oracle.
rahullawand@gmail.com
sure Rahul.
Hi Amit,
Please send me application support interview questions of SQL,Unix,Oracle on my mailid
sure Vivek
Please send me application support interview questions of SQL,Unix,Oracle on my mailid.
Sure Gaurav
Hi Amit,
Please send me application support interview questions of SQL,Unix,Oracle on my mailid.
kiranreddy97531@gmail.com
Hello Kiran,
Sent you interview questions.
Regards and thanks,
Amit
Hi Amit,
Thank for sharing the useful questions n answers.
Kindly share more interview questions.
Could you please send in my Gmail i.e
nayak.mohini132@gmail.com
Thanks for good words Mohini.. Sent you interview questions.
Hi Amit,
Please can you send me interview questions of SQL,Unix
Sure Adit.. I have shared you interview questions
Hi Amit,
Could you please send me production support interview questions on my mail id: venkatsunny565@gmail.com
Thanks
Sure Venkatesh. Kindly check your inbox for the same.
Hi Amit! This is a Very Good Article Related to the Questions. Can you send me more Application Support Analyst questions?
My email is: k575adnan@gmail.com
Thanks for nice words.
Sure I have shared you!
Hi Amit,
Could you please help me with Application support question answers on my email ( mpsingh.maninder@gmail.com )
for JAVA, HTML, SQL and Linux or Linux.
Thank you
regards,
Maninder
Sure Maninder 🙂
I will share you interview questions.
Hi Amit,
Can you please send me more application support interview questions? Thank you!
sure Khushaboo.
Kindly check your inbox for the same.
Hello Amit,
Pls share more support related interview questions
Sure Kris kollu..
Kindly check your mailbox.
please email me this question and answers to my email
Sure Rohit.
Hi Amit,
Please send me application support interview questions of SQL windows to my mail id.
oluwadolaposam@gmail.com
Sure Dolly.
I will send you Application Support Interview Questions for professionals.
can you please send more interview questions to nivegm09@gmail.com
Sure Nivedha..
Sending you application support interview questions for professionals
Hi Amit,really good job,can you please share me these interview questions and answers to my mailid please
And share me the technical stuff and with code related issues and with answers
shivakrishn18@gamil.com
Sure Shivakrishn 🙂
Thnk u sir
Can u please mail me Unix interview questions ask in production support interview.
priyastrivedi1994@gmail.com
Sure Priya..I will share you the Unix interview questions.
Hello Amit,
Really helpful, good article !!! Can u plz mail me some more important questions on Unix/Sql production support
Archanakan@gmail.com
sure Archana.
I will share it with you.
hi could you mail me interview questions to my mail id –csreenath1988@gmail.com
sure..check inbox.
Very apt article for the subject. First time attending a support interview. Can you please send me more interview questions?
Sure Elza… 🙂
Hello Amit,
Really helpful, good article !!! Can u plz mail me some more important questions on Unix/Sql production support and hadoop ?
sibasish.pal90@gmail.com
Sure..Sibasish.. Kindly check the inbox..
http://www.complexsql.com/category/this-category-includes-sql-interview-questions/
http://www.complexsql.com/pl-sql-examples/.http://www.complexsql.com/unix-scripting-interview-questions/
http://www.complexsql.com/etl-testing-interview-questions/
http://www.complexsql.com/data-modeling-interview-questions-with-answers-for-professionals/
Like this page on Facebook for More Updates :
https://www.facebook.com/Complexsqlcom-1302739539812605/
Hello Amit, It was a nice article and really helpful. Can you pl share the more important questions on Unix/Sql production support.
Thanks.
Sure Vishal..
please post some SQL query question for application support role . thanks in advance
sure Irfan.. Kindly check..
On Special Request of some of the users kindly check following interview questions related to joins and advanced SQL:
Joins Interview Questions : http://www.complexsql.com/sql-joins-interview-questions/
http://www.complexsql.com/category/this-category-includes-sql-interview-questions/
http://www.complexsql.com/pl-sql-examples/.
http://www.complexsql.com/unix-scripting-interview-questions/
http://www.complexsql.com/etl-testing-interview-questions/
http://www.complexsql.com/data-modeling-interview-questions-with-answers-for-professionals/
Like this page on Facebook for More Updates :
https://www.facebook.com/Complexsqlcom-1302739539812605/
Can you mail me interview question and answer on Unix and PL/SQL application support engineer on rahulkamle466@gmail.com
Sure Rahul…
Could you please share the interview questions related to production support & L2 Suoopert to me “devsinghh16@gmal.com” much appreciated
Sure Dev
Hello Amit,
Really Appreciate your efforts. Good Article.
I am trying to learn Application support. But i didn’t find any tutorials online. Can you please suggest me some websites or training institutes where i can learn this course. Please send me if you have documents to learn about this course.
Sure Karthik..
You can contact me.
Mail id : complexsql@gmail.com
can you please send application support interviews question and answers my email is sahel.emrani@gmail.com
Sure Sahel..Check your inbox
Hi amit,
Can you please send me application support engineer and technical/production support engineer interview questions to my email: nagushri1994@gmail.com . Highly appreciate your work.
Thank you so much for your time.
Srinath-> Kindly check your inbox for more Application support interview questions for professionals.
Really nice article.
Can you please send me Product support real time scenarios and their troubleshooting? I will really appreciate if you can also send to some interview questions and answers. Thanks in advance.
Thanks Jyoti for such a good words . kindly check the inbox for more interview questions.
Hi Amit,
I am preparing for Appliaction support analyst post, and i came through this link of yours great stuff, can you please provide more questions in the email i provide to you? Please and thank you.
Sure Dhrumil.I sent you interview questions.
Can you please mail me more questions to my mail iD ‘mani.passionate@yahoo.com’
Thanks
Sure MAnikandan.
Hi Amit
Request you to share the Production Support interview questions on my mail id.
rathodvenkatesh5@gmail.com
Hi Venkatesh..I sent you application support interview questions.
Can you please mail me the questions?
My email ID is akshitdarda@gmail.com
Sure Akshit you will get interview questions
Please can you help on below question with answer include STAR example
What is the biggest challenge you come across as IT support analyst role and how did you solve the problem ?
How did you manage the urgent issue when customer request and how did you mange it with time to over the situation to solve the problem ?
How did you manage the difficult customer request and what action took to solve the issue ?
Sure Deepani. I have added the requested questions in the article with answers. Thanks for your kind suggestion.
Hi Amit, please share interview questions to my mail id also.
akshatgoyal10@gmail.com
Sure Akshat. I shared more interview questions.
Please share Application support l2 level questions and answers (Linux, database,AWS)
Sure Raja..Check your inbox.
Hi
This Is upender
I want Interview equations and answers for Dot net application support engineer as well as IIS (internet information services)
and by using sql sever trouble shooting commands for support engineer
Sure Upender. I sent Application Support Interview Questions for Professionals .
plz send me application support interview question 2-3 years of experience..
top mnc companies interview question
Abhichandeshware@gmail.com
Sure Sachin
Hi Amit. Thank you for your helping hand. can you please send me the more Linux and SQL interview Question on my mail id : siva.kurra39@gmail.com?
Sure Siva..check your mail
Hi Amit,
could you please send me application support interview questions and answers (unix ,linux and sql,plsql)
mummadi944@gmail.com
Sure Venkatesh..You can check your mailbox
plz send me application support interview question 2-3 years of experience..
top mnc companies interview question-SQL,Unix
nitinbiradar998@gmail.com
Sure Nitin.. Kindly check your mailbox
Can you send dot net support with iis interview questions ion mandar.sondkar@gmail.com
Thanks,
Mandar
Sure Mandar.
Kindly check your mailbox for more interview questions.
I have an interview after some days.
plz send me application support interview question 2-3 years of experience..
please send it on mdhruv111@gmail.com
Sure Dhruv.. Kindly check your mailbox
Hi Amit,
Your article is really helpful. I’m looking for L2 Production support Technical and Behavioral interview questions based on “BANKING” Domain and Technology –> ORACLE, SQL, UNIX could you plz share the questions based on my requirements.
Thanks Vijay..I sent you the interiview questions
Hi Amit,
Could you please help me with some SQL,UNIX and application support interview questions for experienced professionals.
Thankyou
mail id- ramandeep20194@gmail.com
Sure Ramandeep.. Kindly check your inbox
Hi amit, could u please send some more questions related to 3 years experience in L2 production support engineer in the Telecom and Banking domain and Technology Sql, Plsql, Autosys and shellscripting to my mail id -cchinkuu9999@gmail.com. Thanks in advance
Sure Chinku..
Hi Amit,
Could you please help me with some Java, SQL,UNIX and application support interview questions for experienced professionals.
Thankyou
mail id- karthiksai873@gmail.com
Sure Karthik sai..
Please send application support engineer interview questiins and answer’s including oracle and Web logic
Sure Rajendhar..
Kindly check your mailbox for the same.
plz send me application support interview question 2-3 years of experience..
top mnc companies interview question
Sure Santosh..Kindly check Application Support Interview Questions for professionals.
hello,
i really liked your post/article
Could you pliz send me some more application support questions and some real time scenario questions also.
thank you in advance and all the best
Thanks Vinnie for your good words.
Hi Amit,
Please mail me this.
biswaranjansend515@gmail.com
Sure Biswa…