Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cyfuture Team. If you also belong to the team, you can get access from here

Cyfuture Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cyfuture Associate Software Engineer Interview Questions and Answers

Updated 9 Oct 2024

9 Interview questions

An Associate Software Engineer was asked 8mo ago
Q. Explain the Breadth-First Search (BFS) graph traversal algorithm.
Ans. 

BSF graph explanation

  • BFS (Breadth-First Search) is a graph traversal algorithm that explores all the neighbor nodes at the present depth before moving on to the nodes at the next depth.

  • It uses a queue data structure to keep track of the nodes to visit next.

  • BFS is often used to find the shortest path in an unweighted graph.

  • Example: BFS can be used to find the shortest path in a maze from the starting point to the e...

An Associate Software Engineer was asked 8mo ago
Q. What is the purpose of the final keyword in OOPs?
Ans. 

The final keyword in OOP is used to restrict the user from changing the value of a variable, overriding a method, or inheriting from a class.

  • Final variable: value cannot be changed once assigned

  • Final method: cannot be overridden in child classes

  • Final class: cannot be inherited by other classes

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
An Associate Software Engineer was asked 8mo ago
Q. What are the differences between StringBuilder and StringBuffer?
Ans. 

String builder is faster but not thread-safe, while string buffer is slower but thread-safe.

  • String builder is recommended for single-threaded applications for better performance.

  • String buffer is recommended for multi-threaded applications to ensure thread safety.

  • Example: StringBuilder sb = new StringBuilder(); StringBuffer sbf = new StringBuffer();

An Associate Software Engineer was asked
Q. What is the difference between an object and a constructor?
Ans. 

