Upload Button Icon Add office photos

Filter interviews by

Strides Software Solutions Interview Questions and Answers

Updated 14 Oct 2021

Strides Software Solutions Interview Experiences

1 interview found

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

Interview Questionnaire 

2 Questions

  • Q1. About Collection Framework
  • Q2. What is retrofit and how it integrate in Android
  • Ans. 

    Retrofit is a type-safe HTTP client for Android and Java.

    • Retrofit simplifies the process of sending network requests in Android apps

    • It converts HTTP API into a Java interface

    • It uses annotations to describe HTTP requests

    • It supports various serialization formats like JSON, XML, etc.

    • It integrates easily with other libraries like OkHttp and RxJava

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good and very hard because technical person ask very difficult questions based on your experience.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (225)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 2 technical rounds, 1 psychometric test, then Manager and HR rounds, basic question on java 7 and java 8,interface and class, DS questions like linkedList reverse and adding nodes to linkedList, Hashmap, ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics should be clear and brushed up, be calm and confident while giving your answers.

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All related to project worked on wlan testing and networking concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall Good.
They gave taken 3 technical and 1hr round

I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts

Intern Interview Questions & Answers

QAD user image Anonymous

posted on 29 Jan 2023

Interview experience
4
Good
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 - Aptitude Test 

Reasoning, Technical questions are asked. 1 hours test is conducted.

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on a database, programming, OOPS concept, etc Also, they will ask questions about ERP
  • Q2. Do you know any ERP software?
  • Ans. 

    Yes, I know ERP software.

    • I have experience working with SAP ERP software.

    • I am familiar with Oracle ERP Cloud and Microsoft Dynamics 365.

    • I have also worked with open-source ERP software like Odoo and ERPNext.

    • I understand the basic functionalities of ERP software like finance, inventory management, and human resources.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Your intro and sometime they will ask what you know about QAD

Interview Preparation Tips

Interview preparation tips for other job seekers - Read about QAD, what product they have. Get an idea about ERP software, why and where they are used.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was easy basic questions were there and we were asked to write two emails.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to projects
  • Q2. QBasic SQL questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Discussion on experience and current role and responsibilities

Round 2 - Technical 

(2 Questions)

  • Q1. 1. Discuss one past project
  • Q2. 2. Design a job scheduler
  • Ans. 

    A job scheduler is a software application that manages the scheduling of tasks or jobs to be executed by a computer system.

    • Define the job scheduling requirements such as priority, deadline, resource constraints, etc.

    • Implement a scheduling algorithm like First Come First Serve, Shortest Job First, Round Robin, etc.

    • Maintain a queue of jobs to be executed and allocate resources accordingly.

    • Monitor job execution and handle...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Find in rotated sorted array
  • Ans. 

    Search for a target value in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Determine which half of the array the target value lies in based on the pivot point.

    • Continue binary search in the appropriate half of the array to find the target value.

  • Answered by AI
  • Q2. Design IMDB. how will you manage concurrent ratings
  • Ans. 

    Design IMDB with concurrent ratings management

    • Implement a locking mechanism to ensure only one user can update a rating at a time

    • Use a queue system to handle multiple rating requests in an orderly manner

    • Consider using distributed systems to handle high concurrency levels

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design vehicle rental system. Api design
  • Ans. 

    Design a vehicle rental system API

    • Create endpoints for listing available vehicles, booking a vehicle, and returning a vehicle

    • Include authentication and authorization mechanisms for users and admins

    • Implement payment gateway integration for processing rental payments

    • Include features like vehicle search, filtering, and reviews/ratings

    • Consider scalability and performance optimizations for handling high traffic

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Basic C language question like what is pointer ,Array,structure,Call by reference, Difference between union and structure. Some programming question are prime number,factorial,fabonacci series,strings etc

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good first of all learn every basic programming question and some times it also depend on interviewer

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1) What is volatile? 2) What is constant? 3) Can we use volatile and const at a time?4) What is ISR how it works?
  • Ans. 

    Answers to questions related to software engineering concepts.

    • Volatile is a keyword used to indicate that a variable's value can be changed unexpectedly.

    • Constant is a keyword used to indicate that a variable's value cannot be changed once it is assigned.

    • Volatile and const can be used together to indicate that a variable's value cannot be changed and that it may change unexpectedly.

    • ISR stands for Interrupt Service Routi...

  • Answered by AI
  • Q2. What is pointer? Explain dangling pointer, null pointer, void pointer.
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. Dangling, null, and void pointers are types of pointers.

    • Dangling pointer: a pointer that points to a memory location that has been deallocated or freed

    • Null pointer: a pointer that does not point to any memory location

    • Void pointer: a pointer that has no specific data type and can point to any data type

  • Answered by AI
  • Q3. Storage classes explain all the storage classes in c.
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • auto: default storage class for local variables

    • register: stores variables in CPU registers for faster access

    • static: retains value between function calls

    • extern: used to access global variables across multiple files

  • Answered by AI
  • Q4. Compilation stages.
  • Q5. Projects done at previous company with clear explanation.
  • Q6. CAN, SPI, I2C, UART differences.
  • Q7. Explain CAN data frame.
  • Ans. 

    CAN data frame is a message format used in Controller Area Network (CAN) protocol.

    • CAN data frame consists of 7 fields: Start of Frame (SOF), Arbitration ID, Control Bits, Data Length Code (DLC), Data Field, Cyclic Redundancy Check (CRC), and End of Frame (EOF).

    • The Arbitration ID field is used to identify the message priority and the source of the message.

    • The Data Field can contain up to 8 bytes of data.

    • The CRC field is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through whatever things you have kept on your resume. Go through the project. Practice C as much as possible most of the questions will be asked on C programming.

Skills evaluated in this interview

Strides Software Solutions Interview FAQs

How to prepare for Strides Software Solutions 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 Strides Software Solutions. The most common topics and skills that interviewers at Strides Software Solutions expect are C#, VB.NET, Business Development, Customer Satisfaction and Database Administration.
What are the top questions asked in Strides Software Solutions interview?

Some of the top questions asked at the Strides Software Solutions interview -

  1. What is retrofit and how it integrate in Andr...read more
  2. About Collection Framew...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Ichhapurti.com Interview Questions
2.3
 • 19 Interviews
Idfy Interview Questions
3.5
 • 15 Interviews
QAD Interview Questions
3.9
 • 12 Interviews
View all

Strides Software Solutions Reviews and Ratings

based on 18 reviews

3.1/5

Rating in categories

3.6

Skill development

3.0

Work-life balance

2.9

Salary

3.6

Job security

2.5

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 18 Reviews and Ratings
Software Developer
8 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

Junior Software Developer
7 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Software Engineer
6 salaries
unlock blur

₹3 L/yr - ₹5.2 L/yr

Softwaretest Engineer
5 salaries
unlock blur

₹2.2 L/yr - ₹3.6 L/yr

Implementation Executive
5 salaries
unlock blur

₹0.9 L/yr - ₹2.4 L/yr

Explore more salaries
Compare Strides Software Solutions with

Yalamanchili Software Exports

3.3
Compare

ScoreMe Solutions

4.3
Compare

Xtancia Technosoft

4.0
Compare

Global Edge Software

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