Upload Button Icon Add office photos

Filter interviews by

Smart Software Services(I) Interview Questions and Answers

Updated 5 Feb 2024

Smart Software Services(I) Interview Experiences

Popular Designations

3 interviews found

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 

(2 Questions)

  • Q1. Questions related to java and selenium
  • Q2. Questions related to logical programs of java
Round 3 - One-on-one 

(1 Question)

  • Q1. Live scenario questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview process and interviewer also supportive

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Difference between Static & final? Difference between interface & abstract class? Why String is immutable? Which collection u used in your project? @bean, @component, CRUD operation?
  • Ans. 

    Static is a keyword used to create class-level variables or methods, while final is used to declare constants.

    • Static variables and methods belong to the class itself, not to any specific instance of the class.

    • Final variables cannot be changed once assigned a value.

    • Example: static int count; final int MAX_VALUE = 100;

  • Answered by AI
Round 2 - Coding Test 

Gave me crud application that fetch list from spring boot and show in angular

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2022. 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 - Technical 

(4 Questions)

  • Q1. Tell me about your self
  • Q2. Tell me about your past projects
  • Q3. Difference between smoke and Sanity
  • Ans. 

    Smoke testing is a quick test to check if the software build is stable for further testing, while sanity testing is a subset of regression testing to ensure the specific changes made are working fine.

    • Smoke testing is done to check if the critical functionalities of the software are working fine after a build, while sanity testing is done to check if the specific changes made in the software are working as expected.

    • Smok...

  • Answered by AI
  • Q4. Agile methodology
Round 3 - Case Study 

They gave me one scenario and ask me to prepare Test cases

Skills evaluated in this interview

Associate Software Test Engineer Interview Questions asked at other Companies

Q1. Write a java code to generate fibonacci series
View answer (2)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic c# questions , few logical and angular questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. DB questions, design patterns, few architectural questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to the basics and be concrete on concepts

Interview Questionnaire 

5 Questions

  • Q1. Questions on Sales cycle and Oracle products like HCM, ERP, EPM and other cloud services
  • Q2. Questions on Current IT Trends
  • Q3. Questions on Financial Analytics (Profitability ratios and financial modeling) and product bench marking approach
  • Q4. Questions on CLoud, IoT, Blockchain Trends and applications across industries
  • Q5. Face to Face questions - Guesstimate and Case Study, 2 subsequent interviews on Case Study with Manager and Director

Interview Questionnaire 

1 Question

  • Q1. About financial analysts

Interview Questionnaire 

3 Questions

  • Q1. There are 1 million random numbers and 1 number is missing find the missing number
  • Ans. 

    Find the missing number from 1 million random numbers.

    • Calculate the sum of all numbers from 1 to 1 million using the formula n(n+1)/2

    • Calculate the sum of all the given numbers

    • Subtract the sum of given numbers from the sum of all numbers to get the missing number

  • Answered by AI
  • Q2. Algorithm and complexities
  • Q3. Basic technical questions

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Pretty easy questions.

  • Q1. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    Find the K-th smallest element in an array of distinct integers.

    • Sort the array and return the element at index K-1.

    • Use a min-heap to find the K-th smallest element efficiently.

    • Implement quickselect algorithm for optimal performance.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

1 coding question

  • Q1. 

    IP Address Formation from String

    Given a string S consisting only of digits from 0 to 9, your task is to find all potential IP addresses that can be formed from S and list them in lexicographical order. I...

  • Ans. 

    Given a string of digits, find all potential valid IP addresses that can be formed from it.

    • Split the string into four parts and check if each part is a valid IP segment (0-255).

    • Use backtracking to generate all possible combinations of valid IP addresses.

    • Ensure that the IP address does not contain leading zeroes.

    • Return the valid IP addresses in lexicographical order.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

Total Discussion on OS concepts

  • Q1. Can you explain the concepts related to memory management in operating systems?
  • Ans. 

    Memory management in operating systems involves allocation, deallocation, and optimization of memory usage.

    • Memory allocation: OS allocates memory to processes based on their requirements.

    • Memory deallocation: OS frees up memory when it is no longer needed by a process.

    • Memory optimization: OS optimizes memory usage through techniques like paging, segmentation, and virtual memory.

    • Examples: Paging in which memory is divide...

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

Easy in office environment

  • Q1. 

    Find the Lone Set Bit

    Your task is to identify the position of the only '1' bit in the binary representation of a given non-negative integer N. The representation contains exactly one '1' and the rest are...

  • Ans. 

    Find the position of the lone '1' bit in the binary representation of a given non-negative integer.

    • Iterate through the bits of the integer to find the position of the lone '1'.

    • Use bitwise operations to check if there is exactly one '1' bit in the binary representation.

    • Return the position of the lone '1' or -1 if there isn't exactly one '1'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria7 CGPAMicrosoft interview preparation:Topics to prepare for the interview - Trees, graphs, dynamic programming, stacks, queuesTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Do a good project.
Tip 2 : Master the topics you are preparing.

Application resume tips for other job seekers

Tip 1 : Avoid writing things you do not know
Tip 2 : Follow a proper format for Resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Referral and was interviewed before Aug 2020. There were 5 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and should communicate well in English. Be Truth.

I applied via Campus Placement and was interviewed before Nov 2019. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked two coding question, aptitude and unix command at round one, then a paper pen coding question and questions regarding Java,DS,MySql,Data communication at round 2, the round three was HR.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be good at any one of these (JAVA,C++ PYTHON), Database, DS,Data communication, Unix. Anything apart from these is add on. But these things are must

Smart Software Services(I) Interview FAQs

How many rounds are there in Smart Software Services(I) interview?
Smart Software Services(I) interview process usually has 2-3 rounds. The most common rounds in the Smart Software Services(I) interview process are Technical, Resume Shortlist and Case Study.
How to prepare for Smart Software Services(I) 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 Smart Software Services(I). The most common topics and skills that interviewers at Smart Software Services(I) expect are Plugins, Woocommerce, Wordpress and Wordpress CMS.
What are the top questions asked in Smart Software Services(I) interview?

Some of the top questions asked at the Smart Software Services(I) interview -

  1. Difference between Static & final? Difference between interface & abstract clas...read more
  2. Difference between smoke and San...read more
  3. Questions related to logical programs of j...read more

Tell us how to improve this page.

Smart Software Services(I) Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 864 Interviews
Google Interview Questions
4.4
 • 842 Interviews
Amdocs Interview Questions
3.7
 • 517 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
KPIT Technologies Interview Questions
3.4
 • 291 Interviews
SAP Interview Questions
4.2
 • 284 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
View all

Smart Software Services(I) Reviews and Ratings

based on 94 reviews

4.7/5

Rating in categories

4.6

Skill development

4.6

Work-life balance

4.5

Salary

4.6

Job security

4.7

Company culture

4.4

Promotions

4.6

Work satisfaction

Explore 94 Reviews and Ratings
Softwaretest Engineer
197 salaries
unlock blur

₹3.2 L/yr - ₹6.4 L/yr

Software Developer
67 salaries
unlock blur

₹3.5 L/yr - ₹6.6 L/yr

Application Support Engineer
51 salaries
unlock blur

₹2.2 L/yr - ₹4.8 L/yr

AR Caller
44 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Power BI Developer
37 salaries
unlock blur

₹3.4 L/yr - ₹5 L/yr

Explore more salaries
Compare Smart Software Services(I) 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