Upload Button Icon Add office photos

Filter interviews by

Artech Infosystems Application Support Engineer Interview Questions and Answers

Updated 4 Jul 2024

Artech Infosystems Application Support Engineer Interview Experiences

2 interviews found

Application Support Engineer Interview Questions & Answers

user image Yogesh rajendra asolkar

posted on 4 Jul 2024

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

(2 Questions)

  • Q1. What is Salesforce
  • Ans. 

    Salesforce is a cloud-based customer relationship management (CRM) platform that helps businesses manage their sales, customer service, marketing, and more.

    • Cloud-based CRM platform

    • Helps businesses manage sales, customer service, marketing, etc.

    • Provides tools for automation, analytics, and collaboration

    • Offers customizable solutions for different industries

    • Examples: Sales Cloud, Service Cloud, Marketing Cloud

  • Answered by AI
  • Q2. How to handle support cases
  • Ans. 

    Support cases should be handled promptly and efficiently to ensure customer satisfaction.

    • Acknowledge the support case promptly to let the customer know their issue is being addressed.

    • Investigate the issue thoroughly to understand the root cause.

    • Communicate with the customer regularly to provide updates on the progress.

    • Resolve the issue in a timely manner to ensure customer satisfaction.

    • Document the resolution process f

  • Answered by AI

Skills evaluated in this interview

I applied via Referral and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Scenario-based questions, knowledge of applications used, questions to gauge the overall attitude of the individual.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be real and don't fake it. Be responsive and alert to the questions posed. Never be ashamed to say that you don't know something. Honesty is an important attribute.

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
asked in Softenger
Q5. How do you find the heap dump files in Linux? What is the role of ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. Sql basic joins , fliter condition, group order clause , select query for getting complex output from table
  • Q2. About yourprojrct waht u did etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Sql basic Linux basic prepare sql syntaxes on a employee or department table practice basicsql code writing
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

IT WAS GOOD MOSTLY FOCUS IS ON BASICS OF PYTHON LINKDEDLIST

Round 2 - HR 

(2 Questions)

  • Q1. WHY DO WE HIRE YOU?
  • Q2. How do you rate interview expericnece
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 - Coding Test 

Oops concepts were judged along with problem solving

Round 3 - Technical 

(2 Questions)

  • Q1. Explain your project
  • Q2. Design book my show on a high level

Interview Preparation Tips

Interview preparation tips for other job seekers - Read about oops and clean code practises thats all i have

I applied via Naukri.com and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Select from employees tables all those who don't work in any department.
  • Q2. What is a cursor and write a query
  • Ans. 

    A cursor is a database object used to retrieve data from a result set one row at a time.

    • A cursor is used to iterate through a result set.

    • It can be used to update or delete rows in a table.

    • Example query: DECLARE cursor_name CURSOR FOR SELECT column1, column2 FROM table_name;

    • Example usage: OPEN cursor_name; FETCH NEXT FROM cursor_name INTO @variable1, @variable2;

    • Example usage: CLOSE cursor_name; DEALLOCATE cursor_name;

  • Answered by AI
  • Q3. How early you can join

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic questions thoroughly

Skills evaluated in this interview

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. Sql basic joins , fliter condition, group order clause , select query for getting complex output from table
  • Q2. About yourprojrct waht u did etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Sql basic Linux basic prepare sql syntaxes on a employee or department table practice basicsql code writing
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Build an architecture for an ecommerce application
  • Ans. 

    An architecture for an ecommerce application involves multiple components like front-end, back-end, database, and payment gateway.

    • Separate front-end and back-end for scalability and maintainability

    • Use microservices architecture for flexibility and scalability

    • Implement a robust database system for storing product information, user data, and transactions

    • Integrate a secure payment gateway for processing payments

    • Utilize ca

  • Answered by AI
Round 1 - Aptitude Test 

(1 Question)

  • Q1. The duration of the test is around 2 hours. It has questions from DSA on topics like Graphs, Arrays, etc. and MCQs from other topics of OOPS and DBMS. Swapping adjacent, counting votes and Pair Sum.
Round 2 - Technical 

(1 Question)

  • Q1. Problem statement: Aapali Taxi is a taxi cab operator. They have 3 types of cars- Mini, Sedan and SUV, each with different tariffs. When customers approach them for booking rides, they show an “Estimated ...
