Upload Button Icon Add office photos

Filter interviews by

Virtual Galaxy Infotech Software Developer Interview Questions, Process, and Tips

Updated 2 Feb 2024

Top Virtual Galaxy Infotech Software Developer Interview Questions and Answers

  • Q1. 14) How to make relation of master and transaction table on forms...?
  • Q2. 10) Types of Triggers used in forms ? Explain level wise, and uses of that triggers on that level....
  • Q3. 13) Exception Handling....Is it neccessory to write a exception in queries ?
View all 15 questions

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

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 Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. .net questions - routing in asp.net MVC ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing . Prepare well for interview on .Net technology stack

I applied via Campus Placement and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good

Round 2 - Technical 

(1 Question)

  • Q1. Basic question from C++.Some questions from Data structure and computer architecture.

Interview Preparation Tips

Topics to prepare for TCS Software Engineer interview:
  • C++
Interview preparation tips for other job seekers - Prepare well. Aptitude is not very easy so you have to prepare well.

I was interviewed in Sep 2016.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about Your project
  • Ans. 

    Developed a web-based project management tool for a software development company.

    • Used Agile methodology for development

    • Implemented features like task assignment, progress tracking, and team collaboration

    • Integrated with third-party tools like GitHub and Slack

    • Designed a user-friendly interface with responsive design

    • Deployed on AWS using EC2 and RDS

  • Answered by AI
  • Q2. Tell me about your CV!
  • Ans. 

    My CV showcases my experience in software development, including projects in Java, Python, and web development.

    • Experience in Java, Python, and web development

    • Worked on projects involving database management systems

    • Familiar with Agile development practices

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Tough! But manuplative ,yes manuplative ,I feel that your test scores are manuplated by the company! You score full marks in the test , but you are mechanical engineer you might not qualify for the next round! I say this as per ny experience . POINTER ,BRANCH and then score in this test describe the overall perfomance!
Tips: The company is totally for IT engineers if you are from other branch fonnot hope much, have a backup.
Duration: 1 hour 20 minutes
Total Questions: 80

Round: Technical + HR Interview
Experience: They Play with your minds,yes they do! Believe me donot show tough expressions!
Tips: Stay Calm ,they are not to scare you!

Skills: Technical, knowledge, gritt, Behavioural Skills
College Name: Atharva College Of Engineering

I was interviewed in May 2017.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your Project done in 4th year Btech
  • Ans. 

    Developed a web-based project management system for tracking tasks and deadlines.

    • Used HTML, CSS, JavaScript for front-end development

    • Implemented backend using Node.js and MongoDB for database management

    • Incorporated user authentication and authorization features

    • Utilized Agile methodology for project management

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 3 hours

Round: Technical + HR Interview
Experience: They asked several questions regarding all the bio data and some computer questions and some hr level questions

Round: Resume Shortlist
Experience: Resume got shortlisted and I got the Job that time I even can't believe that

College Name: ITER BHUBANESWSR

I was interviewed before Jun 2016.

Interview Questionnaire 

2 Questions

  • Q1. How to start an induction motor?
  • Ans. 

    An induction motor can be started by providing a rotating magnetic field.

    • Use a three-phase power supply to create a rotating magnetic field

    • The magnetic field induces a current in the rotor, causing it to rotate

    • The motor may require a starting capacitor or a starting winding to provide the initial torque

    • Once the motor reaches its rated speed, the starting mechanism can be switched off

  • Answered by AI
  • Q2. Tell me something about yourself?
  • Ans. 

    I am a passionate software engineer with 5 years of experience in developing web applications using various technologies.

    • Experienced in full stack web development

    • Proficient in languages like JavaScript, Python, and Java

    • Familiar with frameworks like React, Node.js, and Spring Boot

    • Strong problem-solving and analytical skills

    • Excellent team player with good communication skills

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was a wonderful experience overall. Giving an online test with my batch mates was amazing. I did the test very well and with ease.
Tips: Just enter the exam hall with confidence...
Duration: 1 hour 30 minutes
Total Questions: 90

Round: Technical + HR Interview
Experience: As I was strong in basics so I was able to answer this quest. He asked few related questions and I was able to give right answers.
Tips: Be strong in core subject basics and forget the rest of the subjects completely. They just want to see how much faithful you are with whatever you do. Moreover, just tell your name, state of birth, schooling, hobbies, etc(with free mind). They are just recruiters and not butchers, so stay calm as much as you can.

College Name: Maharaja Agrasen Institute Of Technology, Delhi

I was interviewed in Mar 2017.

Interview Preparation Tips

Skills: Interpersonal Communication, Tech Question

I was interviewed in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. About yourself and technical questions

Interview Preparation Tips

Round: Test
Experience: We had an aptitude test with puzzles and verbal
Tips: Concentrate on aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical + HR Interview
Experience: Formal question are asked and mostly communication is important

College Name: Sri Krishna College Of Engineering And Technology

I was interviewed before May 2016.

Interview Questionnaire 

3 Questions

  • Q1. Why do u want to enter software industry??
  • Ans. 

    Passion for problem-solving and creating innovative solutions drives my interest in software industry.

    • Passion for problem-solving and creating innovative solutions

    • Interest in technology and its impact on society

    • Opportunity for continuous learning and growth

    • Desire to work on cutting-edge projects and contribute to advancements in the field

  • Answered by AI
  • Q2. Why infosys??
  • Ans. 

    Infosys is a global leader in technology services and consulting, known for its innovative solutions and strong company culture.

    • Infosys has a strong reputation for delivering high-quality technology solutions to clients worldwide.

    • The company offers a wide range of opportunities for career growth and development.

    • Infosys has a collaborative and inclusive work culture that values diversity and innovation.

  • Answered by AI
  • Q3. Tell something about ur final year project
  • Ans. 

    Developed a web-based project management system for tracking tasks and deadlines

    • Used HTML, CSS, JavaScript for front-end development

    • Implemented backend using Node.js and MongoDB for database management

    • Incorporated user authentication and authorization features

    • Tested the system for performance and security vulnerabilities

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: In this round company chooses the resume of candidates they believe are suitable for the job

Round: Test
Experience: This round basically tests your logical reasoning skills and your mathematical ability
Duration: 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: Being a metallurgical engineer and trying to enter in a software industry I was mostly asked as to why I want to enter into this sector and other hr questions. To some extent I was drilled on my final year project in engineering

College Name: NIT Raipur

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 API, ASP.Net, Analytics, C# and CSS.
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.

Virtual Galaxy Infotech Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Virtual Galaxy Infotech Software Developer Salary
based on 95 salaries
₹2 L/yr - ₹6.4 L/yr
61% less than the average Software Developer Salary in India
View more details

Virtual Galaxy Infotech Software Developer Reviews and Ratings

based on 11 reviews

3.1/5

Rating in categories

2.6

Skill development

4.3

Work-life balance

2.4

Salary

4.3

Job security

2.7

Company culture

2.2

Promotions

3.3

Work satisfaction

Explore 11 Reviews and Ratings
Software Developer
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Support Executive
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Java Developer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Administrator
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Virtual Galaxy Infotech with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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