Upload Button Icon Add office photos

Filter interviews by

Straive Senior .NET Developer Interview Questions and Answers

Updated 14 Nov 2022

Straive Senior .NET Developer Interview Experiences

1 interview 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. Oops concepts, abstract
  • Q2. Interface, polymorphism

Interview Preparation Tips

Interview preparation tips for other job seekers - Not much more questions they asked .
Know technical answers

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Event loop in js
  • Ans. 

    Event loop in JavaScript manages asynchronous operations by executing callback functions in a queue.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It allows non-blocking I/O operations by executing callback functions in a queue.

    • Event loop continuously checks the call stack and the callback queue to determine which function to execute next.

    • setTimeout and setInterval functions are examples o...

  • Answered by AI
  • Q2. React Js questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not go per their job description. Interview can happen on different technologies also. I am .net developer and given interview on Javascript technologies(Nodejs, Reactjs) only. with in job description that primary skills is Net core

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java, JavaScript, and SQL.

    • 5 years of experience in software development

    • Proficient in Java, JavaScript, and SQL

    • Developed web applications for various clients

    • Strong problem-solving skills

    • Excellent team player

  • Answered by AI
  • Q2. What is your roles and responsibilities
  • Ans. 

    As a Software Developer, my roles and responsibilities include designing, developing, testing, and maintaining software applications.

    • Designing and developing software applications based on client requirements

    • Testing and debugging code to ensure functionality and performance

    • Collaborating with team members to brainstorm and implement new features

    • Maintaining and updating existing software applications

    • Staying up-to-date wi

  • Answered by AI
  • Q3. Explain about bug lifecycle
  • Ans. 

    Bug lifecycle involves identification, reporting, fixing, retesting, and closing of software bugs.

    • Identification: Bug is identified by testers or users through testing or real-world usage.

    • Reporting: Bug is reported to developers with detailed information like steps to reproduce.

    • Fixing: Developers analyze and fix the bug in the code.

    • Retesting: Testers verify the fix to ensure the bug is resolved.

    • Closing: Bug is closed o

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Case study with the topic provided
  • Q2. Questions on the resume

Skills evaluated in this interview

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

I was interviewed in Oct 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. What is sas, on Prem
  • Ans. 

    SAS on Prem refers to SAS software installed and operated on-premises rather than in the cloud.

    • SAS on Prem stands for SAS software that is deployed and managed on the organization's own servers.

    • It allows organizations to have full control over their data and infrastructure.

    • SAS on Prem is often preferred by organizations with strict data security and compliance requirements.

    • Examples of SAS on Prem solutions include SAS

  • Answered by AI
  • Q2. API automation explain?
  • Ans. 

    API automation involves using software tools to automatically test and interact with APIs.

    • API automation involves using scripts or tools to send requests to an API and validate the responses.

    • It helps in automating the testing of APIs to ensure they function correctly and meet requirements.

    • API automation can be done using tools like Postman, SoapUI, or programming languages like Python with libraries like requests.

  • Answered by AI
  • Q3. Explain about iqbot
  • Ans. 

    IQ Bot is an AI-powered cognitive automation solution that can learn from human behavior to handle unstructured data.

    • IQ Bot uses cognitive technology to extract and process unstructured data like emails, PDFs, and images.

    • It can learn from human corrections to improve accuracy over time.

    • IQ Bot can be integrated with RPA platforms like UiPath to automate end-to-end processes.

    • It is used in industries like finance, healthc...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ask questions related to CSS, Javascript, React, Node and Cloud stuff
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. SQL: Find the nth highest salary of employee?
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the nth highest salary of an employee.

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to specify the nth highest salary

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT n-1, 1

  • Answered by AI
  • Q2. SQL: Types of Joins in SQL?
  • Ans. 

    Types of joins in SQL include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN: Returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table.

    • FULL JOIN: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q3. Algorithm: BinarySearch algorithm using Recursion, explanation and implementation.
  • Ans. 

    BinarySearch algorithm using Recursion finds the target element in a sorted array by dividing the array in half at each step.

    • Divide the array in half and compare the target element with the middle element

    • If the target element is smaller, search the left half recursively

    • If the target element is larger, search the right half recursively

    • Repeat until the target element is found or the array is empty

  • Answered by AI
  • Q4. Given a string s and t find that s is a subsequence string in t or not?
  • Ans. 

    Check if string s is a subsequence of string t.

    • Iterate through both strings using two pointers.

    • Compare characters of s and t, moving pointer in t only if characters match.

    • If all characters of s are found in t in order, return true.

    • Example: s = 'abc', t = 'ahbgdc' => true

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Uikit explaination
  • Q2. Model classes with uikit
  • Ans. 

    Model classes in UIKit are used to represent data in an application's user interface.

    • Model classes in UIKit typically subclass NSObject and are used to store and manage data for views.

    • They can include properties to represent different data fields, methods to manipulate the data, and sometimes protocols for delegation.

    • For example, a model class for a user profile in a social media app might have properties like username...

  • Answered by AI
Round 2 - Coding Test 

Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Apt + coding questions, medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. Basics qs on oops and known programming language
Round 3 - Technical 

(1 Question)

  • Q1. In-depth of oops and live coding questions
Round 4 - HR 

(1 Question)

  • Q1. Basics qs like y and what
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Mar 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 - Aptitude Test 

Basic coding questions And logical questions

Round 3 - Coding Test 

Simple program for mathematics

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn basic coding in python for Fibonacci series and inverse or a string and all
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Oops ,array ,exception,

Round 2 - Assignment 

University Management system

Interview Preparation Tips

Topics to prepare for S&P Global Java Developer interview:
  • OOPS
  • HTML
  • Oracle
Interview preparation tips for other job seekers - job seekers should focus on research, networking, and skill development. Tailoring applications ,practicing interviews, and maintaining a professional online presence are crucial. stay position explore alternative opportunities like freelancing and feedback for continuous
improvement.

Straive Interview FAQs

How many rounds are there in Straive Senior .NET Developer interview?
Straive interview process usually has 2 rounds. The most common rounds in the Straive interview process are Resume Shortlist and Technical.
How to prepare for Straive Senior .NET Developer 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 Straive. The most common topics and skills that interviewers at Straive expect are .Net, .Net Core, API, ASP.Net MVC and AWS.
What are the top questions asked in Straive Senior .NET Developer interview?

Some of the top questions asked at the Straive Senior .NET Developer interview -

  1. Oops concepts, abstr...read more
  2. Interface, polymorph...read more

Tell us how to improve this page.

Straive Senior .NET Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

5.0

Work-Life balance

3.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Senior Executive
500 salaries
unlock blur

₹1.8 L/yr - ₹7.1 L/yr

Junior Executive
493 salaries
unlock blur

₹1 L/yr - ₹5.4 L/yr

Executive
402 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Project Manager
332 salaries
unlock blur

₹0.6 L/yr - ₹7 L/yr

Production Editor
300 salaries
unlock blur

₹1.3 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Straive with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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