Round 3 - Technical 

(5 Questions)

  • Q1. 1. Permutations of the string.
  • Ans. 

    Permutations of a string can be generated using recursion and swapping characters.

    • Use recursion to generate all possible permutations

    • Swap characters to create new permutations

    • Store permutations in an array of strings

    • Handle duplicate characters to avoid repetition

  • Answered by AI
  • Q2. 2. How will you design a database to manage the songs playlist on Spotify?
  • Ans. 

    A database for managing songs on Spotify playlists.

    • Create a table for playlists with columns for name, description, and user ID

    • Create a table for songs with columns for title, artist, album, and duration

    • Create a table for playlist-songs with columns for playlist ID and song ID

    • Use foreign keys to link tables together

    • Allow for CRUD operations on playlists and songs

  • Answered by AI
  • Q3. 3. Middle element of linked list in a single traversal
  • Ans. 

    To find the middle element of a linked list in a single traversal.

    • Use two pointers, one moving at twice the speed of the other.

    • When the faster pointer reaches the end, the slower pointer will be at the middle.

    • If the linked list has even number of elements, the middle will be the second of the two middle elements.

  • Answered by AI
  • Q4. 4. Design a list to show songs in the year in which they were published.
  • Ans. 

    Create an array of song titles sorted by year of publication.

    • Create an array of song objects with properties for title and year of publication.

    • Sort the array by year of publication.

    • Extract the titles of the songs into a separate array.

    • Return the array of song titles.

  • Answered by AI
  • Q5. 5. Another question related to library management class where you have to make diagrams too.
Round 4 - HR 

(1 Question)

  • Q1. This Round is comparatively simple and easier than previous rounds. They ask you to introduce yourself followed by questions regarding your background goals, strengths, etc. And discussing some social prob...

Interview Preparation Tips

Topics to prepare for ThoughtWorks Application Developer interview:
  • React and NodeJ
  • DSA and Projects
Interview preparation tips for other job seekers - Revise Puzzles, OOPS and DSA and Database related questions from leetcode. Basic Knowledge of OOPS, Database Management, and DSA is very essential. Make sure you know the kind of questions asked in the Leadership Round and prepare answers for them before the interview.

Skills evaluated in this interview

I applied via campus placement at Vishwakarma Institute of Technology, Pune and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. OOP based questions - Inheritance, Polymorphism etc
  • Q2. Project based in depth question - which technology, why
  • Q3. Data structures concept, programming concepts (i was asked loop vs recurssion)

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your resume. Know each and everything you mentioned. Prepare with basics.

Artech Infosystems Interview FAQs

How many rounds are there in Artech Infosystems Application Support Engineer interview?
Artech Infosystems interview process usually has 1 rounds. The most common rounds in the Artech Infosystems interview process are One-on-one Round.
How to prepare for Artech Infosystems 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 Artech Infosystems. The most common topics and skills that interviewers at Artech Infosystems expect are SQL, Production Support, Technical Support, Troubleshooting and Application Support.
What are the top questions asked in Artech Infosystems Application Support Engineer interview?

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

  1. How to handle support ca...read more
  2. What is Salesfo...read more
  3. Scenario-based questions, knowledge of applications used, questions to gauge th...read more

Tell us how to improve this page.

Artech Infosystems Application Support Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Artech Infosystems Application Support Engineer Salary
based on 12 salaries
₹7 L/yr - ₹8.1 L/yr
51% more than the average Application Support Engineer Salary in India
View more details

Artech Infosystems Application Support Engineer Reviews and Ratings

based on 3 reviews

2.5/5

Rating in categories

2.3

Skill development

3.7

Work-life balance

3.2

Salary

1.3

Job security

1.8

Company culture

2.9

Promotions

2.5

Work satisfaction

Explore 3 Reviews and Ratings
Associate Recruiter
152 salaries
unlock blur

₹2.2 L/yr - ₹5.3 L/yr

Technical Recruiter
148 salaries
unlock blur

₹2.5 L/yr - ₹6.7 L/yr

Software Engineer
80 salaries
unlock blur

₹2.5 L/yr - ₹12.2 L/yr

Senior Technical Recruiter
77 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

HR Executive
65 salaries
unlock blur

₹2 L/yr - ₹5.3 L/yr

Explore more salaries
Compare Artech Infosystems with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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