Upload Button Icon Add office photos

Filter interviews by

Smart Tech Infosystems Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

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

Round 1 - Technical 

(22 Questions)

  • Q1. What is SDLC and STLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is the process of developing software from planning to deployment. STLC stands for Software Testing Life Cycle, which is the process of testing software to ensure quality.

    • SDLC involves phases like planning, analysis, design, implementation, and maintenance.

    • STLC involves phases like test planning, test design, test execution, and test closure.

    • SDLC focuses on the ove...

  • Answered by AI
  • Q2. Defect Life Cycle
  • Q3. What are the Testing types?
  • Ans. 

    Testing types refer to different approaches and techniques used to validate software functionality.

    • Functional Testing - testing the functionality of the software

    • Non-Functional Testing - testing aspects like performance, usability, etc.

    • Manual Testing - testing done manually by testers

    • Automated Testing - testing done using automation tools

    • Regression Testing - testing to ensure new code changes do not affect existing func...

  • Answered by AI
  • Q4. How will you tackle if you found any issues just before the release?
  • Ans. 

    I will prioritize and address critical issues first, communicate with stakeholders, and work with the team to resolve the issues efficiently.

    • Prioritize critical issues that could potentially block the release

    • Communicate with stakeholders about the issues and potential impact on the release timeline

    • Work closely with the development team to quickly identify and resolve the issues

    • Perform thorough testing and validation po

  • Answered by AI
  • Q5. Agile model and water fall model?
  • Q6. Smoke testing, Unity Testing, White box testing and Black box testing?
  • Q7. Retesting and Regression testing difference?
  • Ans. 

    Retesting is testing the same functionality again to ensure the defect has been fixed, while regression testing is testing the entire application to ensure new changes have not affected existing functionality.

    • Retesting focuses on verifying that a specific defect has been fixed.

    • Regression testing focuses on ensuring that new changes have not affected existing functionality.

    • Retesting is usually done by the QA analyst who...

  • Answered by AI
  • Q8. Challenges for the QA lead during testing?
  • Ans. 

    Challenges for QA lead include managing resources, prioritizing tasks, communication with stakeholders, and ensuring thorough testing.

    • Managing resources effectively to meet deadlines

    • Prioritizing tasks based on criticality and impact on project

    • Communicating effectively with stakeholders to align expectations

    • Ensuring thorough testing coverage across all functionalities

    • Coordinating with development team for timely bug fix

  • Answered by AI
  • Q9. Selenium 4 new things?
  • Ans. 

    Selenium 4 introduces new features like Relative Locators, Chrome DevTools Protocol, and improved W3C WebDriver support.

    • Relative Locators allow testers to locate elements based on their relationship with other elements.

    • Chrome DevTools Protocol integration enables better debugging capabilities.

    • Improved W3C WebDriver support ensures better compatibility with modern browsers.

    • New APIs for better handling of browser windows...

  • Answered by AI
  • Q10. Found x path for element on flipkart web app
  • Ans. 

    To find x path for element on Flipkart web app, use browser developer tools

    • Open Flipkart web app in browser

    • Right click on the element you want to find x path for

    • Select 'Inspect' to open developer tools

    • Locate the element in the HTML code

    • Right click on the element in the HTML code

    • Select 'Copy' -> 'Copy XPath' to get the x path

  • Answered by AI
  • Q11. Mouse operation in selenium , syntax
  • Ans. 

    Mouse operations in Selenium involve actions like click, double click, right click, drag and drop, etc.

    • Mouse click: driver.findElement(By.xpath("//elementXPath")).click();

    • Double click: Actions action = new Actions(driver); action.doubleClick(element).perform();

    • Right click: Actions action = new Actions(driver); action.contextClick(element).perform();

    • Drag and drop: Actions action = new Actions(driver); action.dragAndDrop

  • Answered by AI
  • Q12. New locators in selenium 4 ?
  • Ans. 

    Selenium 4 introduces new locators for more efficient web element identification.

    • Selenium 4 introduces Relative Locators for finding elements based on their relationship with other elements.

    • The 'findElement' method now supports 'withTagName', 'above', 'below', 'toLeftOf', 'toRightOf', and 'near' methods.

    • Relative locators help in writing more robust and readable test scripts.

    • Example: driver.findElement(withTagName("inpu

  • Answered by AI
  • Q13. How to get data from excel file in selenium?
  • Ans. 

    Data from Excel file can be retrieved in Selenium using Apache POI library.

    • Use Apache POI library to read data from Excel files in Selenium

    • Create a FileInputStream object to read the Excel file

    • Create a Workbook object using the FileInputStream

    • Get the desired sheet from the Workbook

    • Iterate through rows and cells to retrieve data

    • Close the Workbook and FileInputStream after use

  • Answered by AI
  • Q14. How to upload file in selenium?
  • Ans. 

    To upload a file in Selenium, you can use the sendKeys() method on the file input element.

    • Locate the file input element on the webpage using appropriate locator strategies

    • Use the sendKeys() method to send the file path to the file input element

    • Ensure the file path is correct and accessible by the browser

  • Answered by AI
  • Q15. How to get iFrame in web page?
  • Ans. 

    To get an iFrame in a web page, you can use the <iframe> tag in HTML.

    • Use the <iframe> tag in HTML to embed another webpage within the current webpage

    • Specify the source URL of the webpage to be displayed in the iFrame using the 'src' attribute

    • Adjust the height and width of the iFrame using the 'height' and 'width' attributes

    • Add a border around the iFrame using the 'frameborder' attribute

  • Answered by AI
  • Q16. How to switch iFrame one to another?
  • Ans. 

    To switch iFrame one to another, you can use the switchTo() method in Selenium WebDriver.

    • Locate the iFrame using its locator

    • Switch to the iFrame using switchTo() method

    • Perform actions within the iFrame

    • Switch back to the default content when done

  • Answered by AI
  • Q17. Return type of iFrames in web page ?
  • Ans. 

    iFrames in web pages have a return type of HTML elements.

    • iFrames are used to embed another document within the current HTML document.

    • They are represented as HTML elements with a src attribute pointing to the URL of the embedded document.

    • iFrames can be manipulated using JavaScript to interact with the embedded content.

  • Answered by AI
  • Q18. How to automate mobile app without having a mobile device?
  • Ans. 

    Use emulators or cloud-based testing services to automate mobile app testing without physical devices.

    • Utilize emulators such as Android Studio's emulator or Genymotion for Android apps

    • Leverage cloud-based testing services like AWS Device Farm or BrowserStack for testing on various devices and OS versions

    • Implement Appium or Selenium for cross-platform mobile app automation

  • Answered by AI
  • Q19. Java coding questions like change date format 12 hours to 24 hours without using time and date from selenium?
  • Q20. TestNG annotations and It's sequences?
  • Ans. 

    TestNG annotations are used to control the flow of test methods and define the sequence in which they should be executed.

    • Annotations like @BeforeSuite, @BeforeTest, @BeforeClass, @BeforeMethod are used to set up preconditions before executing test methods.

    • Annotations like @Test are used to define test methods.

    • Annotations like @AfterMethod, @AfterClass, @AfterTest, @AfterSuite are used to clean up after executing test m...

  • Answered by AI
  • Q21. How to copy data from one tab and paste it another tab where both tab are already opened?
  • Ans. 

    To copy data from one tab and paste it in another tab, use keyboard shortcuts or right-click options.

    • Use Ctrl + C to copy data from the source tab

    • Switch to the target tab

    • Use Ctrl + V to paste the copied data in the target tab

    • Alternatively, right-click on the selected data and choose 'Copy', then right-click in the target tab and choose 'Paste'

  • Answered by AI
  • Q22. How to drag any object one place to another place using actions class?
  • Ans. 

    Use Actions class in Selenium to drag an object from one place to another.

    • Create an instance of Actions class

    • Use dragAndDrop() method to drag the object to the desired location

    • Perform() method to execute the action

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nirvana Solutions Lead QA Analyst interview:
  • Manual Tesitng
  • Automation Testing
  • Testng
  • JIRA
  • Testing Methodology
  • Selenium
  • Core Java
  • API
Interview preparation tips for other job seekers - Please be ready for the interview.
You should be have good knowledge in Manual testing and Automation testing.
Ready for write the java code.
Ready for found the x path , drag and drop object, fetch the data from excel file, upload file via selenium code etc.
Prepare basic questions related to the Manual testing.

Skills evaluated in this interview

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

I applied via AmbitionBox and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Assignment 

They gave me an assignment to complete

Round 2 - One-on-one 

(1 Question)

  • Q1. They just asked me general questions and few more questions about my experience as a project manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident, you will crack it
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant

Round 1 - One-on-one 

(4 Questions)

  • Q1. Talk about your work experience. Detailed questions about projects that I worked on.
  • Q2. Why are you interested in switching.
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic field.

    • Interested in leveraging my skills and experience in a new environment

    • Excited about the potential to work on innovative products

    • Looking for opportunities to expand my knowledge and expertise

  • Answered by AI
  • Q3. Do you use any food delivery apps frequently? What would you improve in Swiggy?
  • Ans. 

    Yes, I frequently use food delivery apps like Swiggy.

    • I use Swiggy at least a few times a week for ordering food.

    • I appreciate the wide variety of restaurants and cuisines available on Swiggy.

    • Improvement suggestion: Enhance the user interface for a smoother ordering experience.

    • Improvement suggestion: Implement a more accurate delivery time estimation system.

    • Improvement suggestion: Offer more personalized recommendations

  • Answered by AI
  • Q4. What is northstar metric, what would be northstar metric for Swiggy
  • Ans. 

    Northstar metric is the key metric that drives the core value of a product. For Swiggy, the northstar metric could be Daily Active Users (DAU) or Orders per User.

    • Northstar metric is the single metric that best captures the core value that your product delivers to customers.

    • For Swiggy, the northstar metric could be Daily Active Users (DAU) as it represents the number of unique users who engage with the platform on a dai...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain what you worked on, how did you grow the adoption of the feature.
  • Ans. 

    I worked on improving the adoption of a new feature by conducting user research, implementing user feedback, and creating targeted marketing campaigns.

    • Conducted user research to understand user needs and preferences

    • Implemented user feedback to make necessary improvements to the feature

    • Created targeted marketing campaigns to promote the feature to the right audience

  • Answered by AI
  • Q2. Design product to manage risks during an event. Sub-question- How would this change if the target market is tier 3 cities in India

Interview Preparation Tips

Topics to prepare for Keka HR Payroll Software Product Manager interview:
  • Product growth
  • Hr tech
Interview experience
1
Bad
Difficulty level
-
Process Duration
4-6 weeks
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Virtual Interview 

(1 Question)

  • Q1. No qualifications were discussed, more personal details were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - I had interview call with CEO Sameer. Firstly, he will drag it for long time unnecessarily
Second, don't fall for unrealistic offer he states

He asks inappropriate questions like:
1. Where do you want to go with me if we have to travel
2. What do you prefer if I have to buy you something
3. Do you go to parties, drink alcohol, what kind of dresses you wear, do you have friends, do you have a boyfriend
4. He literally stated clearly that he expects more of relationship, physical intimacy kindoff as part of job and he thinks it is fun

WTH was that. This organisation should be closed down for doing such fraudulent activities.

They have:
Fake reviews
Fake linkedin associated people
Inflated social numbers

And none of their leadership team's profiles are authentic on LinkedIn

They already have a strong base, it is fraudulent though which they can convert it into healthy structure where they can deliver real services, real jobs and do real job and generate some revenue

Anyways, this guy sameer definitely needs heavy brain detoxification to cleanse his thoughts and get to some positive terms

Jobseekers- STAY AWAY FROM THIS COMPANY. DO NOT WASTE YOUR TIME
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Java related framework?
  • Q2. Java related framework is Spring Boot, Eclipse, Visual Studio Code....etc.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do agile methodologies function in B2B projects?
  • Q2. What is your experience with barcode scanners?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Mintu Babu lives in a smaller house than her brother and in a larger house than her parents. Her children reside with her, and she has no other relatives. If Mintu Babu's relative U lives in a larger house than her relative S, then all the following may be true except: \n\n1) S is U's father \n\n2) S is U's mother \n\n3) U is younger than S \n\n4) S is younger than U

Round 2 - Technical 

(2 Questions)

  • Q1. 1. merge two linked list
  • Ans. 

    Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

    • Traverse both linked lists simultaneously

    • Compare the values of nodes and rearrange pointers accordingly

    • Continue until one of the lists is fully traversed

  • Answered by AI
  • Q2. 2. reverse a linked list.
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating pointers to reverse the direction.

    • Update the head of the linked list to be the previous node once iteration is complete.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is react why it's used?
Round 2 - Technical 

(1 Question)

  • Q1. What is virtual DOM in react?
Round 3 - Assignment 

Filter and shot the filter block based on title using redux?

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you please introduce yourself?
  • Ans. 

    I am a Software Development Engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience in developing web applications

    • Good team player

  • Answered by AI
  • Q2. What type of questions are being asked?

Interview Preparation Tips

Interview preparation tips for other job seekers - I am Anjali Singh from Prayagraj in Uttar Pradesh, and I have completed a Postgraduate Diploma in Computer Applications.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Manjara Charitable Trust's Rajiv Gandhi Institute of Technology, Mumbai and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Test was of 1.5 hrs and it was online. It was completely based on technical questions.

Round 2 - Coding Test 

This test was offline and it was a pen paper test wherein 10 questions will be given you have to write code or spot the error and correct them.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked questions about React
  • Q2. Question based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - For interview focus more on Resume. Prepare about project, skills, tech stack mentioned in resume. For coding prepare basic data structures and SQL

Smart Tech Infosystems Interview FAQs

How to prepare for Smart Tech Infosystems 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 Tech Infosystems. The most common topics and skills that interviewers at Smart Tech Infosystems expect are Data Center, IT Infrastructure, Project Management, client servicing and IT Service Delivery.

Tell us how to improve this page.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 141 Interviews
Zeus Learning Interview Questions
3.4
 • 34 Interviews
ENH iSecure Interview Questions
4.0
 • 29 Interviews
XenonStack Interview Questions
3.3
 • 25 Interviews
MulticoreWare Interview Questions
4.2
 • 23 Interviews
View all

Smart Tech Infosystems Reviews and Ratings

based on 43 reviews

4.3/5

Rating in categories

4.4

Skill development

4.5

Work-Life balance

4.4

Salary & Benefits

4.4

Job Security

4.4

Company culture

4.4

Promotions/Appraisal

4.4

Work Satisfaction

Explore 43 Reviews and Ratings
Senior HR Executive
5 salaries
unlock blur

₹4.1 L/yr - ₹5 L/yr

Associate Consultant
4 salaries
unlock blur

₹3.4 L/yr - ₹5.5 L/yr

System Administrator
4 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Desktop Support Engineer
4 salaries
unlock blur

₹2.2 L/yr - ₹3.2 L/yr

Storage Consultant
4 salaries
unlock blur

₹4 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Smart Tech Infosystems with

HCL Infosystems

3.9
Compare

Northcorp Software

4.4
Compare

Appsierra

4.3
Compare

Jetking Infotrain

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview