Upload Button Icon Add office photos

Filter interviews by

Software Work Interview Questions and Answers

Updated 31 May 2022

Software Work Interview Experiences

Popular Designations

4 interviews found

fresher Interview Questions & Answers

user image Anonymous

posted on 19 Jul 2021

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

Interview Questionnaire 

14 Questions

  • Q1. Your self introduction
  • Q2. Why are you choose this job
  • Q3. Do you have any experience
  • Q4. Do you complete any project work
  • Q5. What about you know about software
  • Ans. 

    I have knowledge of software development and programming languages.

    • I am proficient in programming languages such as Java, Python, and C++.

    • I have experience in software development methodologies such as Agile and Waterfall.

    • I am familiar with software testing and debugging techniques.

    • I have worked with various software tools such as Eclipse, Visual Studio, and Git.

    • I am constantly learning and keeping up with the latest t

  • Answered by AI
  • Q6. Why are you choose this software life
  • Q7. What is your basic knowledge in software
  • Ans. 

    I have basic knowledge in software development and programming languages.

    • Proficient in programming languages such as Java, Python, and C++

    • Familiar with software development methodologies like Agile and Waterfall

    • Knowledgeable in database management systems like MySQL and Oracle

    • Experience in using software development tools like Git and Eclipse

  • Answered by AI
  • Q8. How much salary your expecting
  • Q9. Are you interested our company instructions by working
  • Q10. Do you have good communication skills
  • Q11. How to motivate you if we gave any project work to explain cost and management to our customer requirements and budget management
  • Q12. Are you strong in project management to your colins explain and every thing perfectly
  • Q13. Do you have good inspiration for project handle perfectly with your responsibility
  • Q14. Do you have to gave validate data and management especially run project work handling basically.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skills and eye contact with interview person and dressing style and little smile with our Collings.

Skills evaluated in this interview

fresher Interview Questions asked at other Companies

Q1. What is the unit of electric current
View answer (127)

I applied via Indeed and was interviewed in Dec 2021. 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 tips
Round 2 - HR 

(1 Question)

  • Q1. Introduction about my self
Round 3 - One-on-one 

(1 Question)

  • Q1. About skill and expertise

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very confident it's good to do a bit research with the type of product they are into

Sales Manager Supervisor Interview Questions asked at other Companies

Q1. How can prepare the idli dosa batter
View answer (2)

Web Developer Interview Questions & Answers

user image Anonymous

posted on 24 May 2021

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Website related, HTML, CSS, Php

Interview Preparation Tips

Interview preparation tips for other job seekers - Telephonic & video calling

Web Developer Interview Questions asked at other Companies

Q1. Last Index of Element The task is to determine the index of the last occurrence of a specified element x within an array that may contain duplicate elements. If the element is not present, return -1. Input: The first line contains an intege... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2021

I applied via Referral and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. About your self.
  • Q2. A story depends on market
  • Q3. Question from c, html, ms office

Interview Preparation Tips

Interview preparation tips for other job seekers - Give interview free mind, there very polite and sesibal hardworking employees.

Software Work interview questions for popular designations

 Sales Manager Supervisor

 (1)

 fresher

 (1)

 Web Developer

 (1)

Jobs at Software Work

View all

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Approx. 30.questions in 50 min
Tips: Try solving each que in less than a minute ,don't waste time on difficult questions, complete easier once first
Duration: 50 minutes
Total Questions: 30

College Name: Pimpri chinchwad college of engineering

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Interview Questionnaire 

2 Questions

  • Q1. About what we worked in previous company project
  • Q2. General C programming questions and previous company project questions

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

Interview Preparation Tips

General Tips: I asked my seniors about the interview process. Their guidelines were very helpful. Always try to bring the interviewer into your comfort zone. Also be confident and expressive while explaining. Explain your thought process while solving. Even though you don't get the solution the thought process might be very important for your selection.
College Name: NIT SURATHKAL

Software Work Interview FAQs

How many rounds are there in Software Work interview?
Software Work interview process usually has 3 rounds. The most common rounds in the Software Work interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for Software Work 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 Software Work. The most common topics and skills that interviewers at Software Work expect are ERP Sales, Software Sales, Lead Generation, Communication Skills and Tally.
What are the top questions asked in Software Work interview?

Some of the top questions asked at the Software Work interview -

  1. What is your basic knowledge in softwa...read more
  2. What about you know about softw...read more
  3. Do you have to gave validate data and management especially run project work h...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 846 Interviews
Google Interview Questions
4.4
 • 821 Interviews
Amdocs Interview Questions
3.7
 • 512 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
KPIT Technologies Interview Questions
3.4
 • 278 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
Salesforce Interview Questions
4.0
 • 221 Interviews
View all

Software Work Reviews and Ratings

based on 5 reviews

4.9/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.3

Salary

4.5

Job security

4.9

Company culture

4.2

Promotions

4.8

Work satisfaction

Explore 5 Reviews and Ratings
Security Question

Guwahati,

Visakhapatnam

+17

1-5 Yrs

Not Disclosed

Explore more jobs
Compare Software Work with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

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