Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Virtual Galaxy Infotech Team. If you also belong to the team, you can get access from here

Virtual Galaxy Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Virtual Galaxy Infotech Software Developer Interview Questions and Answers

Updated 2 Feb 2024

15 Interview questions

A Software Developer was asked
Q. Is it necessary to implement exception handling in queries?
Ans. 

Yes, exception handling is necessary in queries.

  • Exception handling helps to handle unexpected errors and prevent application crashes.

  • It also helps to provide meaningful error messages to the user.

  • In SQL, exceptions can be handled using the TRY-CATCH block.

  • In NoSQL databases, exceptions can be handled using error codes and messages.

A Software Developer was asked
Q. What are the Set operators and their uses?
Ans. 

Set operators are used to combine or compare sets in SQL.

  • UNION operator combines two sets and removes duplicates

  • INTERSECT operator returns only common elements in two sets

  • EXCEPT operator returns elements in one set but not in the other

  • ALL keyword can be used with set operators to include duplicates

  • Set operators can only be used with compatible data types

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. Explain the types of single-row functions and group functions in SQL.
Ans. 

Single row functions operate on a single row and return one result per row. Group functions operate on a group of rows and return one result per group.

  • Single row functions include: numeric functions, character functions, date functions, conversion functions, and general functions.

  • Group functions include: AVG, COUNT, MAX, MIN, SUM.

  • Single row functions can be used in SELECT, WHERE, and ORDER BY clauses.

  • Group functio...

A Software Developer was asked
Q. What types of triggers are used in forms? Explain them level-wise, and their uses at each level.
Ans. 

Triggers used in forms and their levels and uses.

  • Types of triggers: Pre-Form, Post-Form, Item, Validation, Navigation, Transaction

  • Pre-Form triggers execute before the form is displayed

  • Post-Form triggers execute after the form is closed

  • Item triggers execute when a user interacts with an item on the form

  • Validation triggers execute when a user enters data into an item

  • Navigation triggers execute when a user navigates ...

A Software Developer was asked
Q. What are Delete and Truncate? Differentiate them.
Ans. 

Delete and Truncate are SQL commands used to remove data from a table, but they differ in their approach.

  • DELETE is a DML command that removes specific rows from a table based on a condition.

  • TRUNCATE is a DDL command that removes all the rows from a table and resets the identity of the table.

  • DELETE is slower than TRUNCATE as it logs the data changes, whereas TRUNCATE does not.

  • DELETE can be rolled back, but TRUNCATE...

A Software Developer was asked
Q. What is the difference between a PROCEDURE and a FUNCTION?
Ans. 

Procedures do not return values while functions return values.

  • Procedures are used to perform an action while functions are used to calculate and return a value.

  • Functions can be used in expressions while procedures cannot.

  • Functions have a return type while procedures do not.

  • Functions can have input parameters and return values while procedures can only have input parameters.

  • Examples of functions include Math.max() ...

A Software Developer was asked
Q. What are the different types of loops?
Ans. 

There are three types of loops: for, while, and do-while.

  • For loop: executes a block of code a fixed number of times.

  • While loop: executes a block of code as long as the condition is true.

  • Do-while loop: executes a block of code at least once, then repeats as long as the condition is true.

Are these interview questions helpful?
A Software Developer was asked
Q. Write a subquery.
Ans. 

A subquery is a query nested inside another query. It is used to retrieve data from multiple tables or perform complex calculations.

  • A subquery is enclosed within parentheses and is usually placed within the WHERE or HAVING clause of the outer query.

  • The result of the subquery is used by the outer query to filter or manipulate the data.

  • Subqueries can be used to retrieve data from multiple tables, perform calculation...

A Software Developer was asked
Q. How do you establish a relationship between master and transaction tables on forms?
Ans. 

Master table should have a primary key which is used as a foreign key in the transaction table.

  • Create a primary key in the master table

  • Create a foreign key in the transaction table that references the primary key in the master table

  • Use the foreign key to link the two tables on forms

A Software Developer was asked
Q. 4) Write a queries of PROCEDURE, FUNCTION, CURSOR...
Ans. 

