Upload Button Icon Add office photos

Filter interviews by

Furious Computer Solutions Senior Technical Lead Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Virtual round only
Round 2 - Technical 

(1 Question)

  • Q1. Virtual round only
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Tell me about Spring Boot Annotation? And, also tell me other annotation which you used in yuor project.
  • Q2. What is containerization (Docker)? what are steps to create container, till it gets deploy on server.
  • Ans. 

    Containerization is a lightweight, portable, and self-sufficient way to package applications and their dependencies.

    • Create a Dockerfile with instructions on how to build the container

    • Build the Docker image using the Dockerfile

    • Run the Docker image to create a container

    • Deploy the container on a server using Docker Engine

  • Answered by AI
  • Q3. What is Elastic Kubernetes Service?
  • Ans. 

    Elastic Kubernetes Service (EKS) is a managed Kubernetes service provided by AWS.

    • Fully managed Kubernetes service

    • Automatically scales based on workload

    • Integrates with other AWS services like EC2, S3, and IAM

  • Answered by AI
  • Q4. You had mentioned Message Queue, can you explain why MQ is used? And, how you implemented in your application?
  • Q5. What is cloud watch? and how it works.
  • Ans. 

    CloudWatch is a monitoring and management service provided by AWS to monitor resources and applications in the cloud.

    • CloudWatch collects and tracks metrics, logs, and events from various AWS services and resources.

    • It provides real-time monitoring, alerting, and dashboards to help users visualize and understand their cloud environment.

    • Users can set up alarms to notify them of changes in their environment or resource usa...

  • Answered by AI
  • Q6. Features added in Java 11 from Java 8?
  • Ans. 

    Java 11 introduced several new features and enhancements compared to Java 8.

    • Local-Variable Syntax for Lambda Parameters

    • HTTP Client API (standardized in java.net.http package)

    • Nest-Based Access Control

    • Dynamic Class-File Constants

    • Epsilon: A No-Op Garbage Collector

    • Flight Recorder

    • ZGC: A Scalable Low-Latency Garbage Collector

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Senior Technical Lead interview:
  • Kubernetes
  • Docker
  • Devops
  • Java
  • Spring Boot
  • MQ
  • Java 11
Interview preparation tips for other job seekers - Be prepared, as interviewer can go out of scope then what is mentioned in JD.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is the difference between call_form, open_form and new form in Oracle forms 12c?
  • Ans. 

    call_form is used to call a form module from another form module, open_form is used to open a form module in a new window, and new_form is used to open a new form module in the same window.

    • call_form is used to call a form module from another form module

    • open_form is used to open a form module in a new window

    • new_form is used to open a new form module in the same window

  • Answered by AI
  • Q2. What is difference between forms personalization & customization in Oracle form 12c.
  • Ans. 

    Forms personalization allows users to customize their own forms without modifying the underlying code, while customization involves making changes to the form's code.

    • Forms personalization is done by end users without technical knowledge.

    • Customization involves modifying the form's code by developers.

    • Forms personalization is limited to changing the behavior of existing form elements.

    • Customization allows for more extensiv...

  • Answered by AI
  • Q3. Mention trigger firing sequence in oracle forms 12c.
  • Ans. 

    Trigger firing sequence in Oracle Forms 12c involves pre-insert, pre-update, pre-delete, post-insert, post-update, and post-delete triggers.

    • Pre-insert trigger fires before a new record is inserted.

    • Pre-update trigger fires before an existing record is updated.

    • Pre-delete trigger fires before a record is deleted.

    • Post-insert trigger fires after a new record is inserted.

    • Post-update trigger fires after an existing record is ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Pure Technical based on data engineering
  • Q2. What is data skewness. How you ahve resolved it.
  • Ans. 

    Data skewness refers to the imbalance in the distribution of data values within a dataset.

    • Data skewness occurs when certain values or categories appear more frequently than others in a dataset.

    • It can lead to performance issues in data processing and analysis.

    • To resolve data skewness, techniques like data partitioning, shuffling, and using appropriate algorithms can be employed.

    • For example, in a dataset of customer tran...

  • Answered by AI
  • Q3. What is output of below query based on all 4 joins
  • Ans. 

    The output of the query will depend on the specific data in the tables being joined.

    • The result will be a combination of data from all 4 tables based on the join conditions specified in the query.

    • Make sure to check for any filtering conditions in the query that may limit the output.

    • The final result will include columns from all 4 tables, with rows that meet the join criteria.

  • Answered by AI

