Upload Button Icon Add office photos

Filter interviews by

ACT Fibernet Java Developer Interview Questions and Answers

Updated 4 Feb 2023

ACT Fibernet Java Developer Interview Experiences

1 interview found

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

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Why you want to change the company
  • Q3. Why you left your previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics hr round and java oops questions.aaaaaaaaaa

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Memory management in java 8
  • Ans. 

    Java 8 introduced improvements in memory management with features like Metaspace and G1 garbage collector.

    • Java 8 introduced Metaspace to replace the PermGen space for class metadata storage.

    • G1 garbage collector in Java 8 improves garbage collection performance by dividing the heap into regions.

    • Java 8 also introduced the concept of String deduplication to reduce memory usage for String objects.

  • Answered by AI
  • Q2. CQRS pattern in microservices
  • Ans. 

    CQRS pattern separates read and write operations in microservices for better scalability and performance.

    • CQRS stands for Command Query Responsibility Segregation

    • It separates the read and write operations in microservices

    • Write operations update the data, while read operations retrieve the data

    • Helps in improving scalability and performance by optimizing for each operation type

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to pull the large amount of data in spring data jpa
  • Ans. 

    To pull large amount of data in Spring Data JPA, use pagination, lazy loading, and query optimization techniques.

    • Use pagination to limit the amount of data retrieved in each query

    • Implement lazy loading to fetch data only when needed

    • Optimize queries by using indexes, avoiding N+1 query problem, and fetching only necessary columns

  • Answered by AI
  • Q2. Write singleton class
  • Ans. 

    Singleton class ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private static instance of the class

    • Provide a private constructor to prevent instantiation

    • Create a public static method to access the instance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2023. There were 2 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 - Technical 

(2 Questions)

  • Q1. How to make a new products
  • Ans. 

    To make a new product, conduct market research, identify customer needs, develop a prototype, test it, gather feedback, and iterate.

    • Conduct market research to identify gaps in the market and customer needs

    • Develop a prototype of the product based on the research findings

    • Test the prototype with a focus group or beta testers to gather feedback

    • Iterate on the product based on the feedback received to improve its features an

  • Answered by AI
  • Q2. How to the growth the company

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing special
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 3 interview rounds.

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 

(2 Questions)

  • Q1. Asking related to java, and good knowledge of Oops concepts
  • Q2. Basic java program
Round 3 - PM 

(2 Questions)

  • Q1. Asking past project and technology that you are using
  • Q2. API related question like rest, sop

I applied via Company Website and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Oops, singleton, api, array problems, logical part, springboot, hibernate

Round 2 - Technical 

(2 Questions)

  • Q1. Hibernate coding, sessionFactory, git, maven, oops concepts, multithreading, synchronisation, String
  • Q2. Introduction about yourself, project flow, why do you want to switch
  • Ans. 

    I am a Java Developer with experience in project flow and looking to switch for new challenges.

    • I have been working as a Java Developer for the past 5 years.

    • I have experience in developing and maintaining Java applications.

    • I am familiar with the project flow and have worked on various stages of software development life cycle.

    • I am seeking new opportunities to enhance my skills and work on challenging projects.

    • I am looki...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared if you want to join because this is nice company
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql related ques mege into, rank,dense rank,queries of joins etc.
  • Q2. Java 8 related ques optional and stream
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

1st round some apt qns,some prgramming qns are they asked

Round 2 - One-on-one 

(1 Question)

  • Q1. C depth concepts and some prgram
Round 3 - Technical 

(1 Question)

  • Q1. Some DSA questions they asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Reverse a linked list.
  • Q2. Merge sort on a array/
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to handle exception?
  • Ans. 

    Handle exceptions by using try-catch blocks to gracefully manage errors in code execution.

    • Use try-catch blocks to catch exceptions and handle them appropriately.

    • Throw custom exceptions when necessary to provide more specific error information.

    • Use finally block to execute code that should always run, regardless of whether an exception is thrown.

    • Avoid catching generic exceptions like Exception class, instead catch specif...

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

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows for code reusability by creating a new class based on an existing class

    • Derived class inherits properties and behaviors of the base class

    • Supports the 'is-a' relationship, where a derived class is a specialized version of the base class

  • Answered by AI

Skills evaluated in this interview

ACT Fibernet Interview FAQs

How many rounds are there in ACT Fibernet Java Developer interview?
ACT Fibernet interview process usually has 2 rounds. The most common rounds in the ACT Fibernet interview process are Resume Shortlist and HR.
How to prepare for ACT Fibernet Java Developer 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 ACT Fibernet. The most common topics and skills that interviewers at ACT Fibernet expect are Java, Hibernate, Spring, Spring Boot and Javascript.

Tell us how to improve this page.

ACT Fibernet Java Developer Salary
based on 4 salaries
₹3.9 L/yr - ₹4 L/yr
31% less than the average Java Developer Salary in India
View more details
Network Engineer
1.2k salaries
unlock blur

₹1.5 L/yr - ₹5.2 L/yr

Senior Network Engineer
561 salaries
unlock blur

₹2.1 L/yr - ₹6 L/yr

Team Lead
347 salaries
unlock blur

₹3 L/yr - ₹8.4 L/yr

Senior Executive
306 salaries
unlock blur

₹1.9 L/yr - ₹6 L/yr

Sales Executive
213 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Explore more salaries
Compare ACT Fibernet with

Hathway

3.5
Compare

Bharti Airtel

4.0
Compare

Jio

3.9
Compare

Tata Play Fiber

4.1
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