Upload Button Icon Add office photos
Engaged Employer

i

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

SightSpectrum Technology Solutions Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 117 Reviews

Filter interviews by

SightSpectrum Technology Solutions Software Engineer Trainee Interview Questions and Answers

Updated 30 Jun 2023

SightSpectrum Technology Solutions Software Engineer Trainee Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Group Discussion 

Impacts of social media , impacts of online classes, impacts current trends

Round 2 - HR 

(5 Questions)

  • Q1. Introduction,basic oops concepts, html,css,sql
  • Q2. SQL, java , python, c, Html
  • Q3. Java basics with oops concepts
  • Q4. Group discussion with current trends
  • Q5. Introduction, final year project

Interview Preparation Tips

Topics to prepare for SightSpectrum Technology Solutions Software Engineer Trainee interview:
  • Group discussion
Interview preparation tips for other job seekers - Very nice very nice very grateful very comfortable

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Testing in React
  • Q2. Redux, Async Thunk
Round 2 - Coding Test 

- Test Cases
- Redux

Interview Preparation Tips

Topics to prepare for Brillio Software Developer interview:
  • React
  • Jest
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

C and Golang related questions, 2 Hours assement, The test involved writing code by hand in paper in the office (Bengaluru)

Round 2 - Technical 

(9 Questions)

  • Q1. Write a go code to remove duplicate elements from a slice.
  • Ans. 

    Go code to remove duplicate elements from a slice of strings

    • Use a map to keep track of unique elements

    • Iterate over the slice and add elements to the map

    • Create a new slice with unique elements from the map

  • Answered by AI
  • Q2. Difference between array and slice in Go.
  • Ans. 

    Arrays have fixed length, slices are dynamic and can grow/shrink. Slices are references to arrays.

    • Arrays have fixed length, specified at compile time.

    • Slices are dynamic, can grow or shrink at runtime.

    • Slices are references to arrays, allowing for more flexibility.

    • Example: var arr [3]string // array with fixed length of 3

    • Example: slice := make([]string, 0) // slice with dynamic length

  • Answered by AI
  • Q3. Explain struct and interface
  • Ans. 

    Struct is a user-defined data type that groups related data fields together. Interface defines a set of methods that a type must implement.

    • Struct is used to create complex data structures by grouping related data fields together.

    • Interface defines a set of methods that a type must implement. It allows for polymorphism in Go.

    • Example: type Person struct { Name string; Age int }

    • Example: type Shape interface { Area() float6...

  • Answered by AI
  • Q4. What is containerization.
  • Ans. 

    Containerization is a method of packaging, distributing, and running applications in isolated environments called containers.

    • Containers are lightweight, portable, and can run on any platform that supports containerization.

    • They include everything needed to run the application, such as code, runtime, system tools, libraries, and settings.

    • Popular containerization tools include Docker, Kubernetes, and Podman.

    • Containerizati...

  • Answered by AI
  • Q5. Write a go code to implement struct.
  • Ans. 

    Implementing a struct in Go code

    • Define a struct using the 'type' keyword

    • Add fields to the struct with their respective data types

    • Access struct fields using dot notation

  • Answered by AI
  • Q6. Explain goroutine.
  • Ans. 

    Goroutine is a lightweight thread managed by Go runtime, allowing concurrent execution of functions.

    • Goroutines are created using the 'go' keyword in Go programming language.

    • They are more lightweight than threads and are managed by the Go runtime.

    • Goroutines allow for concurrent execution of functions without the need for manual thread management.

    • Example: go myFunction()

    • Example: go func() { // code here }

  • Answered by AI
  • Q7. How do you achieve concurrency in Go?
  • Ans. 

    Concurrency in Go is achieved using goroutines and channels.

    • Use goroutines to run functions concurrently

    • Communicate between goroutines using channels

    • Avoid using shared memory for synchronization

  • Answered by AI
  • Q8. What is channel in Go? What are the differences between buffered and unbuffered channel?
  • Ans. 

    A channel in Go is a communication mechanism that allows goroutines to communicate with each other.

    • Buffered channels have a specific capacity and can send multiple values without the need for a corresponding receive operation immediately.

    • Unbuffered channels have no capacity and require both a send and receive operation to be ready at the same time for communication to occur.

  • Answered by AI
  • Q9. What is scaling? Horizontal and vertical scaling.
  • Ans. 

    Scaling refers to the ability of a system to handle increasing amounts of work or its potential to accommodate growth.

    • Horizontal scaling involves adding more machines to distribute the load, while vertical scaling involves increasing the resources of a single machine.

    • Horizontal scaling is more cost-effective and provides better fault tolerance, but can be more complex to implement.

    • Vertical scaling is simpler to impleme...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic DSA. Learn C properly (Including deep concepts in pointer). Practice Golang. Also try to write solve some basic dsa problem in Go.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. REST API for User CRUD
  • Ans. 

    Design a RESTful API for CRUD operations on user resources.

    • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

    • Create endpoints like /users for listing all users, /users/{id} for specific user

    • Use status codes like 200 for success, 404 for not found, 400 for bad request

    • Implement authentication and authorization mechanisms for security

    • Include request and response body formats like JSON or XML

  • Answered by AI
  • Q2. Two Sum Leetcode problem
  • Q3. Basic questions based on the candidate technical skills
Round 2 - Technical 

(2 Questions)

  • Q1. Basics to Intermediate level of questions based on the skills mentioned in the resume
  • Q2. Projects related discussions
Round 3 - Document Verification 

(1 Question)

  • Q1. I was informed to upload the supporting documents. ( They rejected me after this eventhough all my documents are genuine )

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer's are friendly. Be prepared as per your resume.

Skills evaluated in this interview

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

Was asked 30 mcq technical questions and one dsa question which as basic string based.

Round 2 - Technical 

(2 Questions)

  • Q1. Remove a loop in linked list
  • Ans. 

    To remove a loop in a linked list, we can use Floyd's Cycle Detection Algorithm.

    • Use Floyd's Cycle Detection Algorithm to find the loop in the linked list.

    • Once the loop is detected, find the starting point of the loop using Floyd's algorithm.

    • Break the loop by setting the next pointer of the node before the starting point of the loop to null.

  • Answered by AI
  • Q2. Implement stack using queues
  • Ans. 

    Implement a stack using two queues

    • Use two queues to simulate stack operations

    • Push operation: Enqueue the element to queue 1

    • Pop operation: Dequeue all elements from queue 1 to queue 2, dequeue the last element from queue 1, then swap the queues

    • Top operation: Return the front element of queue 1

    • Empty operation: Check if both queues are empty

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What id oops and its advantages
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • Advantages of OOPs include code reusability, modularity, flexibility, and easier maintenance.

    • Encapsulation allows data hiding and protection, reducing complexity and increasing security.

    • Inheritance enables code reuse and promotes the creation of hierarchical relationships between classes.

    • Polymorphism allows objects...

  • Answered by AI
  • Q2. What is jquery and JavaScript
  • Ans. 

    jQuery is a JavaScript library that simplifies HTML document traversal and manipulation, event handling, and animation.

    • jQuery is a fast, small, and feature-rich JavaScript library.

    • It makes things like HTML document traversal and manipulation, event handling, and animation much simpler with an easy-to-use API.

    • jQuery simplifies common tasks like AJAX calls and DOM manipulation.

    • JavaScript is a programming language that en...

  • Answered by AI
Round 2 - Coding Test 

Ecom is core platform

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is php and its advantages
  • Ans. 

    PHP is a server-side scripting language used for web development.

    • PHP stands for Hypertext Preprocessor.

    • It is open source and widely used for creating dynamic web pages.

    • Advantages include easy integration with HTML, support for various databases, and compatibility with different operating systems.

    • PHP code can be embedded within HTML code, making it easy to work with web content.

    • Popular websites like Facebook and WordPre

  • Answered by AI
  • Q2. How are you hope you doing well

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job

Skills evaluated in this interview

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

(1 Question)

  • Q1. Types of filters
  • Ans. 

    Types of filters include low-pass, high-pass, band-pass, and band-stop filters.

    • Low-pass filter allows frequencies below a certain cutoff frequency to pass through.

    • High-pass filter allows frequencies above a certain cutoff frequency to pass through.

    • Band-pass filter allows a specific range of frequencies to pass through.

    • Band-stop filter blocks a specific range of frequencies from passing through.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Project Details
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Coding Test 

The questions were asked from SQL and Python

Round 2 - Group Discussion 

General Topics - Mostly checking the communication

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical stuffs that were in candidate's resume
Round 4 - HR 

(1 Question)

  • Q1. Mostly checking - attitude, reliability
Interview experience
3
Average
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 - Technical 

(1 Question)

  • Q1. Confidential to disclose
Round 3 - Technical 

(1 Question)

  • Q1. Confidential not to disclose
Round 4 - One-on-one 

(1 Question)

  • Q1. Confidential not to disclose
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Apr 2023.

Round 1 - Technical 

(1 Question)

  • Q1. There was simple DSA question ,

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont join this company

SightSpectrum Technology Solutions Interview FAQs

How many rounds are there in SightSpectrum Technology Solutions Software Engineer Trainee interview?
SightSpectrum Technology Solutions interview process usually has 3 rounds. The most common rounds in the SightSpectrum Technology Solutions interview process are HR, Resume Shortlist and Group Discussion.
What are the top questions asked in SightSpectrum Technology Solutions Software Engineer Trainee interview?

Some of the top questions asked at the SightSpectrum Technology Solutions Software Engineer Trainee interview -

  1. Introduction,basic oops concepts, html,css,...read more
  2. SQL, java , python, c, H...read more
  3. Java basics with oops conce...read more

Tell us how to improve this page.

SightSpectrum Technology Solutions Software Engineer Trainee Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

SightSpectrum Technology Solutions Software Engineer Trainee Reviews and Ratings

based on 2 reviews

2.3/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

2.3

Salary

2.3

Job security

2.7

Company culture

2.3

Promotions

2.7

Work satisfaction

Explore 2 Reviews and Ratings
Information Technology Recruiter
95 salaries
unlock blur

₹1 L/yr - ₹4.1 L/yr

Software Developer
65 salaries
unlock blur

₹1.5 L/yr - ₹6 L/yr

Software Trainee
47 salaries
unlock blur

₹1 L/yr - ₹2.6 L/yr

US IT Recruiter
37 salaries
unlock blur

₹1.2 L/yr - ₹4.5 L/yr

System Analyst
21 salaries
unlock blur

₹3 L/yr - ₹12.5 L/yr

Explore more salaries
Compare SightSpectrum Technology Solutions with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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