Upload Button Icon Add office photos

Forsys

Compare button icon Compare button icon Compare

Filter interviews by

Forsys Interview Questions and Answers

Updated 12 Jun 2025
Popular Designations

7 Interview questions

An Intern was asked 1mo ago
Q. How can data be collected for weather forecast prediction using machine learning?
Ans. 

Data for weather forecasting can be collected through various sources and techniques, enabling machine learning models to predict weather patterns.

  • 1. Meteorological Stations: Collect data on temperature, humidity, wind speed, and precipitation.

  • 2. Satellites: Provide images and data on cloud cover, storm systems, and atmospheric conditions.

  • 3. Weather Radars: Measure precipitation intensity and movement, helping to ...

View all Intern interview questions
An Intern was asked 1mo ago
Q. What are the different ways to declare variables in JavaScript?
Ans. 

JavaScript allows variable declaration using var, let, and const, each with different scopes and behaviors.

  • var: Declares a variable that can be re-assigned. Example: var x = 10;

  • let: Declares a block-scoped variable that can be re-assigned. Example: let y = 20;

  • const: Declares a block-scoped variable that cannot be re-assigned. Example: const z = 30;

View all Intern interview questions
A Senior Software Engineer was asked 5mo ago
Q. How do you count the number of opportunities associated with an account?
Ans. 

The count of opportunities associated with an account can be determined by querying the database for opportunities linked to the account.

  • Query the database for opportunities associated with the account

  • Count the number of opportunities returned in the query result

  • Consider filtering out any duplicate opportunities if necessary

View all Senior Software Engineer interview questions
A Salesforce Developer was asked 6mo ago
Q. Explain overloading with a real-life example.
Ans. 

Overloading is when a class has multiple methods with the same name but different parameters.

  • Overloading allows a class to have multiple methods with the same name but different parameters.

  • The compiler determines which method to call based on the number and type of arguments passed.

  • Example: a class with multiple 'calculate' methods that accept different data types like int, double, or string.

View all Salesforce Developer interview questions
A Salesforce Developer was asked 6mo ago
Q. What is a database?
Ans. 

A database is a structured collection of data that is stored and accessed electronically.

  • Organized collection of data

  • Stored electronically

  • Allows for easy access and retrieval of information

View all Salesforce Developer interview questions
A Salesforce Developer was asked 6mo ago
Q. Explain the concepts of Object-Oriented Programming (OOP).
Ans. 

OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

  • OOP focuses on creating objects that interact with each other to solve problems.

  • Encapsulation: Objects can hide their internal state and require interaction through defined interfaces.

  • Inheritance: Objects can inherit attributes and methods from other objects.

  • Polymorphism: O...

View all Salesforce Developer interview questions
🔥 Asked by recruiter 2 times
A Senior Software Engineer was asked 5mo ago
Q. Asynchronous apex
Ans. 

Asynchronous apex allows for processing tasks in the background without blocking the main thread.

  • Used for long-running processes like callouts, email sending, and batch jobs

  • Improves performance by offloading tasks to run asynchronously

  • Can be implemented using future methods, queueable interface, and batch apex

View all Senior Software Engineer interview questions
Are these interview questions helpful?

Forsys Interview Experiences

13 interviews found

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round is aptitude test. Easy to medium aptitude level questions will be asked.

Round 2 - Technical 

(2 Questions)

  • Q1. In the second round easy to medium coding questions will be asked. Also questions based on OOPs and DSA will be asked.
  • Q2. 1. Sorting questions. 2. What is OOPs? 3. Why OOPs? 4. What is polymorphism? 5. What is Inheritance? 6. Where do we use multi threading? 7. What is multi threading?
Round 3 - Technical 

(1 Question)

  • Q1. Questions asked on projects, business logics and OOPs.

Interview Preparation Tips

Topics to prepare for Forsys Software Development Engineer 1 interview:
  • Object Oriented Programming
  • Web Development
Interview preparation tips for other job seekers - Be good with OOPs concepts and the projects that you have done.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

First round is assignment.

Round 2 - Group Discussion 

2nd round is the group discussion.

Round 3 - Technical 

(2 Questions)

  • Q1. Explain oops concept
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Encapsulation: Objects can hide their internal state and require interaction through defined interfaces.

    • Inheritance: Objects can inherit attributes and methods from other objects.

    • Polymorphism: Object...

  • Answered by AI
  • Q2. What is database
  • Ans. 

    A database is a structured collection of data that is stored and accessed electronically.

    • Organized collection of data

    • Stored electronically

    • Allows for easy access and retrieval of information

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. They asked me about the projects in my resume
  • Q2. Explain overloading with real life example
  • Ans. 

    Overloading is when a class has multiple methods with the same name but different parameters.

    • Overloading allows a class to have multiple methods with the same name but different parameters.

    • The compiler determines which method to call based on the number and type of arguments passed.

    • Example: a class with multiple 'calculate' methods that accept different data types like int, double, or string.

  • Answered by AI