Skills evaluated in this interview

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 Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Normal informatica question and how to manage teams
  • Q2. Normal informatica question with SQL . and few team management questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the product life cycle?
  • Q2. Conpt to end of the life cycle
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is Virtual Dom? How it works?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM in memory, used for efficient updates and rendering in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the UI, the Virtual DOM is updated instead of the actual DOM.

    • The Virtual DOM is then compared to the actual DOM, and only the differences are applied to the ...

  • Answered by AI
  • Q2. How browser interpret JSX
  • Ans. 

    Browser interprets JSX by transforming it into regular JavaScript using a transpiler like Babel.

    • JSX is not directly understood by browsers, so it needs to be transpiled into regular JavaScript

    • Babel is a popular transpiler used to convert JSX into JavaScript

    • The transpiled JavaScript code is then executed by the browser

  • Answered by AI
  • Q3. Array filter and map
Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to leave?
  • Q2. Whats your expectation?

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Fact Table Vs Fact
  • Ans. 

    Fact table is a table in a data warehouse that stores quantitative data, while fact is a piece of information that is known to be true.

    • Fact table is used in data warehousing to store quantitative data related to business processes.

    • Fact is a piece of information that is known to be true, such as a scientific fact or a historical fact.

    • Fact tables are used to support data analysis and decision-making, while facts are used...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - People without IICS knowledge are Solution architect
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design batch which creates and sends report
  • Ans. 

    Design a batch process to create and send reports

    • Create a script to generate the report based on specified criteria

    • Schedule the script to run at regular intervals using a batch scheduler like cron

    • Configure the script to send the report via email or save it to a shared location

    • Include error handling and logging in the batch process

  • Answered by AI
  • Q2. Explain Spring Lifecycle
  • Ans. 

    Spring Lifecycle is a series of steps that a Spring bean goes through from initialization to destruction.

    • 1. Initialization phase: Bean is instantiated, dependencies are injected, and any initialization methods are called.

    • 2. In use phase: Bean is used by the application.

    • 3. Destruction phase: Bean is destroyed, any cleanup methods are called.

    • 4. Post-processor phase: Additional processing can be done before or after initi...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain DB structure
  • Ans. 

    DB structure refers to the organization of data in a database, including tables, relationships, and constraints.

    • DB structure includes tables, columns, relationships, indexes, and constraints.

    • Tables store data in rows and columns.

    • Columns define the type of data that can be stored in a table.

    • Relationships define how tables are connected to each other.

    • Indexes improve the performance of database queries.

    • Constraints enforce...

  • Answered by AI
  • Q2. Write a code to get unique numbers from array
  • Ans. 

    Code to get unique numbers from array of strings

    • Convert array of strings to array of integers

    • Use a Set to store unique numbers

    • Convert Set back to array if needed

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Why we use coding part?
  • Ans. 

    Coding is used to create software programs and applications.

    • Coding allows us to instruct computers to perform specific tasks.

    • It helps in automating processes and solving complex problems.

    • Coding enables the development of software that powers various industries.

    • It allows for customization and flexibility in creating solutions.

    • Coding is essential for creating websites, mobile apps, and software systems.

    • Examples: Writing ...

  • Answered by AI
  • Q2. Where you are used code ... Why?
  • Ans. 

    I have used code in various projects and industries, including finance, e-commerce, and healthcare.

    • Finance: Developed trading algorithms and risk management systems.

    • E-commerce: Built online shopping platforms and payment gateways.

    • Healthcare: Created electronic medical record systems and medical imaging software.

  • Answered by AI
  • Q3. What is the use of that project?... What is your role in that?
Round 2 - HR 

(2 Questions)

  • Q1. Any one know in this company?
  • Q2. CTC not a issue, we are always first in Global Market. Are you ok?
  • Ans. 

    Yes, I am okay with CTC not being an issue as long as we are leading in the global market.

    • I prioritize being part of a successful and globally competitive company over CTC.

    • I believe in the importance of contributing to a company's growth and success.

    • I am motivated by the opportunity to work on challenging projects and make a significant impact.

    • I value the recognition and reputation that comes with being part of a leadi...

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Compare Furious Computer Solutions with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview