Upload Button Icon Add office photos

Filter interviews by

APSC Infotech & Software Solution Interview Questions, Process, and Tips

Updated 10 Mar 2023

Top APSC Infotech & Software Solution Interview Questions and Answers

APSC Infotech & Software Solution Interview Experiences

Popular Designations

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What is swap explain it
  • Ans. 

    Swap is a space on a hard disk used as the virtual memory extension of a computer's RAM.

    • Swap is a technique used by operating systems to increase the amount of available RAM.

    • It involves moving data from RAM to a hard disk, freeing up space in RAM for other processes.

    • Swap is also known as virtual memory or paging.

    • It can improve system performance but can also slow down the system if the hard disk is slow.

    • Linux systems t...

  • Answered by AI
  • Q2. Tell me about your self
Round 2 - Technical 

(4 Questions)

  • Q1. Diff between static and dynamic website
  • Ans. 

    Static websites have fixed content while dynamic websites have content that can change based on user interactions.

    • Static websites are built using HTML and CSS and do not require server-side processing.

    • Dynamic websites use server-side scripting languages like PHP, Python, or Ruby to generate content.

    • Static websites are faster to load and cheaper to host, while dynamic websites are more flexible and interactive.

    • Examples ...

  • Answered by AI
  • Q2. How does web hosting work
  • Ans. 

    Web hosting is a service that allows individuals and organizations to make their website accessible via the World Wide Web.

    • Web hosting providers offer server space and internet connectivity to store and serve website files

    • Users can upload their website files to the server using FTP or a web-based interface

    • Web hosting can be shared, dedicated, or cloud-based depending on the user's needs and budget

    • Web hosting also inclu...

  • Answered by AI
  • Q3. What are kernel levels
  • Ans. 

    Kernel levels are layers of the operating system that manage hardware resources and provide services to applications.

    • Kernel levels are responsible for managing hardware resources such as memory, CPU, and input/output devices.

    • They provide services to applications such as file system access, network communication, and process management.

    • There are different levels of kernel, such as microkernel, monolithic kernel, and hyb...

  • Answered by AI
  • Q4. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be a little confident and clear your basics Don't need advance knowledge

Skills evaluated in this interview

Technical Support Engineer Trainee Interview Questions asked at other Companies

Q1. What is the web application What you what is SQL What is difference between really and truncate and drop statements How do you get a sum of column of particular table How do you apply condition in a aagregate statement What are the windows ... read more
View answer (2)

I applied via Job Portal

Round 1 - HR 

(2 Questions)

  • Q1. WHAT YOU'LL DO IF AN EMPLOYEE BREAKS A BOND FOR HIS/HER MARRIAGE?
  • Q2. HOW YOU'LL HANDLE THE SITUATION IF AN EMPLOYEE CAME AND SAID THAT HE/SHE IS LEAVING THE ORGANIZATION BEFORE COMPLETING THEIR BOND.?

Interview Preparation Tips

Interview preparation tips for other job seekers - GIVE SMART AND UNBIASED ANSWERS, WHICH WILL BE BENEFICIAL FOR EMPLOYEES AND FOR THE ORGANIZATION.

Junior HR Executive Interview Questions asked at other Companies

Q1. What do you know about the flow of HR Process ?
View answer (1)

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was interview for AI role so most of the questions were about the same topics. The mathematics behind some models and they focused on my projects and research paper.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your projects and research papers in AI field is always an advantage.

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain about data scrapping,computer vision,agile methodologies,change request,testing methods
  • Ans. 

    Data scraping, computer vision, agile methodologies, change request, and testing methods are all important aspects of software engineering.

    • Data scraping involves extracting data from websites or other sources.

    • Computer vision involves using algorithms to interpret and analyze visual data.

    • Agile methodologies are a set of principles for software development that prioritize flexibility and collaboration.

    • Change requests are...

  • Answered by AI
  • Q2. Explain about project i worked in

Interview Preparation Tips

Interview preparation tips for other job seekers - interviewer was very friendly and i had good experience.2 technical rounds one client round and one HR round

Skills evaluated in this interview

I applied via Referral and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About aptitude , logical reasoning, vocabulary etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Though time is less , but can be answered with determined concentration.