Intern Interview Questions & Answers

user image Anonymous

posted on 16 May 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What are the different ways to declare variables in JavaScript?
  • Ans. 

    JavaScript allows variable declaration using var, let, and const, each with different scopes and behaviors.

    • var: Declares a variable that can be re-assigned. Example: var x = 10;

    • let: Declares a block-scoped variable that can be re-assigned. Example: let y = 20;

    • const: Declares a block-scoped variable that cannot be re-assigned. Example: const z = 30;

  • Answered by AI
  • Q2. How can data be collected for weather forecast prediction using machine learning?
  • Ans. 

    Data for weather forecasting can be collected through various sources and techniques, enabling machine learning models to predict weather patterns.

    • 1. Meteorological Stations: Collect data on temperature, humidity, wind speed, and precipitation.

    • 2. Satellites: Provide images and data on cloud cover, storm systems, and atmospheric conditions.

    • 3. Weather Radars: Measure precipitation intensity and movement, helping to track...

  • Answered by AI
  • Q3. Can you provide a brief explanation of a project you completed and describe the difficulties you encountered during its development?
  • Ans. 

    Developed a web application for tracking personal fitness goals, facing challenges in user interface design and data integration.

    • Faced difficulties in creating an intuitive user interface that appealed to users of all ages.

    • Encountered issues with integrating third-party APIs for real-time fitness data, requiring extensive debugging.

    • Had to pivot the project scope when initial user feedback indicated a need for additiona...

  • Answered by AI
  • Q4. What's your domain
  • Ans. 

    My domain is computer science, focusing on software development and data analysis to solve real-world problems.

    • Proficient in programming languages like Python and Java.

    • Experience with web development using HTML, CSS, and JavaScript.

    • Familiar with data analysis tools such as Pandas and NumPy.

    • Worked on a project that involved building a web application for task management.

  • Answered by AI
  • Q5. Why motivated you to choose this domain
  • Ans. 

    My passion for technology and its impact on society drove me to choose this domain, aiming to innovate and solve real-world problems.

    • I have always been fascinated by how technology can improve lives, like using apps for health monitoring.

    • During my studies, I worked on a project that developed a mobile app to help users manage their daily tasks more efficiently.

    • I enjoy the challenge of problem-solving, which is prevalen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good things take time

Senior Analyst Interview Questions & Answers

user image Chandrasekhar Jarjapu

posted on 15 May 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Technologies worked on
  • Q2. Customer facing

Interview Preparation Tips

Interview preparation tips for other job seekers - good opportunity for both freshers and experience, food facility is there for free of cost.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - Coding Test 

I applied for the Forsys role through on-campus recruitment, and in the first round, they asked multiple-choice questions along with two coding questions that were of medium difficulty level, similar to those found on LeetCode.

Round 2 - Group Discussion 

The selected students from the first round will have the GD where they will general topic like is work from home is good option kind of things

Round 3 - Technical 

(1 Question)

  • Q1. They will ask mostly about the sql and also ask us to do a dsa question

Intern Interview Questions & Answers

user image Anonymous

posted on 16 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Ask about my project
  • Q2. Asked to do coding
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Jan 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Salesforce flows
  • Q2. Asynchronous apex
  • Ans. 

    Asynchronous apex allows for processing tasks in the background without blocking the main thread.

    • Used for long-running processes like callouts, email sending, and batch jobs

    • Improves performance by offloading tasks to run asynchronously

    • Can be implemented using future methods, queueable interface, and batch apex

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Count of opportunities associated to account
  • Ans. 

    The count of opportunities associated with an account can be determined by querying the database for opportunities linked to the account.

    • Query the database for opportunities associated with the account

    • Count the number of opportunities returned in the query result

    • Consider filtering out any duplicate opportunities if necessary

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Asynchronous apex
  • Ans. 

    Asynchronous apex allows for processing tasks in the background without blocking the main thread.

    • Asynchronous apex is used to perform long-running tasks such as callouts, email sending, and batch processing.

    • It helps in improving performance by offloading tasks to run in the background.

    • Examples include @future methods, Queueable interface, and Batch Apex.

    • Asynchronous apex can be used to handle large data volumes efficie...

  • Answered by AI
  • Q2. Lightning data table
Round 4 - Communication 

(1 Question)

  • Q1. Projects and roles
Round 5 - HR 

