Upload Button Icon Add office photos
Engaged Employer

i

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

SpanIdea Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

SpanIdea Interview Questions, Process, and Tips

Updated 19 Feb 2025

Top SpanIdea Interview Questions and Answers

View all 9 questions

SpanIdea Interview Experiences

Popular Designations

24 interviews found

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

Interview Questionnaire 

7 Questions

  • Q1. 1. What is topic present in C.
  • Ans. 

    C language has various topics including data types, control structures, functions, arrays, pointers, structures, and file handling.

    • Data types - int, float, char, double, etc.

    • Control structures - if-else, switch-case, loops, etc.

    • Functions - user-defined functions, library functions, etc.

    • Arrays - one-dimensional, multi-dimensional, etc.

    • Pointers - pointer variables, pointer arithmetic, etc.

    • Structures - user-defined data t...

  • Answered by AI
  • Q2. 2.What is type qualifier volatile and const
  • Ans. 

    The type qualifier volatile is used to indicate that a variable's value may change unexpectedly.

    • The volatile qualifier is used when a variable can be modified by external factors that are beyond the control of the program.

    • It is commonly used when accessing hardware registers or shared memory in multi-threaded environments.

    • The const qualifier is used to indicate that a variable's value cannot be modified once it is assi...

  • Answered by AI
  • Q3. 3.What is storage classes.
  • Ans. 

    Storage classes are keywords in C programming that define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to a function and have a default value of garbage.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and...

  • Answered by AI
  • Q4. 4.write code to reverse word in string
  • Ans. 

    Code to reverse words in a string

    • Split the string into an array of words

    • Loop through the array and reverse each word

    • Join the reversed words back into a string

  • Answered by AI
  • Q5. 5. How computer is starting
  • Ans. 

    The computer starts by executing the BIOS, which initializes hardware and loads the operating system.

    • When the power button is pressed, the computer sends a signal to the power supply to turn on.

    • The BIOS (Basic Input/Output System) is then executed, which performs a Power-On Self Test (POST) to check hardware components.

    • The BIOS then loads the boot loader from the hard drive or other bootable device.

    • The boot loader then...

  • Answered by AI
  • Q6. What is process and thread
  • Ans. 

    A process is an instance of a program while a thread is a lightweight process that can run concurrently with other threads.

    • A process is a program in execution

    • A process has its own memory space and system resources

    • A thread is a subset of a process

    • A thread shares the same memory space and system resources as its parent process

    • Multiple threads can run concurrently within a single process

  • Answered by AI
  • Q7. What is system call.
  • Ans. 

    System call is a request made by a program to the operating system for a service or resource.

    • System calls provide an interface between a program and the operating system.

    • They allow programs to perform tasks such as reading and writing files, creating new processes, and managing memory.

    • Examples of system calls include open(), read(), write(), fork(), and exec().

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please study well and get your dream job.

Skills evaluated in this interview

Top SpanIdea Associate Software Engineer Interview Questions and Answers

Q1. 1. write a code to check whether entered input is a palindrome or not 2. wap to print the reverse of an array 3. find the second highest in the array
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn

Round 1 - Technical 

(1 Question)

  • Q1. OOPs Concepts, Fibonacci program

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (11)
SpanIdea Interview Questions and Answers for Freshers
illustration image

Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2024

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

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Write a javascript code to display duplicate elements in an array

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

(2 Questions)

  • Q1. Kubernetes , service yaml pipeline
  • Q2. Docker images building Dockerfile push images to repository

Lead DevOps Engineer Interview Questions asked at other Companies

Q1. Tell me your day to day activity comprising DevOps. How do you implemented CI-CD Pipeline? How does Branching and Merging taken place in your organization? How to work on Jenkins pipeline, What type of pipeline used? What are checks for any... read more
View answer (1)

SpanIdea interview questions for popular designations

 Software Engineer

 (6)

 Senior Software Engineer

 (4)

 Software Developer

 (2)

 Associate Software Engineer

 (2)

 Senior Engineer

 (1)

 US IT Recruiter

 (1)

 HR Recruiter

 (1)

 Executive/ Sr Executive - Administration

 (1)

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company

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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Not available, PFB
  • Q2. Please find below

