Upload Button Icon Add office photos

Filter interviews by

Technossus Software Developer Intern Interview Questions and Answers

Updated 25 Nov 2023

Technossus Software Developer Intern Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in May 2023. There were 4 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 tips
Round 2 - Assignment 

To create a small project in ReactJs and C# .Net MVC Framework

Round 3 - Technical 

(1 Question)

  • Q1. Code on Palindrome code on String reverse SQL queries oops concepts
Round 4 - Technical 

(1 Question)

  • Q1. Behavorial scenarios and database

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It had mcq and 1 hard coding question

Round 2 - Technical 

(2 Questions)

  • Q1. They asked me about backtracking and dp series problem and also to solve the given question
  • Q2. Java and in depth about different pillars of java

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus primarily on Java and advanced data structures and algorithms topics, such as backtracking and dynamic programming.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Kalinga Institute of Industrial Technology, Khurda and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding round was there. Two coding questions were asked to solve in 1 hour. The difficulty was easy to medium.Leetcode questions of arrays and strings.

Round 2 - Technical 

(2 Questions)

  • Q1. It was an online tech interview. There were two panelists. One asked me about my projects and gave me one coding question to solve which was based on matrices. And i was supposed to explain the approach an...
  • Q2. After solving the question. In the same interview zoom meet HR asked me something about me and my family and thats it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do coding regularly
Be confident
Communicate well
And just relax before 2 hours of the interview....You are going to do awesome...
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Technical MCQ questions on core computer science subjects were asked.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How to find whether the given linked list has loop in it?
  • Q2. Explain osi model with example of browser.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy to medium questions

Round 2 - Hackathon 

(1 Question)

  • Q1. Create a software
  • Ans. 

    A software for managing inventory in a retail store

    • Create a user-friendly interface for adding, updating, and deleting products

    • Include features for tracking sales, restocking inventory, and generating reports

    • Implement barcode scanning functionality for quick product lookup

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Just stick to the basics

Skills evaluated in this interview

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 - Coding Test 

DSA questions of array and strings

Round 3 - Technical 

(1 Question)

  • Q1. DSA on array advanced topics

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is must
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was a 2hr test. It had two sections. 1)Quantitative aptitude and verbal ability and 2) Technical aptitude.

Round 2 - Technical 

(1 Question)

  • Q1. It was for 45 min. Asked some OOPs concepts, CN fundamentals. Questions were asked on arrays and linked lists. also on OS
Round 3 - HR 

(1 Question)

  • Q1. It was for 5 min. Asked on why I wanted to join Optum

Interview Preparation Tips

Interview preparation tips for other job seekers - Mention only things that you are perfect in resume. Don't add extra stuff and don't fake it.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java and python based questions

Software Developer Intern Interview Questions & Answers

Dell user image Nikhita Bhattacharya

posted on 13 Dec 2024

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

I was interviewed before Dec 2023.

Round 1 - Aptitude Test 

Fundamental output questions and aptitude assessments.

Round 2 - Technical 

(1 Question)

  • Q1. Pattern printing Delete drop truncate difference Projects discussion
Round 3 - HR 

(2 Questions)

  • Q1. What motivated you to choose Dell?
  • Ans. 

    I chose Dell for their reputation for innovation, strong company culture, and opportunities for growth.

    • Reputation for innovation in technology industry

    • Strong company culture focused on employee development

    • Opportunities for growth and advancement within the company

  • Answered by AI
  • Q2. Opinion about JD.

I was interviewed in Dec 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This round contains 40 mcq questions 15 dsa and 25 aptitude.
then there was 5 coding questions.

  • Q1. Check If Binary Representation of a Number is Palindrome

    Ninja is given an integer ‘N’. Ninja wants to find whether the binary representation of integer ‘N’ is palindrome or not.

    A palindrome is a sequen...

  • Ans. 

    Check if binary conversion of given number is palindrome or not. Ex: 6 (0110) is palindrome.
    I used a recursive function for binary conversion and then check for palindrome using a loop. Refrain from using inbuilt functions as they wanna check your logic. O(n) time complexity.

  • Answered Anonymously
  • Q2. Word Break

    You are given a list of “N” strings A. Your task is to check whether you can form a given target string using a combination of one or more strings of A.

    Note :
    You can use any string of A mult...
  • Ans. 

     One Sentence (string) is given. find out the words, that has length even and greater than equal to 4 (e.g. 4,6,8.. etc.) and separate them with space.
    e.g. Given String : “abcd abc abcde abcdef”
    Output: “ab cd abc abcde abc def”
    I allocated a new string dynamically, and used two for loops to copy one string to another, adding a space at the middle of the word where word length was >=4 and even. O(n^2) time comple

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 25 minutes
Round difficulty - Easy

Technical Round

  • Q1. Sort 0 1

    You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once an...

  • Ans. 

    Then he made it complex by saying that if there are numbers from 0 to k in an array of size n then how will you sort them in O(n), I told him the count sort, he agreed with it and then asked me to quickly write down the code, I wrote it down, there was a silly mistake which he pointed out and said that it’s good and then moved on to next problem. He saw my code for fourth largest in an array, I did it using heap and ti...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Panjab University. I applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 7 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Web Development, Strings, Bit MappingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice well basics of dsa
Tip 2 : Have a good grip of core cs
Tip 3 : have good projects on resume

Application resume tips for other job seekers

Tip 1 : Don't put anything which you are not comfortable to speak
Tip 2 : make it short and crisp

Final outcome of the interviewSelected

Skills evaluated in this interview

Technossus Interview FAQs

How many rounds are there in Technossus Software Developer Intern interview?
Technossus interview process usually has 4 rounds. The most common rounds in the Technossus interview process are Technical, Resume Shortlist and Assignment.
What are the top questions asked in Technossus Software Developer Intern interview?

Some of the top questions asked at the Technossus Software Developer Intern interview -

  1. Code on Palindrome code on String reverse SQL queries oops conce...read more
  2. Behavorial scenarios and datab...read more

Tell us how to improve this page.

Senior Software Engineer
7 salaries
unlock blur

₹10.5 L/yr - ₹18 L/yr

Senior Software Quality Assurance Engineer
4 salaries
unlock blur

₹7.1 L/yr - ₹10 L/yr

Software Developer
3 salaries
unlock blur

₹7.6 L/yr - ₹19 L/yr

Technical Consultant
3 salaries
unlock blur

₹13.7 L/yr - ₹17 L/yr

Senior Software Developer
3 salaries
unlock blur

₹13.4 L/yr - ₹18 L/yr

Explore more salaries
Compare Technossus with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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