Sample queries for PROCEDURE, FUNCTION, CURSOR

  • PROCEDURE: CREATE PROCEDURE get_employee_details AS SELECT * FROM employees;

  • FUNCTION: CREATE FUNCTION get_employee_count RETURN NUMBER IS count NUMBER; BEGIN SELECT COUNT(*) INTO count FROM employees; RETURN count; END;

  • CURSOR: DECLARE emp_cursor CURSOR FOR SELECT * FROM employees; OPEN emp_cursor; FETCH emp_cursor INTO emp_record; CLOSE emp_cursor;

Virtual Galaxy Infotech Software Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Angular, Javascript, HTML, CSS
Round 2 - Coding Test 

Angular releted Coding

I applied via Company Website and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

15 Questions

  • Q1. 1) Write a query of Sub Query .....
  • Ans. 

    A subquery is a query nested inside another query. It is used to retrieve data from multiple tables or perform complex calculations.

    • A subquery is enclosed within parentheses and is usually placed within the WHERE or HAVING clause of the outer query.

    • The result of the subquery is used by the outer query to filter or manipulate the data.

    • Subqueries can be used to retrieve data from multiple tables, perform calculations, or...

  • Answered by AI
  • Q2. 2) What is Delete and Truncate. Differentiate them....
  • Ans. 

    Delete and Truncate are SQL commands used to remove data from a table, but they differ in their approach.

    • DELETE is a DML command that removes specific rows from a table based on a condition.

    • TRUNCATE is a DDL command that removes all the rows from a table and resets the identity of the table.

    • DELETE is slower than TRUNCATE as it logs the data changes, whereas TRUNCATE does not.

    • DELETE can be rolled back, but TRUNCATE cann...

  • Answered by AI
  • Q3. 3) What is View...
  • Ans. 

    A View is a user interface element that displays information or interacts with the user.

    • A View is a fundamental building block of Android UI.

    • It can be a button, text field, image, or any other interactive element.

    • Views can be arranged in a hierarchy to create complex UI layouts.

    • Each View has its own set of properties that can be customized, such as size, color, and behavior.

  • Answered by AI
  • Q4. 4) Write a queries of PROCEDURE, FUNCTION, CURSOR...
  • Ans. 

    Sample queries for PROCEDURE, FUNCTION, CURSOR

    • PROCEDURE: CREATE PROCEDURE get_employee_details AS SELECT * FROM employees;

    • FUNCTION: CREATE FUNCTION get_employee_count RETURN NUMBER IS count NUMBER; BEGIN SELECT COUNT(*) INTO count FROM employees; RETURN count; END;

    • CURSOR: DECLARE emp_cursor CURSOR FOR SELECT * FROM employees; OPEN emp_cursor; FETCH emp_cursor INTO emp_record; CLOSE emp_cursor;

  • Answered by AI
  • Q5. 5) What are the types of LOOPS ?
  • Ans. 

    There are three types of loops: for, while, and do-while.

    • For loop: executes a block of code a fixed number of times.

    • While loop: executes a block of code as long as the condition is true.

    • Do-while loop: executes a block of code at least once, then repeats as long as the condition is true.

  • Answered by AI
  • Q6. 6) What is the Packages, Index, Sequences...
  • Ans. 

    Packages, Index, and Sequences are all related to data organization and management in programming.

    • Packages are collections of related classes and interfaces that are used to organize code.

    • Index is a data structure that allows for efficient searching and retrieval of data.

    • Sequences are ordered collections of elements that can be accessed by their position in the sequence.

    • Examples include the Java Collections Framework, ...

  • Answered by AI
  • Q7. 7) Difference between PROCEDURE & FUNCTION ?
  • Ans. 

    Procedures do not return values while functions return values.

    • Procedures are used to perform an action while functions are used to calculate and return a value.

    • Functions can be used in expressions while procedures cannot.

    • Functions have a return type while procedures do not.

    • Functions can have input parameters and return values while procedures can only have input parameters.

    • Examples of functions include Math.max() and S...

  • Answered by AI
  • Q8. 8) Types of Canvas in forms
  • Ans. 

    Canvas in forms can be of different types like HTML5 Canvas, SVG Canvas, and PDF Canvas.

    • HTML5 Canvas allows for drawing graphics using JavaScript

    • SVG Canvas is scalable and can be manipulated with CSS

    • PDF Canvas is used for generating PDF documents programmatically

  • Answered by AI
  • Q9. 9) Types of forms..
  • Ans. 

    There are various types of forms used in software development.

    • Web Forms - used for collecting user input on a website

    • Windows Forms - used for creating desktop applications

    • Mobile Forms - used for creating mobile applications

    • Dialog Forms - used for displaying messages or alerts to the user

    • Modal Forms - used for capturing user input before allowing further interaction

    • Wizard Forms - used for guiding the user through a mult...

  • Answered by AI
  • Q10. 10) Types of Triggers used in forms ? Explain level wise, and uses of that triggers on that level....
  • Ans. 

    Triggers used in forms and their levels and uses.

    • Types of triggers: Pre-Form, Post-Form, Item, Validation, Navigation, Transaction

    • Pre-Form triggers execute before the form is displayed

    • Post-Form triggers execute after the form is closed

    • Item triggers execute when a user interacts with an item on the form

    • Validation triggers execute when a user enters data into an item

    • Navigation triggers execute when a user navigates betwe...

  • Answered by AI
  • Q11. 11) SQL function - types of single row function and group functions.. Explain it...
  • Ans. 

    Single row functions operate on a single row and return one result per row. Group functions operate on a group of rows and return one result per group.

    • Single row functions include: numeric functions, character functions, date functions, conversion functions, and general functions.

    • Group functions include: AVG, COUNT, MAX, MIN, SUM.

    • Single row functions can be used in SELECT, WHERE, and ORDER BY clauses.

    • Group functions ar...

  • Answered by AI
  • Q12. 12) What are the Set operators and their uses...?
  • Ans. 

    Set operators are used to combine or compare sets in SQL.

    • UNION operator combines two sets and removes duplicates

    • INTERSECT operator returns only common elements in two sets

    • EXCEPT operator returns elements in one set but not in the other

    • ALL keyword can be used with set operators to include duplicates

    • Set operators can only be used with compatible data types

  • Answered by AI
  • Q13. 13) Exception Handling....Is it neccessory to write a exception in queries ?
  • Ans. 

    Yes, exception handling is necessary in queries.

    • Exception handling helps to handle unexpected errors and prevent application crashes.

    • It also helps to provide meaningful error messages to the user.

    • In SQL, exceptions can be handled using the TRY-CATCH block.

    • In NoSQL databases, exceptions can be handled using error codes and messages.

  • Answered by AI
  • Q14. 14) How to make relation of master and transaction table on forms...?
  • Ans. 

    Master table should have a primary key which is used as a foreign key in the transaction table.

    • Create a primary key in the master table

    • Create a foreign key in the transaction table that references the primary key in the master table

    • Use the foreign key to link the two tables on forms

  • Answered by AI
  • Q15. 15) Types of reports ?
  • Ans. 

    Reports can be categorized into operational, analytical, and statutory reports.

    • Operational reports provide information on day-to-day activities.

    • Analytical reports provide insights into data trends and patterns.

    • Statutory reports are required by law and must be submitted to regulatory bodies.

    • Other types of reports include ad hoc reports, exception reports, and dashboards.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one. There was a two round, Written and practical. Both was technical. In first round (Written) interviewer test my basic knowledge of SQL queries. In second round (Practical) interviewer assign me a machine test, and told me to make a simple master form and report, also to create a table in database as per the columns used to store the date from forms... It lasted for about 1 hour. The interviewer wanted to test both my theoretical and practical knowledge. Luckily I was able to answer most of the questions correctly and complete my machine test on time. Interview was a easy. They asked me a questions as per my experience. You need to stay clam and should apply presence of mind. Make your resume properly. Fill all required information .

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Virtual Galaxy Infotech?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

