Upload Button Icon Add office photos

VARSUN eTechnologies

Compare button icon Compare button icon Compare

Filter interviews by

VARSUN eTechnologies Interview Questions and Answers

Updated 27 Sep 2024
Popular Designations

8 Interview questions

A fresher was asked
Q. Write a query to get the full name of employees from the employee table.
Ans. 

Query to retrieve full name of employees from employee table.

  • Use SELECT statement to retrieve data from employee table.

  • Concatenate first name and last name columns using CONCAT function.

  • Use AS keyword to give an alias name to the concatenated column.

View all fresher interview questions
A fresher was asked
Q. Write a program to determine if a number is prime or not.
Ans. 

A program to check if a given number is prime or not.

  • Take input from user

  • Check if the number is less than 2, then it is not a prime number

  • Loop through numbers from 2 to n-1 and check if n is divisible by any of them

  • If n is divisible by any number, then it is not a prime number

  • If n is not divisible by any number, then it is a prime number

View all fresher interview questions
A fresher was asked
Q. Write a program to swap two numbers.
Ans. 

Program to swap two numbers

  • Declare two variables and assign values to them

  • Use a third variable to store the value of the first variable

  • Assign the value of the second variable to the first variable

  • Assign the value of the third variable to the second variable

View all fresher interview questions
🔥 Asked by recruiter 2 times
A fresher was asked
Q. What are classes and objects?
Ans. 

Class is a blueprint for creating objects. Objects are instances of a class that have their own unique properties and behaviors.

  • A class is a template or blueprint for creating objects

  • An object is an instance of a class with its own unique properties and behaviors

  • Classes define the properties and methods that objects of that class will have

  • Objects can interact with each other through their methods and properties

  • Exa...

View all fresher interview questions
A fresher was asked
Q. What are access modifiers in Python?
Ans. 

Access modifiers in Python are keywords used to restrict access to class members.

  • Python has three access modifiers: public, protected, and private.

  • Public members can be accessed from anywhere outside the class.

  • Protected members can be accessed within the class and its subclasses.

  • Private members can only be accessed within the class.

  • Public members are denoted by no underscore, protected members by a single undersco...

View all fresher interview questions
A fresher was asked
Q. Write a program to determine if a number is prime.
Ans. 

Program to check if a number is prime or not

  • A prime number is only divisible by 1 and itself

  • Loop through numbers from 2 to n-1 and check if n is divisible by any of them

  • If n is divisible by any number, it is not prime

  • If n is not divisible by any number, it is prime

View all fresher interview questions
A fresher was asked
Q. Write a program on prime number and write query in SQL.
Ans. 

Program to check prime numbers and SQL query for prime numbers.

  • Use a loop to check if a number is divisible by any number less than itself.

  • In SQL, use a subquery to check if a number is divisible by any number less than itself.

  • To optimize, only check divisibility up to the square root of the number.

View all fresher interview questions
Are these interview questions helpful?
A Java Developer was asked
Q. What is SQL,write a query?
Ans. 

SQL is a programming language used to manage and manipulate relational databases.

  • SQL stands for Structured Query Language.

  • It is used to create, modify, and query databases.

  • Example query: SELECT * FROM customers WHERE city='New York';

View all Java Developer interview questions

VARSUN eTechnologies Interview Experiences

4 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

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

On string programs, frequency, count of string

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

(1 Question)

  • Q1. About the SDLC, STLC, Writing Test cases , basics of Java and Selenium

fresher Interview Questions & Answers

user image Anonymous

posted on 20 May 2023

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

I applied via Campus Placement and was interviewed in Apr 2023. 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 - Coding Test 

Html,css,python,c#,Java

Round 3 - Technical 

(9 Questions)

  • Q1. Programs on 3 questions we need to write 1 question to answer.
  • Q2. Based on our background they will ask to us.
  • Q3. Write a program on prime number and write query in SQL.
  • Ans. 

    Program to check prime numbers and SQL query for prime numbers.

    • Use a loop to check if a number is divisible by any number less than itself.

    • In SQL, use a subquery to check if a number is divisible by any number less than itself.

    • To optimize, only check divisibility up to the square root of the number.

  • Answered by AI
  • Q4. Write a program on prime number or not
  • Ans. 

    A program to check if a given number is prime or not.

    • Take input from user

    • Check if the number is less than 2, then it is not a prime number

    • Loop through numbers from 2 to n-1 and check if n is divisible by any of them

    • If n is divisible by any number, then it is not a prime number

    • If n is not divisible by any number, then it is a prime number

  • Answered by AI
  • Q5. Write query to get full name of a employees from employee table.
  • Ans. 

    Query to retrieve full name of employees from employee table.

    • Use SELECT statement to retrieve data from employee table.

    • Concatenate first name and last name columns using CONCAT function.

    • Use AS keyword to give an alias name to the concatenated column.

  • Answered by AI
  • Q6. Write program swapping of a two numbers?
  • Ans. 

    Program to swap two numbers

    • Declare two variables and assign values to them

    • Use a third variable to store the value of the first variable

    • Assign the value of the second variable to the first variable

    • Assign the value of the third variable to the second variable

  • Answered by AI
  • Q7. Write a program a number is prime number or not?
  • Ans. 

    Program to check if a number is prime or not

    • A prime number is only divisible by 1 and itself

    • Loop through numbers from 2 to n-1 and check if n is divisible by any of them

    • If n is divisible by any number, it is not prime

    • If n is not divisible by any number, it is prime

  • Answered by AI
  • Q8. What is access modifires in python?
  • Ans. 

    Access modifiers in Python are keywords used to restrict access to class members.

    • Python has three access modifiers: public, protected, and private.

    • Public members can be accessed from anywhere outside the class.

    • Protected members can be accessed within the class and its subclasses.

    • Private members can only be accessed within the class.

    • Public members are denoted by no underscore, protected members by a single underscore, a...

  • Answered by AI
  • Q9. What is class and object?
  • Ans. 

    Class is a blueprint for creating objects. Objects are instances of a class that have their own unique properties and behaviors.

    • A class is a template or blueprint for creating objects

    • An object is an instance of a class with its own unique properties and behaviors

    • Classes define the properties and methods that objects of that class will have

    • Objects can interact with each other through their methods and properties

    • Example:...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for VARSUN eTechnologies fresher interview:
  • java programs
  • python programs