(1 Question)

  • Q1. Package discussion 8
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. How do you align your personal values with the values of Forsys?
  • Ans. 

    I align my values with Forsys by prioritizing innovation, collaboration, and user-centric design in my work.

    • I value innovation, which aligns with Forsys' commitment to cutting-edge technology. For example, I actively seek out new frameworks to enhance user experience.

    • Collaboration is key for me; I believe in teamwork to achieve the best results, similar to Forsys' emphasis on collective problem-solving.

    • User-centric des...

  • Answered by AI
  • Q2. What information do you have about Forsys?
  • Ans. 

    Forsys is a technology company specializing in innovative software solutions and digital transformation services.

    • Founded in [year], Forsys has a strong focus on enhancing user experience through cutting-edge front-end technologies.

    • They offer services in web development, mobile app development, and UI/UX design.

    • Forsys has worked with various industries, including finance, healthcare, and e-commerce, to deliver tailored ...

  • Answered by AI

Interview Questions & Answers

user image Anonymous

posted on 12 Jun 2025

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Tell me about your experience
  • Ans. 

    I have extensive experience in Shared Services, focusing on process optimization and cross-functional collaboration.

    • Led a team to streamline invoicing processes, reducing processing time by 30%.

    • Implemented a centralized helpdesk system that improved response times by 40%.

    • Collaborated with IT to automate data entry tasks, resulting in a 25% decrease in errors.

  • Answered by AI
  • Q2. What can you bring to the table to enhance this role.
  • Ans. 

    I bring a blend of analytical skills, process optimization, and a collaborative mindset to enhance the Shared Services role.

    • Strong analytical skills: I can analyze data trends to identify areas for improvement, as demonstrated in my previous role where I reduced processing time by 20%.

    • Process optimization: I have experience in streamlining workflows, which led to a 30% increase in efficiency in my last project.

    • Collabor...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You'll love the culture and people!
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Aptitude based questions
  • Q2. Technical(based on programming languages)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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. Useless people and jas Zero knowledge
  • Q2. Not willing to listen
Round 3 - Technical 

(2 Questions)

  • Q1. Not ready to accept their failures
  • Q2. Zero knowledge people are at the top

Interview Preparation Tips

Interview preparation tips for other job seekers - Better not to Join this family company, you will regret

Top trending discussions

View All
Office Jokes
1w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Forsys?
Ask anonymously on communities.

Forsys Interview FAQs

How many rounds are there in Forsys interview?
Forsys interview process usually has 4 rounds. The most common rounds in the Forsys interview process are Technical, Resume Shortlist and HR.
How to prepare for Forsys 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 Forsys. The most common topics and skills that interviewers at Forsys expect are Salesforce, Javascript, Java, Apex and Project Management.
What are the top questions asked in Forsys interview?

Some of the top questions asked at the Forsys interview -

  1. How can data be collected for weather forecast prediction using machine learnin...read more
  2. What are the different ways to declare variables in JavaScri...read more
  3. Explain overloading with real life exam...read more
How long is the Forsys interview process?

The duration of Forsys interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 14 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 44%
2-4 weeks 33%
6-8 weeks 11%
More than 8 weeks 11%
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 50 Interviews
Fingent Interview Questions
4.2
 • 25 Interviews
Khoros Interview Questions
3.7
 • 20 Interviews
3Pillar Global Interview Questions
3.2
 • 20 Interviews
Bottomline Interview Questions
3.4
 • 19 Interviews
Saviynt Interview Questions
2.5
 • 19 Interviews
Fourkites Interview Questions
3.7
 • 18 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
View all

Forsys Reviews and Ratings

based on 83 reviews

3.1/5

Rating in categories

3.3

Skill development

3.2

Work-life balance

3.0

Salary

3.0

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 83 Reviews and Ratings
Salesforce Commerce Cloud Developer

Hyderabad / Secunderabad

5-10 Yrs

₹ 20-30 LPA

Salesforce Marketing Cloud Developer

Hyderabad / Secunderabad

5-10 Yrs

₹ 15-30 LPA

Technical Lead Revenue Cloud _ Forsys

Hyderabad / Secunderabad

8-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
96 salaries
unlock blur

₹3.7 L/yr - ₹16.2 L/yr

Senior Software Engineer
49 salaries
unlock blur

₹8.3 L/yr - ₹29.5 L/yr

Business Analyst
19 salaries
unlock blur

₹6 L/yr - ₹18.2 L/yr

System Analyst
18 salaries
unlock blur

₹3.3 L/yr - ₹10 L/yr

Software Developer
12 salaries
unlock blur

₹4.5 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Forsys with

Yodlee

3.8
Compare

Fingent

4.2
Compare

Bravura Solutions

3.9
Compare

CloudMoyo

4.1
Compare
write
Share an Interview