There were 3 questions, which I had to do in 2 hours.
the questions were from arrays and Strings

Round 3 - One-on-one 

(1 Question)

  • Q1. They asked me concepts on OOPS and OS, also coding question on strings. all these were basic questions
Round 4 - HR 

(1 Question)

  • Q1. Questions such as where do you see yourself in coming years, interests and hobbies.

Interview Preparation Tips

Topics to prepare for HALODOC Software Engineer interview:
  • OOPS
  • Operating Systems
  • Coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Dsa. , oops and basics of database management

Round 2 - Technical 

(2 Questions)

  • Q1. System design questions basics
  • Q2. Hiring managers questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions that includes coding as well
Round 2 - Technical 

(1 Question)

  • Q1. Technical and Managerial discussion
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Software Engineer Interview Questions & Answers

CyberArk user image Prasad Ashok Ajmire

posted on 29 Feb 2024

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. List tuple python memory management Codig question RestAPIs HTTP methods State Management UI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is VTable and VPtr
  • Ans. 

    VTable is a table of function pointers used in object-oriented programming to implement polymorphism. VPtr is a pointer to the VTable.

    • VTable is used to store pointers to virtual functions in a class.

    • VPtr points to the VTable of an object to enable dynamic dispatch of virtual functions.

    • VTable and VPtr are used in C++ to implement polymorphism and dynamic binding.

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - Technical 

