Upload Button Icon Add office photos
Engaged Employer

i

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

Solid Systems Global Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 67 Reviews

Filter interviews by

Solid Systems Global Software Developer Interview Questions, Process, and Tips

Updated 30 Apr 2024

Solid Systems Global Software Developer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Types of Arrays?
  • Ans. 

    Types of arrays include one-dimensional arrays, multi-dimensional arrays, and jagged arrays.

    • One-dimensional arrays: stores elements in a single row or column.

    • Multi-dimensional arrays: stores elements in multiple rows and columns.

    • Jagged arrays: arrays of arrays, where each element can be an array of different sizes.

  • Answered by AI
  • Q2. Require_once and require
  • Q3. Migrations in Laravel
  • Ans. 

    Migrations in Laravel are used to manage database schema changes.

    • Migrations allow you to easily modify database structure using PHP code.

    • Each migration file represents a database change and can be rolled back if needed.

    • Migrations help in version control and collaboration among developers.

    • Example: php artisan make:migration create_users_table --create=users

  • Answered by AI
  • Q4. Middleware questions
  • Q5. Rest APIs and use
  • Ans. 

    Rest APIs are used to allow communication between different systems over HTTP.

    • Rest APIs are used to access and manipulate resources using standard HTTP methods like GET, POST, PUT, DELETE.

    • They are stateless, meaning each request from a client to a server must contain all the information necessary to understand the request.

    • Rest APIs use standard data formats like JSON or XML for data exchange.

    • They are widely used in web...

  • Answered by AI
  • Q6. MVC structure, explain it
  • Ans. 

    MVC is a software design pattern that separates an application into three main components: Model, View, and Controller.

    • Model: Represents the data and business logic of the application

    • View: Represents the UI components of the application

    • Controller: Acts as an intermediary between Model and View, handling user input and updating the Model accordingly

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Jul 2024.

Round 1 - Aptitude Test 

It was a basic filtering round based on aptitude.

Round 2 - Coding Test 

I had two medium-level LeetCode questions.

Round 3 - Technical 

(3 Questions)

  • Q1. During the interview, I was asked both HR and technical questions. Initially, I responded to technical inquiries regarding HTML, MongoDB, SQL, and JavaScript, as they were listed on my resume. After addres...
  • Q2. What are different types of tag in html and tags which do not require closing tag
  • Q3. Sql query for highest salary from list of employees table

Interview Preparation Tips

Interview preparation tips for other job seekers - For TCS (on-campus), we just need to pass through the initial round, as it is more difficult than the actual interview.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

An aptitude test is an assessment to measure a candidate mental aptitude/mental ability

Round 2 - Technical 

(3 Questions)

  • Q1. Can you briefly Tell us about yourself?
  • Q2. What do you consider to be your strongest points?
  • Q3. Which programming languages do you use regularly in your work
Round 3 - Group Discussion 

A group discussion is a structured conversation in which participants share their ideas, perspectives, and solutions on a specific topic.

Round 4 - HR 

(2 Questions)

  • Q1. What motivates you to seek employment at Wipro?
  • Q2. What are your long-term career goals?
Round 5 - Assignment 

Assignment details refer to the specifics of an assignment, including any documents and/or emails or subsequent correspondence between the company and the client.

Interview Preparation Tips

Topics to prepare for Wipro Software Developer interview:
  • Your academic achievement
  • Responsibility related to your p
  • The way you address mistakes at
Interview preparation tips for other job seekers - Reflect on the activities you enjoy and what brings you happiness, while also taking into account your skills and strengths.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Vardhaman College of Engineering, Mahaboobnagar and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was simple and basic questions were asked

Round 2 - Coding Test 

They gave us 3 codes out of which 2 should be written correct

Round 3 - Technical 

(2 Questions)

  • Q1. At first I was in trouble logging in due to there cookies specifications then finally panel member had accepted my joining request after waiting in the lobby for 3 and half hours. The approach was friend...
  • Q2. Machine learning types.

Interview Preparation Tips

Interview preparation tips for other job seekers - about project and the technologies used
then he asked me about some DSA based questions and about some situational judgement questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Refer to aptitude textbooks for easy and normal questions as anticipated.

Round 2 - Technical 

(1 Question)

  • Q1. How would you measure the stack space without using the task manager, when an application is running on a computer? Write an algorithm if possible!!!

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation is essential. It is important to take a deeper look into Data Structures and Algorithms (DSA) to attain a more profound knowledge of coding.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Asked About current Projects
  • Q2. Asked to code 2 problems