Interview preparation tips for other job seekers - Do hardwork on writing programs in logical way.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Apr 2023. There were 4 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 - Coding Test 

1hour time,and questions on python,HTML,CSS,java,C#

Round 3 - Technical 

(2 Questions)

  • Q1. Write a program for christmas tree with 8 and 4 stars?
  • Q2. Write a program on save the prisoner?
Round 4 - HR 

(5 Questions)

  • Q1. What is python?
  • Q2. What is class and object?
  • Q3. What is javascript?
  • Q4. What is database?
  • Q5. What is SQL,write a query?
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases.

    • SQL stands for Structured Query Language.

    • It is used to create, modify, and query databases.

    • Example query: SELECT * FROM customers WHERE city='New York';

  • Answered by AI

Interview Preparation Tips

Topics to prepare for VARSUN eTechnologies Java Developer interview:
  • programming languages
  • logical programs
Interview preparation tips for other job seekers - This interview was very interesting,and beautiful,by this we can learn so many things,like how to answer a logical question and how to solve a error in programs.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (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 VARSUN eTechnologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Feb 2020. There were 8 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. General questions related to your educational background.
  • Q2. Some questions that required common sense.
  • Q3. Any thing related to your previous job.
  • Ans. 

    In my previous role, I led a team to enhance operational efficiency and drive strategic initiatives, resulting in significant growth.

    • Implemented a new project management system that improved team collaboration and reduced project delivery times by 20%.

    • Developed a comprehensive training program that increased employee engagement and reduced turnover rates by 15%.

    • Spearheaded a market analysis initiative that identified n...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Self belief, confidence and never say die attitude,don't get desperate,u will get it.

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is Company payroll Process
  • Ans. 

    Company payroll process is the system used to manage employee compensation and benefits.

    • Payroll process includes calculating employee salaries, taxes, and deductions

    • It also involves managing employee benefits such as health insurance and retirement plans

    • Payroll process can be done in-house or outsourced to a third-party provider

    • It is important to ensure compliance with labor laws and regulations

    • Payroll process can be a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My Team members is very good

I applied via Walk-in and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. About myself, my work experience and all
  • Q2. Asked about famliy background

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skill must be good.
Are these interview questions helpful?

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java 8, J2EE, Spring, SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - There were four rounds. Technical written, two technical f2f rounds, coding test.

All the best

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All Technical quetions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared technically

VARSUN eTechnologies Interview FAQs

How many rounds are there in VARSUN eTechnologies interview?
VARSUN eTechnologies interview process usually has 2-3 rounds. The most common rounds in the VARSUN eTechnologies interview process are Coding Test, Technical and Resume Shortlist.
What are the top questions asked in VARSUN eTechnologies interview?

Some of the top questions asked at the VARSUN eTechnologies interview -

  1. write a program on prime number and write query in S...read more
  2. write query to get full name of a employees from employee tab...read more
  3. write a program for christmas tree with 8 and 4 sta...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.7
 • 5.9k Interviews
EXL Service Interview Questions
3.7
 • 805 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 628 Interviews
UST Interview Questions
3.8
 • 544 Interviews
View all

VARSUN eTechnologies Reviews and Ratings

based on 19 reviews

3.9/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.6

Salary

3.9

Job security

3.8

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 19 Reviews and Ratings
UI / UX Developer

Kolkata,

Mumbai

+5

5-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
24 salaries
unlock blur

₹3.6 L/yr - ₹9 L/yr

Software Developer
11 salaries
unlock blur

₹3.3 L/yr - ₹7.9 L/yr

Business Analyst
10 salaries
unlock blur

₹2.5 L/yr - ₹7.8 L/yr

Softwaretest Engineer
5 salaries
unlock blur

₹2.5 L/yr - ₹6.8 L/yr

Marketing Executive
4 salaries
unlock blur

₹3.2 L/yr - ₹4.1 L/yr

Explore more salaries
Compare VARSUN eTechnologies with

Cognizant

3.7
Compare

EXL Service

3.7
Compare

Optum Global Solutions

4.0
Compare

Hexaware Technologies

3.5
Compare
write
Share an Interview