(1 Question)

  • Q1. Had discussion about C, DS in depth
Round 4 - Technical 

(1 Question)

  • Q1. Questions about C and DS and basics of OS.
Round 5 - HR 

(1 Question)

  • Q1. What are the strengths and weaknesses of yours.
  • Ans. 

    Identifying strengths and weaknesses helps in personal growth and team dynamics, fostering a culture of continuous improvement.

    • Strength: Strong problem-solving skills - I enjoy tackling complex challenges, like optimizing algorithms for better performance in previous projects.

    • Strength: Effective communication - I can clearly articulate technical concepts to non-technical stakeholders, ensuring everyone is aligned.

    • Weakn...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through C, DS, Linux and C++.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Paper based exam based on C and embedded c

Round 2 - One-on-one 

(1 Question)

  • Q1. Relevant questions asked

I applied via Other and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic C language question like what is pointer ,Array,structure,Call by reference, Difference between union and structure. Some programming question are prime number,factorial,fabonacci series,strings etc

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good first of all learn every basic programming question and some times it also depend on interviewer

Virtual Galaxy Infotech Interview FAQs

How many rounds are there in Virtual Galaxy Infotech Software Developer interview?
Virtual Galaxy Infotech interview process usually has 2 rounds. The most common rounds in the Virtual Galaxy Infotech interview process are Technical and Coding Test.
How to prepare for Virtual Galaxy Infotech Software 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 Virtual Galaxy Infotech. The most common topics and skills that interviewers at Virtual Galaxy Infotech expect are Javascript, Python, API, ASP.Net and Algorithms.
What are the top questions asked in Virtual Galaxy Infotech Software Developer interview?

Some of the top questions asked at the Virtual Galaxy Infotech Software Developer interview -

  1. 14) How to make relation of master and transaction table on forms....read more
  2. 10) Types of Triggers used in forms ? Explain level wise, and uses of that trig...read more
  3. 13) Exception Handling....Is it neccessory to write a exception in querie...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Virtual Galaxy Infotech Software Developer Salary
based on 101 salaries
₹2 L/yr - ₹5.2 L/yr
68% less than the average Software Developer Salary in India
View more details

Virtual Galaxy Infotech Software Developer Reviews and Ratings

based on 12 reviews

2.9/5

Rating in categories

2.5

Skill development

4.3

Work-life balance

2.3

Salary

4.3

Job security

2.5

Company culture

2.1

Promotions

3.2

Work satisfaction

Explore 12 Reviews and Ratings
Software Developer (React.js)

Nagpur

2-4 Yrs

₹ 2.5-6.4 LPA

Software Developer (Python)

Nagpur

2-4 Yrs

₹ 2-5.2 LPA

Explore more jobs
Software Developer
101 salaries
unlock blur

₹2 L/yr - ₹5.2 L/yr

Software Support Executive
17 salaries
unlock blur

₹1.2 L/yr - ₹3.6 L/yr

Java Developer
15 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

System Administrator
14 salaries
unlock blur

₹2.5 L/yr - ₹5.4 L/yr

Plsql Developer
12 salaries
unlock blur

₹1.8 L/yr - ₹7 L/yr

Explore more salaries
Compare Virtual Galaxy Infotech with

Yalamanchili Software Exports

3.2
Compare

Global Edge Software

3.5
Compare

PagarBook

3.7
Compare

Futran Solutions

4.0
Compare
write
Share an Interview