Upload Button Icon Add office photos

Filter interviews by

Accord Software & Systems Software Engineer Trainee Interview Questions and Answers

Updated 26 Aug 2023

Accord Software & Systems Software Engineer Trainee Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Feb 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Oops Concepts, Coding Merging Arrays
  • Q2. Reverseg String, Function to Search Element in Linked list
  • Ans. 

    Reverse a string using a loop or built-in function. Search for an element in a linked list using traversal.

    • To reverse a string, you can use a loop to iterate through the characters and build a new string in reverse order.

    • To search for an element in a linked list, you can traverse the list starting from the head node and compare each node's value with the target element.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Nov 2024.

Round 1 - Aptitude Test 

The aptitude round includes calendar-related problems and basics maths.

Round 2 - Coding Test 

Array and string based coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Technical skill review
Round 4 - HR 

(1 Question)

  • Q1. General questions about willingness to relocate.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA, SQL, Problem Solving, Technical, Data Structures and Algorithms

Round 2 - Technical 

(2 Questions)

  • Q1. Write an SQL Query for retrieving something
  • Ans. 

    SQL query to retrieve data from a database

    • Use SELECT statement to specify the columns to retrieve

    • Use FROM clause to specify the table to retrieve data from

    • Use WHERE clause to filter the results based on conditions

  • Answered by AI
  • Q2. Write a program to achieve something
  • Ans. 

    Program to sort an array of integers in ascending order

    • Use a sorting algorithm like bubble sort, selection sort, or insertion sort

    • Iterate through the array and compare adjacent elements to swap if necessary

    • Repeat the process until the array is sorted

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. DSA Array, String and Hashmap questions
  • Q2. Functional programming java questions
Round 2 - Technical 

(5 Questions)

  • Q1. Spring and spring boot related
  • Q2. HLD scenario level questions
  • Q3. SQL queries nested and joins
  • Q4. DB related questions and experience level questions and previous project situations related questions
  • Q5. Security level questions like XSS vulnerability and SQL injection
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Simple GET, POST Flask Application?
  • Q2. Assign Values to a Cookie - Flask Application
Round 2 - Coding Test 

- Convert a given input of keys-values to value-keys using Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Know Python well, Solve some DSA problems
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Fair and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Introducing your self and project
  • Q2. Severity and priority
  • Q3. Smoke and sanity testing
  • Q4. Scenario base question if find bug before release

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all manual testing type question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. TCP/IP related questions, what happens when you search a webpage?
  • Q2. Past projects discussions
Round 3 - HR 

(1 Question)

  • Q1. Behavioural questions on how would you tackle a particular scenario
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. My expertise are in golang. And all the questions were straight forward around golang.
  • Q2. What is concurrency. How to check performance of applications. How to handle concurrency. How many no of goroutines can be created and so on.
  • Ans. 

    Concurrency is the ability of a system to run multiple tasks simultaneously. Performance of applications can be checked using profiling tools. Concurrency can be handled using synchronization techniques like mutexes and channels.

    • Concurrency allows multiple tasks to run concurrently, improving performance and responsiveness.

    • Performance of applications can be checked using profiling tools like Go's built-in 'pprof' packa...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How to make sure there are no vulnerabilities. What engineering principles you follow.
  • Ans. 

    To ensure no vulnerabilities, follow secure coding practices, conduct regular security audits, use encryption, and stay updated on security threats.

    • Follow secure coding practices such as input validation, output encoding, and parameterized queries.

    • Conduct regular security audits to identify and address vulnerabilities in the code.

    • Use encryption to protect sensitive data in transit and at rest.

    • Stay updated on security t...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic OOP questions for python programming language

Round 2 - HR 

(2 Questions)

  • Q1. What's abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows users to focus on what an object does instead of how it does it

    • It helps in reducing complexity and improving efficiency in software development

    • Example: In object-oriented programming, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI
  • Q2. What's the difference between SQL and NoSQL database
  • Ans. 

    SQL databases are relational databases with structured data, while NoSQL databases are non-relational databases with flexible, unstructured data.

    • SQL databases use structured query language for defining and manipulating data, while NoSQL databases use different query languages or APIs.

    • SQL databases are table-based, with a predefined schema, while NoSQL databases are document, key-value, wide-column, or graph-based.

    • SQL d...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. Implement binary search algorithm
  • Ans. 

    Binary search algorithm efficiently finds the target value in a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the mid index and compare the target value with the value at mid.

    • If target is less than mid value, update high to mid-1; if greater, update low to mid+1.

    • Repeat until target is found or low is greater than high.

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

(2 Questions)

  • Q1. Brief Introduction and basic questions
  • Q2. Future plans and how am i going to achieve them

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Projects worked on
  • Q2. Coding leetcode easy/medium questions
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself

Accord Software & Systems Interview FAQs

How many rounds are there in Accord Software & Systems Software Engineer Trainee interview?
Accord Software & Systems interview process usually has 2 rounds. The most common rounds in the Accord Software & Systems interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in Accord Software & Systems Software Engineer Trainee interview?

Some of the top questions asked at the Accord Software & Systems Software Engineer Trainee interview -

  1. Reverseg String, Function to Search Element in Linked l...read more
  2. Oops Concepts, Coding Merging Arr...read more

Tell us how to improve this page.

Accord Software & Systems Software Engineer Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Accord Software & Systems Software Engineer Trainee Salary
based on 16 salaries
₹3.3 L/yr - ₹4.2 L/yr
14% less than the average Software Engineer Trainee Salary in India
View more details

Accord Software & Systems Software Engineer Trainee Reviews and Ratings

based on 4 reviews

1.0/5

Rating in categories

1.1

Skill development

1.0

Work-life balance

2.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
217 salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Senior Software Engineer
67 salaries
unlock blur

₹4.7 L/yr - ₹14.5 L/yr

Senior Systems Engineer
47 salaries
unlock blur

₹4.2 L/yr - ₹12 L/yr

System Engineer
43 salaries
unlock blur

₹3.3 L/yr - ₹10.1 L/yr

Technical Lead
25 salaries
unlock blur

₹7.6 L/yr - ₹13.6 L/yr

Explore more salaries
Compare Accord Software & Systems with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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