Round 2 - Technical 

(2 Questions)

  • Q1. Asked core java and microservices questions
  • Q2. Current project and my role
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It included all aptitude

Round 2 - Assignment 

Contains all pseudo questions related to DSA

Round 3 - Technical 

(6 Questions)

  • Q1. What is a class?
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • Defines the properties and behaviors of objects

    • Can be used to create multiple instances of objects

    • Encapsulates data and methods within a single unit

  • Answered by AI
  • Q2. What is an object?
  • Ans. 

    An object is a self-contained entity that consists of data and methods to manipulate that data.

    • Objects are instances of classes in object-oriented programming.

    • They have attributes (data) and methods (functions) to operate on the data.

    • Objects can interact with each other through method calls.

    • Example: In a car simulation program, a 'Car' object may have attributes like 'color' and 'speed', and methods like 'accelerate' a

  • Answered by AI
  • Q3. How the login page comes when clicks on some webpage icon like facebook?
  • Ans. 

    The login page is displayed when a user clicks on a webpage icon like Facebook by redirecting to a separate login page.

    • Clicking on the webpage icon triggers a redirect to the login page

    • The login page prompts the user to enter their credentials

    • After successful login, the user is redirected back to the original webpage

  • Answered by AI
  • Q4. DDL and DML commands
  • Q5. Polymorphism and method overriding?
  • Q6. Entire opps in java
  • Ans. 

    Object-oriented programming in Java involves creating classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for objects, defining attributes and behaviors.

    • Objects are instances of classes, representing real-world entities.

    • Inheritance allows a class to inherit attributes and methods from another class.

    • Polymorphism enables objects to be treated as instances of their parent class.

    • Encapsulat...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Indraprastha Institute of Information Technology (IIIT), Delhi and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

First round was Aptitude which was quite easy

Round 2 - Technical 

(2 Questions)

  • Q1. Resume bases Question
  • Q2. Question on OOPS
Round 3 - Technical 

(1 Question)

  • Q1. Resume and scenario based question
Round 4 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java and Python.

    • Experienced in Java and Python programming languages

    • Worked on developing web applications using Spring framework

    • Familiar with Agile development methodologies

  • Answered by AI
  • Q2. What challenges do you faced during your project and how you approached them
  • Ans. 

    I faced challenges with integrating third-party APIs and resolved them by thoroughly researching documentation and seeking help from colleagues.

    • Integrating third-party APIs required understanding complex documentation

    • Encountered issues with data formatting and authentication

    • Collaborated with team members to troubleshoot and find solutions

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Every single oops concepts
  • Q2. Every sql questions possiible
Round 2 - HR 

(2 Questions)

  • Q1. I attended only technical not yet results announced
  • Q2. I attended only technical not yet result announced
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Aptitude Test 

It was easy, had average difficulty . Basic english and aptitude was asked

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of computer fundamentals were asked in this round . OOPS , DBMS , SQL query etc. And 2 coding questions.
  • Q2. Another part was pychometric which is very very easy.
Round 3 - communication round 

(2 Questions)

  • Q1. Had to listen to audio and gave answer of the questions accordingly.
  • Q2. It test your ability of writing , speaking and listening .
Round 4 - Technical 

(2 Questions)

  • Q1. Techincal interview was focussed on project .
  • Q2. A little bit of easy DSA and basics of CS fundamentals.
Round 5 - HR 

(1 Question)

  • Q1. Project and interst

Solid Systems Global Interview FAQs

How many rounds are there in Solid Systems Global Software Developer interview?
Solid Systems Global interview process usually has 1 rounds. The most common rounds in the Solid Systems Global interview process are Technical.
What are the top questions asked in Solid Systems Global Software Developer interview?

Some of the top questions asked at the Solid Systems Global Software Developer interview -

  1. Migrations in Lara...read more
  2. MVC structure, explain...read more
  3. Types of Arra...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Solid Systems Global interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Solid Systems Global Software Developer Salary
based on 5 salaries
₹3.4 L/yr - ₹4.3 L/yr
52% less than the average Software Developer Salary in India
View more details
Customer Support Executive
13 salaries
unlock blur

₹1.6 L/yr - ₹4.4 L/yr

Technical Support Engineer
13 salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Team Lead
8 salaries
unlock blur

₹2.2 L/yr - ₹3.5 L/yr

Senior Associate
7 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Senior Technical Support Engineer
6 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Explore more salaries
Compare Solid Systems Global with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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