Upload Button Icon Add office photos

Filter interviews by

APCFSS Interview Questions and Answers

Updated 18 Aug 2023

APCFSS Interview Experiences

Popular Designations

6 interviews found

Web Designer Interview Questions & Answers

user image Satyanarayana Padhi

posted on 3 Dec 2022

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

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 - Aptitude Test 

Basics of aptitude were asked, general maths and verbal ability questions were asked

Round 3 - Aptitude Test 

This was a technical aptitude test

Round 4 - Technical 

(3 Questions)

  • Q1. Programming languages such as C, C++, Java. Project details.
  • Ans. If you know about database, few questions about them(languages in SQL, joins,etc..
  • Answered by Satyanarayana Padhi
  • Q2. Some questions about JavaScript
  • Q3. Questions on HTML and CSS

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before attempting the interview. Rewise all the topics you had learnt before this is gonna be easy for you guys to crack the interview.

Web Designer Interview Questions asked at other Companies

Q1. What is the data structure
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website

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 - One-on-one 

(3 Questions)

  • Q1. What is your previous experience in Govt Organisations?
  • Ans. 

    I have no previous experience in Govt Organisations.

    • No previous experience in Govt Organisations

    • Worked in private sector

    • Managed finance and accounts in private companies

  • Answered by AI
  • Q2. Ask about all accounting principles and the latest tax implementations
  • Q3. Live practice on Tally ERP- 9 and other ERP sessions

Interview Preparation Tips

Interview preparation tips for other job seekers - should learn Accounting principles and tax rules and ready to prepare file all returns..

Assistant Manager Finance & Accounts Interview Questions asked at other Companies

Q1. Can you please wait for 5 days to get your Reliving letter?
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Tell me about your self
Round 3 - Technical 

(1 Question)

  • Q1. Hcm releted quations

Interview Preparation Tips

Interview preparation tips for other job seekers - good Company and work life balance And good organization

SAP HCM Consultant Interview Questions asked at other Companies

Q1. How to work bpo Two way of communication bpo so what is bpo....the how are work bpo People are working bpo so how experience bpo
View answer (1)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2022. There were 3 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 - Aptitude Test 

Duration 30 min
basic aptitude questions

Round 3 - Technical 

(1 Question)

  • Q1. Projects python libraries

Data Analyst Intern Interview Questions asked at other Companies

Q1. Water Jug Problem Statement You have two water jugs with capacities X and Y liters respectively, both initially empty. You also have an infinite water supply. The goal is to determine if it is possible to measure exactly Z liters using thes... read more
View answer (3)

APCFSS interview questions for popular designations

 SAP HCM Consultant

 (1)

 Data Analyst Intern

 (1)

 SAP Abap Associate Consultant

 (1)

 Web Designer

 (1)

 Assistant Manager Finance & Accounts

 (1)

 Software Developer

 (1)

I applied via Hirist and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of core ABAP?
Round 2 - HR 

(1 Question)

  • Q1. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on your basics and previous projects.

SAP Abap Associate Consultant Interview Questions asked at other Companies

Q1. 1.data dictionary concept-table creation steps How do you maintain TMG? What is one step and two step? Where do you use the search help and types of search help? What are lock objects? Difference between structure and table? What are views ... read more
View answer (1)

I applied via Campus Placement and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java and SQL ,dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - very proper questions and communication.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. Why we hair you
  • Q2. How much salary u can expect
  • Q3. Know about your self
  • Q4. What is your strength

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

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Why IT
  • Q3. About my project
  • Q4. Few mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - General questions

Interview Questionnaire 

1 Question

  • Q1. Relates to project & last company experience

APCFSS Interview FAQs

How many rounds are there in APCFSS interview?
APCFSS interview process usually has 2-3 rounds. The most common rounds in the APCFSS interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for APCFSS 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 APCFSS. The most common topics and skills that interviewers at APCFSS expect are Java, Javascript, Web Technologies, Asap and Bootstrap.
What are the top questions asked in APCFSS interview?

Some of the top questions asked at the APCFSS interview -

  1. Programming languages such as C, C++, Java. Project detai...read more
  2. live practice on Tally ERP- 9 and other ERP sessi...read more
  3. Ask about all accounting principles and the latest tax implementati...read more

Tell us how to improve this page.

APCFSS Interview Process

based on 6 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.9
 • 153 Interviews
HCL Infosystems Interview Questions
3.9
 • 141 Interviews
Webdew Interview Questions
4.4
 • 106 Interviews
Data Entry Interview Questions
4.1
 • 98 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
CapitalOne Interview Questions
3.7
 • 79 Interviews
View all

APCFSS Reviews and Ratings

based on 38 reviews

3.3/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

2.8

Salary

4.0

Job security

3.0

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 38 Reviews and Ratings
Software Engineer
48 salaries
unlock blur

₹3.6 L/yr - ₹7.5 L/yr

Software Developer
39 salaries
unlock blur

₹2.4 L/yr - ₹9 L/yr

Data Analyst
21 salaries
unlock blur

₹3.6 L/yr - ₹8.2 L/yr

Java Developer
14 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

System Analyst
10 salaries
unlock blur

₹2.4 L/yr - ₹4.8 L/yr

Explore more salaries
Compare APCFSS with

Marpu Foundation

4.8
Compare

Huawei Technologies

4.0
Compare

HCL Infosystems

3.9
Compare

Z X Learning

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