Object is an instance of a class with its own state and behavior, while constructor is a special method used to initialize objects.

  • Object is created from a class using the 'new' keyword.

  • Constructor is a special method with the same name as the class.

  • Object has its own state (attributes) and behavior (methods).

  • Constructor is used to initialize the state of an object when it is created.

  • Example: Class Car { construct...

An Associate Software Engineer was asked
Q. What is the difference between abstraction and encapsulation?
Ans. 

Abstraction focuses on hiding the implementation details while encapsulation focuses on bundling the data and methods that operate on the data into a single unit.

  • Abstraction is the concept of hiding the complex implementation details and showing only the necessary features of an object.

  • Encapsulation is the bundling of data and methods that operate on the data into a single unit.

  • Abstraction allows for creating simp...

An Associate Software Engineer was asked
Q. What is DBMS? Explain.
Ans. 

DBMS stands for Database Management System. It is a software system that allows users to define, create, maintain and control access to databases.

  • DBMS is a software system that manages databases.

  • It allows users to define, create, maintain, and control access to databases.

  • DBMS provides tools for data manipulation, retrieval, and security.

  • Examples of DBMS include MySQL, Oracle, SQL Server, and PostgreSQL.

An Associate Software Engineer was asked
Q. Diff between abstract class and interface Difference between array and array list Difference between method overloading and overriding Pillars of oops Deadlock Normalisation
Ans. 

Abstract class is a class with abstract methods, interface is a contract with only abstract methods. Array is fixed size, ArrayList is dynamic. Method overloading is same method with different parameters, overriding is redefining a method. OOP pillars are inheritance, encapsulation, polymorphism, abstraction. Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the ...

Are these interview questions helpful?
An Associate Software Engineer was asked
Q. What is four pillars of oops. What is array and vector. Implement queue using stack. Project based questions.
Ans. 

The four pillars of OOP are encapsulation, inheritance, polymorphism, and abstraction. Arrays are fixed-size data structures, while vectors are dynamic arrays. A queue can be implemented using two stacks.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Inheritance: Creating new classes based on existing classes, inheriting their attributes and methods.

  • Polymorphism: Objects of di...

An Associate Software Engineer was asked
Q. Four pillars of opps
Ans. 

The four pillars of object-oriented programming are encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Inheritance: Allowing a new class to inherit properties and behavior from an existing class.

  • Polymorphism: The ability for objects of different classes to respond to the same message.

  • Abstraction: Hiding the complex implemen...

Cyfuture Associate Software Engineer Interview Experiences

6 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy applitute question with 1 coding question at the end

Round 2 - Technical 

(3 Questions)

  • Q1. String builder vs string buffer
  • Ans. 

    String builder is faster but not thread-safe, while string buffer is slower but thread-safe.

    • String builder is recommended for single-threaded applications for better performance.

    • String buffer is recommended for multi-threaded applications to ensure thread safety.

    • Example: StringBuilder sb = new StringBuilder(); StringBuffer sbf = new StringBuffer();

  • Answered by AI
  • Q2. Final keyword in oops
  • Ans. 

    The final keyword in OOP is used to restrict the user from changing the value of a variable, overriding a method, or inheriting from a class.

    • Final variable: value cannot be changed once assigned

    • Final method: cannot be overridden in child classes

    • Final class: cannot be inherited by other classes

  • Answered by AI
  • Q3. Bsf graph explanation
  • Ans. 

    BSF graph explanation

    • BFS (Breadth-First Search) is a graph traversal algorithm that explores all the neighbor nodes at the present depth before moving on to the nodes at the next depth.

    • It uses a queue data structure to keep track of the nodes to visit next.

    • BFS is often used to find the shortest path in an unweighted graph.

    • Example: BFS can be used to find the shortest path in a maze from the starting point to the exit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

Skills evaluated in this interview

Associate Software Engineer Interview Questions & Answers

user image Krishna Raj BT20EE025

posted on 9 Oct 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

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

It was online assessment

Round 3 - Technical 

(5 Questions)

  • Q1. Questions were mainly from oops c++ and database management
  • Q2. What is four pillars of oops. What is array and vector. Implement queue using stack. Project based questions.
  • Ans. 

    The four pillars of OOP are encapsulation, inheritance, polymorphism, and abstraction. Arrays are fixed-size data structures, while vectors are dynamic arrays. A queue can be implemented using two stacks.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Creating new classes based on existing classes, inheriting their attributes and methods.

    • Polymorphism: Objects of differe...

  • Answered by AI
  • Q3. Four pillars of opps
  • Ans. 

    The four pillars of object-oriented programming are encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a new class to inherit properties and behavior from an existing class.

    • Polymorphism: The ability for objects of different classes to respond to the same message.

    • Abstraction: Hiding the complex implementatio...

  • Answered by AI
  • Q4. What is dbms explain
  • Ans. 

    DBMS stands for Database Management System. It is a software system that allows users to define, create, maintain and control access to databases.

    • DBMS is a software system that manages databases.

    • It allows users to define, create, maintain, and control access to databases.

    • DBMS provides tools for data manipulation, retrieval, and security.

    • Examples of DBMS include MySQL, Oracle, SQL Server, and PostgreSQL.

  • Answered by AI
  • Q5. What isSQL.and some queries

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2023. 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 - Coding Test 

There was an OA which comprised of Aptitude questions, as well as Technical questions. And, there was a single coding question(Basic level)

Round 3 - Technical 

(2 Questions)

  • Q1. This round was with the CTO of the company and manager, and CHRO of the company. Questions related to project were asked.
  • Q2. Tell me something that is not there in your resume. Describe any one of your project in detail What is S3 architecture? Difference between GET and POST Describe HTTP Response

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed with your projects and hackathon experience is good to have. No matter you won or lost in hackathon, describe your experience about building something different and unique from scratch. Don't just copy-paste projects from yt. Recruiters will hate it. Try to add unique projects to your resume.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Quant, logical reasoning, mathematics

Round 3 - Technical 

(2 Questions)

  • Q1. Access modifiers
  • Q2. Diff between abstract class and interface Difference between array and array list Difference between method overloading and overriding Pillars of oops Deadlock Normalisation
  • Ans. 

    Abstract class is a class with abstract methods, interface is a contract with only abstract methods. Array is fixed size, ArrayList is dynamic. Method overloading is same method with different parameters, overriding is redefining a method. OOP pillars are inheritance, encapsulation, polymorphism, abstraction. Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the other...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2023. 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 

It contains 60 questions solve in 60 minutes and 1 coding questions simply debug extra 15 minutes are given

Round 3 - Technical 

(1 Question)

  • Q1. 7 to 8 minut google meet technical interview about your project, sql and basics of your main language
Round 4 - HR 

(1 Question)

  • Q1. It just normal interview
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

Easy level questions

Round 3 - Technical 

(2 Questions)

  • Q1. Difference between object and constructor?
  • Ans. 

    Object is an instance of a class with its own state and behavior, while constructor is a special method used to initialize objects.

    • Object is created from a class using the 'new' keyword.

    • Constructor is a special method with the same name as the class.

    • Object has its own state (attributes) and behavior (methods).

    • Constructor is used to initialize the state of an object when it is created.

    • Example: Class Car { constructor(ma...

  • Answered by AI
  • Q2. Difference between abstraction and encapsulation?
  • Ans. 

    Abstraction focuses on hiding the implementation details while encapsulation focuses on bundling the data and methods that operate on the data into a single unit.

    • Abstraction is the concept of hiding the complex implementation details and showing only the necessary features of an object.

    • Encapsulation is the bundling of data and methods that operate on the data into a single unit.

    • Abstraction allows for creating simple in...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Cyfuture?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java and advanced Java

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through an organisation, there were 5 rounds of interview.
1. Aptitude test(written):30 MCQ. Quants, Logical reasoning and vocabulary.
2. Java written test: 20 MCQ and 2 codes.
Questions are about Oops, collection,
Exceptionn and Threads. (Medium level).
Programs are based on Strings and Arrays.
3. Technical Interview 1: Mainly they used to
ask based on your Resume. You should
have very good understanding of SQL, core Java and Advance Java concepts. If you know JavaScript it's then a bit advantageous.
You should have good coding skills, they might ask you write another logic of your program written in Java written test.

4. Technical round 2 : It's all about advanced Java concepts like Jdbc, servlets, JSP, Hibernate and Springs.
5. Managerial cum HR round: Technical questions based on your resume. Normal Hr questions.

It's my honest interview experience with JMR. Interview process took one week. I got offer letter.
Good luck...😊
Are these interview questions helpful?

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

I applied via Campus Placement and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Oops concepts, database and SQL queries .
  • Q2. Example, what is method overloading, constructor, normalisation.
  • Ans. 

    Method overloading, constructor, and normalization are all concepts in software development.

    • Method overloading allows multiple methods with the same name but different parameters.

    • A constructor is a special method used to initialize objects.

    • Normalization is the process of organizing data in a database to reduce redundancy and improve efficiency.

  • Answered by AI
  • Q3. Shallow copy,deep copy.
  • Q4. Inheritance and its type
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • Types of inheritance: single, multiple, multilevel, hierarchical, hybrid

    • Single inheritance: A derived class inherits from a single base class

    • Multiple inheritance: A derived class inherits from multiple base classes

    • Multilevel inheritance: A derived class inherits from a base class, which in turn inherits from another base class

    • Hierarch...

  • Answered by AI
  • Q5. Data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Do focus on oops concepts and trying ever to give short and satisfaction answer not should to make story.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 4 interview rounds.

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

Intermediate aptitude questions .
No negative marking .
Written test held at JMR infotech

Round 3 - Technical 

(1 Question)

  • Q1. Mcq and coding questions . Mostly from Java and spring . Coding question is from Array and String (Find frequency )
Round 4 - One-on-one 

(1 Question)

  • Q1. After the written test, face to face interview on technical and hr will be there .

Cyfuture Interview FAQs

How many rounds are there in Cyfuture Associate Software Engineer interview?
Cyfuture interview process usually has 3 rounds. The most common rounds in the Cyfuture interview process are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in Cyfuture Associate Software Engineer interview?

Some of the top questions asked at the Cyfuture Associate Software Engineer interview -

  1. What is four pillars of oops. What is array and vector. Implement queue using s...read more
  2. Diff between abstract class and interface Difference between array and array li...read more
  3. Difference between object and construct...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 6 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more

Interview Questions from Similar Companies

Revature Interview Questions
3.6
 • 42 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
ARMSOFTECH.AIR Interview Questions
3.3
 • 25 Interviews
View all
Cyfuture Associate Software Engineer Salary
based on 25 salaries
₹4 L/yr - ₹6 L/yr
7% less than the average Associate Software Engineer Salary in India
View more details

Cyfuture Associate Software Engineer Reviews and Ratings

based on 6 reviews

2.2/5

Rating in categories

1.7

Skill development

1.6

Work-life balance

1.9

Salary

2.3

Job security

1.8

Company culture

1.9

Promotions

1.8

Work satisfaction

Explore 6 Reviews and Ratings
Customer Care Executive
265 salaries
unlock blur

₹1.1 L/yr - ₹4 L/yr

Cce Executive
138 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Software Developer
48 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Team Lead
45 salaries
unlock blur

₹1.9 L/yr - ₹5.4 L/yr

CCE
30 salaries
unlock blur

₹1.4 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Cyfuture with

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

ARMSOFTECH.AIR

3.3
Compare

Saama Technologies

3.7
Compare
write
Share an Interview