Interview Preparation Tips

Topics to prepare for SpanIdea Software Developer interview:
  • C++
  • C
Interview preparation tips for other job seekers - The SO INTELLCTUAL HR lady calls me and tells me about the job role and tells that this includes 1 year bond. she asks me my current location . she then asks me which city i am from? Then she asks me which state i am from?:) I don't know at that time was she searching the last braincell she have?AND then she also wants to know that currently at which area i am residing and she goes on to ask that do i have any relatives at job location area. when i asked her why she is asking so many questions her response was that "we want to know if the candidate is really interested in job role". Highly Professional HR ,, even after going through her "intellectual questionnaire" and telling her i am interested in job role there was absolute no response from her

company should conduct some good communication skills and logical thinking classes for HRs before expecting it from any candidate

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Intern Interview Questions & Answers

user image Sree Ram

posted on 2 Jun 2024

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

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Trees, looping statements

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Regarding SQL, PostgreSQL

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 (197)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Dec 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. So they asked totally from my resume and they finally asked three coding questions which were simple and you should answer genuinely
  • Q2. 1. write a code to check whether entered input is a palindrome or not 2. wap to print the reverse of an array 3. find the second highest in the array
  • Ans. 

    Answer to coding questions for Associate Software Engineer interview

    • To check for palindrome, compare the input string with its reverse

    • To print the reverse of an array, loop through the array in reverse order and print each element

    • To find the second highest in an array, loop through the array and keep track of the highest and second highest values

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - resume should be genuine, be prepared beforehand and be strong on basics and always put a smile in the interview

Top SpanIdea Associate Software Engineer Interview Questions and Answers

Q1. 1. write a code to check whether entered input is a palindrome or not 2. wap to print the reverse of an array 3. find the second highest in the array
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Front end questions on react like Es6 features,Virtual dom ,Hooks and Html5 and css3

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Dsa questions Javscript and React Js basic to Intermediate

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 3 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 Resume tips
Round 2 - Coding Test 

String related functions,virtual functions and STL concepts

Round 3 - Technical 

(1 Question)

  • Q1. String related questions and STL concepts

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Software Engineer Interview Questions & Answers

user image Rishika Borana

posted on 19 Feb 2025

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

I was interviewed before Feb 2024.

Round 1 - Coding Test 

Two coding questions and one email writing task.

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 (197)
Contribute & help others!
anonymous
You can choose to be anonymous

SpanIdea Interview FAQs

How many rounds are there in SpanIdea interview?
SpanIdea interview process usually has 1-2 rounds. The most common rounds in the SpanIdea interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for SpanIdea 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 SpanIdea. The most common topics and skills that interviewers at SpanIdea expect are Information Technology, SAN, French, Python and Linux.
What are the top questions asked in SpanIdea interview?

Some of the top questions asked at the SpanIdea interview -

  1. 1. write a code to check whether entered input is a palindrome or not 2. wap to...read more
  2. 2.What is type qualifier volatile and cons...read more
  3. 1. What is topic present in...read more
How long is the SpanIdea interview process?

The duration of SpanIdea interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Droisys

No Interviews

INTERVIEWS

Inficare

No Interviews

INTERVIEWS

SpanIdea

No Interviews

INTERVIEWS

Teachnook

No Interviews

INTERVIEWS

Teachnook

No Interviews

INTERVIEWS

SpanIdea

No Interviews

SALARIES

Teachnook

INTERVIEWS

Teachnook

No Interviews

SALARIES

Teachnook

INTERVIEWS

GoComet

No Interviews

Tell us how to improve this page.

SpanIdea Interview Process

based on 21 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
View all

Fast track your campus placements

View all

SpanIdea Reviews and Ratings

based on 179 reviews

3.7/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

3.7

Salary

3.4

Job security

3.6

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 179 Reviews and Ratings
Software Engineer
211 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
130 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
79 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Talent Acquisition Executive
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SpanIdea 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