Upload Button Icon Add office photos

Filter interviews by

Ishven Systems Software Developer Interview Questions, Process, and Tips

Updated 17 Dec 2020

Ishven Systems Software Developer Interview Experiences

1 interview found

Interview Questionnaire 

5 Questions

  • Q1. Basic c# Asp.net sql server
  • Q2. How does garbage collector works?
  • Ans. 

    Garbage collector automatically frees up memory by identifying and removing unused objects.

    • Garbage collector is a part of the runtime environment.

    • It periodically scans the heap memory for objects that are no longer in use.

    • It identifies and removes these objects, freeing up memory for other objects.

    • Garbage collector uses different algorithms like Mark and Sweep, Reference Counting, etc.

    • Example: Java has a garbage collec...

  • Answered by AI
  • Q3. What is session management ?
  • Ans. 

    Session management refers to the process of securely managing user sessions on a web application.

    • It involves creating a unique session ID for each user upon login.

    • The session ID is stored in a cookie or URL parameter and is used to identify the user's session.

    • Session data is stored on the server and can include user information, preferences, and activity.

    • Session timeouts are set to ensure that inactive sessions are ter...

  • Answered by AI
  • Q4. How to optimize sql query?
  • Ans. 

    Optimizing SQL queries involves reducing the number of operations and improving indexing.

    • Use indexes to speed up query execution

    • Avoid using SELECT * and only select necessary columns

    • Use WHERE clause to filter data before joining tables

    • Avoid using subqueries and instead use JOINs

    • Use EXPLAIN to analyze query performance

  • Answered by AI
  • Q5. What is the difference between dataset and datareader?
  • Ans. 

    Dataset is an in-memory representation of data while DataReader is a forward-only, read-only stream of data.

    • Dataset is disconnected while DataReader is connected.

    • Dataset can hold multiple tables while DataReader can hold only one.

    • Dataset can be used to update data while DataReader cannot.

    • DataReader is faster and more efficient for reading large amounts of data.

    • Example: Dataset is used to hold data retrieved from a data...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for a long interview it takes 30 to 60 minutes.

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join the company
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of Python
  • Q2. Basics of SQL and SQL query questions
Round 3 - Technical 

(2 Questions)

  • Q1. Detailed discussion about previous projects
  • Q2. Python and SQL questions
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy round anyone with basic maths can clear the round.

Round 2 - Group Discussion 

The topic given to us is online education system,and the round was easy to clear.

Round 3 - One-on-one 

(1 Question)

  • Q1. Call by value vs call by reference
  • Ans. 

    Call by value passes a copy of the variable, while call by reference passes the actual variable.

    • Call by value: changes to the parameter inside the function do not affect the original variable.

    • Call by reference: changes to the parameter inside the function affect the original variable.

    • Example: Call by value - int x = 5; func(x); // x remains 5. Call by reference - int x = 5; func(&x); // x changes to the value set i

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Maharaja Agrasen Institute of Technology, Delhi and was interviewed in May 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Round 5 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Armstrong number
Pattern Printing

Interview Preparation Tips

Topics to prepare for Systenics Solutions Software Developer interview:
  • Oops and Java basic
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was gud & they asked simple interview questions

Round 2 - HR 

(2 Questions)

  • Q1. Past experience
  • Q2. Why do u want to join the company
  • Ans. 

    I am impressed by the company's innovative projects and collaborative work culture.

    • I am excited about the opportunity to work on cutting-edge technologies and contribute to impactful projects.

    • I value the company's focus on teamwork and collaboration, which aligns with my own work style.

    • I believe the company's reputation for fostering professional growth and development will help me advance in my career.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

I applied for java developer role. I have 1 question paper I written the test . Then they will check and conduct for second round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nill
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was about aptitude test

Round 2 - Coding Test 

It had leetcode question

Interview Preparation Tips

Topics to prepare for Accentuate Technology Software Developer interview:
  • DSA
Interview preparation tips for other job seekers - Do prepare well before interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Frontend assement on react js functionality problems

Ishven Systems Interview FAQs

What are the top questions asked in Ishven Systems Software Developer interview?

Some of the top questions asked at the Ishven Systems Software Developer interview -

  1. What is the difference between dataset and dataread...read more
  2. How does garbage collector work...read more
  3. How to optimize sql que...read more

Tell us how to improve this page.

System Analyst
4 salaries
unlock blur

₹11.8 L/yr - ₹14.5 L/yr

Explore more salaries
Compare Ishven Systems with

Any Brand

4.1
Compare

Electrical Maintenance

4.1
Compare

Meghmani Industries

3.5
Compare

Vistra Corporate Services

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