I applied via Recruitment Consultant and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Java 8 features - Stream API, Functional interface (Predicate, Binary Operators, Function), Permgen V/s Metaspace, Date and Time API
  • Q2. Spring boot annotations - @SpringBootApplication, @RestController, @GetMapping, @PostMapping, @Service, @Repository
  • Q3. Coding Question 1 - Find sum of squares of numbers in list using stream API.
  • Ans. 

    Find sum of squares of numbers in list using stream API.

    • Use mapToInt() to convert list of integers to IntStream

    • Use map() to square each element of IntStream

    • Use sum() to get the sum of squares

  • Answered by AI
  • Q4. Coding Question 2 - Searching in 2D sorted array row wise and column wise.
  • Ans. 

    Searching in 2D sorted array row wise and column wise.

    • Start from the top right corner or bottom left corner

    • Compare the target with the current element

    • Move left or down if target is smaller or move right or up if target is larger

    • Repeat until target is found or out of bounds

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and also do lots of hands on coding.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Data Structures, Algorithms, System designing, Azure

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer had less knowledge on the current technologies and was more stereo type.

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Spiral Order Traversal of a Binary Tree Problem Statement

    Given a binary tree with 'N' nodes, your task is to print the nodes in spiral order traversal.

    Example:

    Input:
    The binary tree is represented i...
  • Ans. 

    Print nodes of a binary tree in spiral order traversal.

    • Use a queue to perform level order traversal of the binary tree.

    • Alternate between printing nodes from left to right and right to left at each level.

    • Handle null nodes represented by '-1' appropriately.

    • Example: For input '1 2 3 -1 -1 4 5 -1 -1 -1 -1', the output should be '1 3 2 4 5'.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Word Break Problem Statement

    You are given a list of N strings called A. Your task is to determine whether you can form a given target string by combining one or more strings from A.

    The strings from A c...

  • Ans. 

    Given a list of strings, determine if a target string can be formed by combining one or more strings from the list.

    • Iterate through all possible combinations of strings from the list to form the target string.

    • Use recursion to try different combinations of strings.

    • Check if the current combination forms the target string.

    • Return true if a valid combination is found, otherwise return false.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Design an elevator system.
  • Ans. 

    Design an elevator system for efficient vertical transportation.

    • Divide building into zones to optimize elevator usage.

    • Implement algorithms for efficient elevator scheduling.

    • Include safety features like emergency stop buttons and overload sensors.

    • Consider user interface for passengers to select floors and monitor elevator status.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaNoMicrosoft interview preparation:Topics to prepare for the interview - Data structures, algorithms , low level system design , high level system design, problem solvingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Never give up
Tip 2 : Practice 
Tip 3 : Be positive

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Highlight skills and achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Jul 2019.

Interview Questionnaire 

4 Questions

  • Q1. 1. Java questions basee on interfaces, Exception Handling, inheritance, Steam API;
  • Q2. 2. SQL questions related to joins, sub-queries, nth highest salary;
  • Q3.  3. Basic algorithms questions based on Arrays/Linked List.
  • Q4. 4. Puzzles based on basic aptitudes test.

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed for Java Developer. I had 4 rounds (all technical rounds). Each rounds comprises questions related to Java/Puzzles/Algorithms and my experience of project.

Go through your resume. Things should be relevant and one should have clear understanding of basics.

APSC Infotech & Software Solution Interview FAQs

How many rounds are there in APSC Infotech & Software Solution interview?
APSC Infotech & Software Solution interview process usually has 2 rounds. The most common rounds in the APSC Infotech & Software Solution interview process are HR, Resume Shortlist and Technical.
How to prepare for APSC Infotech & Software Solution 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 APSC Infotech & Software Solution. The most common topics and skills that interviewers at APSC Infotech & Software Solution expect are SEO, Web Technologies, HTML, PHP and Research.
What are the top questions asked in APSC Infotech & Software Solution interview?

Some of the top questions asked at the APSC Infotech & Software Solution interview -

  1. Diff between static and dynamic webs...read more
  2. How does web hosting w...read more
  3. What is swap explain...read more

Tell us how to improve this page.

APSC Infotech & Software Solution Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 868 Interviews
Google Interview Questions
4.4
 • 848 Interviews
Amdocs Interview Questions
3.7
 • 519 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
KPIT Technologies Interview Questions
3.4
 • 291 Interviews
SAP Interview Questions
4.2
 • 285 Interviews
Adobe Interview Questions
3.9
 • 236 Interviews
View all

APSC Infotech & Software Solution Reviews and Ratings

based on 14 reviews

1.8/5

Rating in categories

2.1

Skill development

1.7

Work-life balance

2.4

Salary

1.9

Job security

1.6

Company culture

1.8

Promotions

1.7

Work satisfaction

Explore 14 Reviews and Ratings
Technical Support Engineer
9 salaries
unlock blur

₹1.5 L/yr - ₹2.5 L/yr

HR Executive
4 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Senior System Administrator
4 salaries
unlock blur

₹4.1 L/yr - ₹5.4 L/yr

Linux Technical Support Engineer
4 salaries
unlock blur

₹1.4 L/yr - ₹3.1 L/yr

Technical Content Writer
3 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Explore more salaries
Compare APSC Infotech & Software Solution with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

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