Upload Button Icon Add office photos

Filter interviews by

Vikash Sharma ( Software Engineer ) Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Jul 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Explain about yourself
  • Q2. Explain something
  • Ans. 

    Explaining something involves breaking down a concept or process into simpler terms for better understanding.

    • Start by providing an overview of the topic

    • Break down the key components or steps involved

    • Use examples or analogies to clarify complex ideas

    • Conclude by summarizing the main points

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Flexible and good management

Interview Questionnaire 

4 Questions

  • Q1. Ques from Selenium, what is webDriver and all
  • Q2. From java, they asked to write the code on Sorting of an array
  • Q3. Print highest element in array
  • Ans. 

    Print highest element in array of strings

    • Convert array elements to integers

    • Use built-in max() function

    • Print the result

  • Answered by AI
  • Q4. Difference between Actions and Action
  • Ans. 

    Actions and Action are terms used in automation testing. Actions are a collection of steps while Action is a single step.

    • Actions are a set of steps that can be reused in multiple tests

    • Action is a single step that performs a specific action

    • Actions can be called multiple times in a test

    • Action can only be called once in a test

    • Actions can be parameterized

    • Action cannot be parameterized

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepared with basic concept..also in the written test some coding part was tough..else all were easy.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Core Java, Database and
  • Q2. Answer in - depth, basic understanding should be transparent, some programming logic might be asked. You have to explain the algorithm well. Don't panic, it's a standard interview process. 😊

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

Interview Questionnaire 

2 Questions

  • Q1. MIS Reports ,Budget preparation
  • Q2. MIS reports ,costing, GST related

Interview Preparation Tips

Interview preparation tips for other job seekers - Learing scope more, Increments good, More training programs, Always priority Safety

I applied via Naukri.com and was interviewed in Aug 2020. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are the achievement you have got in your life.
  • Q2. Why you think you are different from other?
  • Q3. What's your choice /hobby ...

Interview Preparation Tips

Interview preparation tips for other job seekers - No stress ,smile,be positive,no over think,be loyal what you are talking,

I applied via Naukri.com and was interviewed in Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What Are JOINS in SQL and difference between Inner JOIN and equi JOIN? Illustrate with an example.
  • Ans. 

    JOINS are used in SQL to combine data from two or more tables based on a related column.

    • Inner JOIN returns only the matching rows from both tables

    • Equi JOIN is a type of Inner JOIN where the join condition is based on equality between two columns

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. Divide the array in two Halves and keep each half in ascending order without using new Array?
  • Ans. 

    Divide array in two halves and keep each half in ascending order without using new Array.

    • Use Array.sort() method to sort the original array

    • Use Array.slice() method to divide the array into two halves

    • Use Array.reverse() method to reverse the second half of the array

  • Answered by AI
  • Q3. What are Interfaces and Why do we need interfaces?
  • Ans. 

    Interfaces are contracts that define a set of methods and properties that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • They allow for loose coupling between classes and promote code reusability.

    • Interfaces can be used to define common behavior across multiple classes.

    • Example: IDisposable interface in C# ensures that an object can be properly dispo...

  • Answered by AI
  • Q4. What is inheritance and Examples in inheritance.
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class is based on another class.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • The subclass can also add its own properties and methods.

    • Examples include a Car class inheriting from a Vehicle class, or a Dog class inheriting from an Animal class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep The Basics clear and Be confident about what you know.
Be truthful and well prepared (Interviewer will catch your lies).

Skills evaluated in this interview

Interview Questions & Answers

HCLTech user image Anonymous

posted on 11 Apr 2015

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Tell me about your family
  • Q3. What are your interests/hobbies

Interview Preparation Tips

Round: Test
Experience: One written test. It contains three sections. Each section is of 20 minutes duration.
Tips: Prepare well with general aptitude and have some basic technical knowledge.
Duration: 60 minutes

Round: Group Discussion
Experience: The topic may be any technical topic or any general matter.
Tips: Maintain your voice pitch, be clear with what you are talking and listen to others also.
Duration: 20 minutes

Round: HR Interview
Experience: He also gave me a situation and asked me how I would react.
Tips: Be realistic with your hobbies and interests. Do not bluff anything.

Skills: Good technical skills., Good communication skills.
College Name: NA

Interview Questionnaire 

8 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a software engineer with experience in developing web applications and mobile apps.

    • I have a degree in Computer Science

    • I have worked with Java, Python, and JavaScript

    • I have experience with front-end frameworks like React and Angular

    • I have developed mobile apps using React Native

    • I am familiar with Agile methodologies

  • Answered by AI
  • Q2. Hobbies
  • Q3. Why it??? if u r from core
  • Ans. 

    I have a passion for software development and enjoy the challenges it presents.

    • I have always been interested in technology and programming

    • I have taken courses and completed projects in software development

    • I enjoy problem-solving and finding efficient solutions

    • I believe software engineering is a constantly evolving field with endless opportunities for growth

  • Answered by AI
  • Q4. Prime number program
  • Ans. 

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

    • A prime number is a number that is only divisible by 1 and itself.

    • Start checking from 2 up to the square root of the number.

    • If the number is divisible by any number in the range, it is not prime.

    • Otherwise, it is prime.

    • Optimization: check only odd numbers after 2.

  • Answered by AI
  • Q5. Fibonacci's program
  • Ans. 

    Fibonacci program generates a series of numbers where each number is the sum of the two preceding ones.

    • The program can be implemented using recursion or iteration.

    • The first two numbers in the series are always 0 and 1.

    • The next number is the sum of the previous two numbers.

    • Example: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418,...

  • Answered by AI
  • Q6. Algorithm for the two program
  • Q7. Flowchart for the two program
  • Ans. 

    Flowchart for two programs

    • Identify inputs and outputs

    • Determine program logic

    • Create decision points and loops

    • Connect program components

    • Include error handling

    • Test and debug

    • Document the flowchart

  • Answered by AI
  • Q8. Department questions such as equation to calculate thermal heat capacity. it will be twisted

Interview Preparation Tips

Round: Test
Experience: There will be 30 questions in each section and I would say standard of question was good
Tips: Time management is very important while solving questions. Your common scence and IQ is very important for solving questions specifically Quant's in cocubes. Don't panic
Duration: 90 minutes
Total Questions: cocubes

Round: Group Discussion
Experience: My favorite round. Very intellectual and exciting
Tips: Just say whatever relevant u know about the topic. Listen to others and give others time to speak don't interrupt others while they are saying something let him\her finish and then start. Don't speak too much just be appropriate
Duration: 15 minutes

Round: HR Interview
Experience: Very comforting keep calm and rock it
Tips: This are the most asked questions so prepare some good answers for it

Round: Technical Interview
Experience: Very stressful and frustrating section they just try to break you down but just don't keep calm and answer what you know
Tips: They may ask some puzzles also they asked me and the response time should be quick in that

General Tips: Be confident keep calm and be smart
Skill Tips: Just be confident keep your posture right and don't talk too much talk whatever is necessary and try to have a healthy interaction don't get frustrated
Skills: confidence , iq, presence of mind, bit programing skill for it
College Name: SATHYABAMA UNIVERSITY
Motivation: This company has the best work culture

Skills evaluated in this interview

Interview Questions & Answers

Amazon user image Anonymous

posted on 21 Jan 2015

Interview Preparation Tips

Round: Test
Experience: The written test was quite similar to the typical CAT pattern. It contained sections on Reading Comprehension, Data Interpretation and Mathematics.

Round: Interview
Experience: There were 3 interview rounds:
There were 2 interviewers in the first interview, one was a technical guy and the other was from HR. They asked me a few
very simple puzzles, a few basic programming questions (swapping the value of two variables etc.), questions related to the development cycle of software products.  The HR guy asked stuff like what do you want to achieve in life? Strengths, weaknesses etc.
The second interview was resume based. He asked me about my thesis, internship, various projects, positions of responsibility etc. The third interview was the most important one (and I guess that was the deciding interview). The interviewer started with questions like why finance? Which companies are you sitting for? Then he gave me a case study: “As a banking organization, you have given house loans to a lot of customers. Given the current scenario, you have to profile the customers to which loans have been given based on the chances that they would pay back.” He started with this scenario and as I gradually started analyzing things and proposing models he kept on increasing the complexity saying you don’t have this data, you can’t make that assumption etc. Ultimately he narrowed down it down to a problem which was almost unsolvable. When I got stuck at that he told me that his idea was to just give me a taste of the toughness of problems they encounter in day-to-day business.

General Tips: After spending three or four years enjoying the IITK adventure, one suddenly feels a jolt when he/she arrives in the final year. You find yourself wondering at times, asking yourself the pertinent question, what next? And seriously, the best way to start preparing for placements, GRE, CAT or any other exam for that matter is answering this question honestly. Take a few minutes of your precious time and think what you want to do with your life? Where does your heart truly lie? I know it’s not that easy to decide on this but at least give this a good thought and prioritize your options. Make a list of them on paper if that helps. Once you are done with this, the real planning starts. Take each option one by one and do a truthful analysis of yourself from the perspective of that option. For e.g., say you have CAT as your first priority, and then analyze your strengths and weaknesses from CAT’s perspective. What all areas you need to improve on? How much time and effort would it take? How much time you have got left? By doing this exercise you will really get to know the work that needs to be done and will help you plan for the remaining time.


Resume:
I am sure you would have heard it umpteen times but still I will repeat it to stress the point, take resume making seriously! A good resume would drive your interview in the direction you want it to go, a bad resume on the other hand might end the chances of you even getting interviewed! Start by trying to remember each and every achievement of your life and write it down. Spend a few days on this part till you are sure you have got almost everything. Now write it down properly in formal language in the form of a master resume. This would serve
as a repository of information for all your subsequent resumes. And on top of that, having a fresh memory of your achievements would help you in answering the questions in interviews (especially HR questions). Ideally you should have a separate resume for every company you sit for. The way to do this is make sector specific resumes and edit them accordingly for the different companies of that sector. For example, make a single resume for all the core CSE companies and then you can probably change the list of projects (or their order of appearance) targeting individual companies.

PPTs:
If you are serious about getting job in a company, you cannot afford to miss its pre placement talk. PPT is not only an opportunity to know about the company, but it also gives you the chance to know what the company is looking for. This will give you the basic idea around which you should structure your resume and preparation for that company.
Preparation:
Core Computer Science Companies: All the core CS companies first take a written test which contains questions on C/C++, may have JAVA, UNIX, Algorithms, Data Structures, basics of Operating Systems and Compilers, some questions on basic networking in case the company works in that field. Almost all the companies have a couple of questions in which you are required to write code on paper. Some companies also have a few questions on aptitude, simple maths or data interpretations. You can find the company specific details in the placement feedback guide. This is the major
shortlisting step for core companies, so you cannot take it lightly. You can start preparing by revising the relevant courses you did (like Data Structures, Algorithms, Operating Systems, and Compilers). Practice a few questions available in the various placement preparation guides on LAN. Most importantly, practice writing code on paper. This is something we are not used to and requires some practice. This not only will do you good in the written test, but also help you in the interviews.
Non Core Companies (Finance, Consulting, and Analytics):
The written tests of most of these companies are quite similar to CAT. So if you are not preparing for CAT, get hold of some CAT preparation material for practice. These tests are more speed based than knowledge, so practice is absolutely essential. Revising some basic mathematics (like probability, progressions etc.) would also do you good. Apart from that, you need to have some basic knowledge and understanding of the field the company works in. For example, if you are appearing for a finance company, learn the basic concepts and common terminologies of finance. The least it would do is show that you are sincerely interested in the field the company works in.
College Name: IIT KANPUR

Interview Preparation Tips

Round: Test
Experience: Objective type test for one hour on Aptitude, Operating systems, C Programming, Computer Organization, Digital Electronics and Microprocessors were asked.
Tips: The above mentioned subjects should be prepared thoroughly.

Round: Technical Interview
Experience: My knowledge about Electronics and Communication engineering basics, Networking, C programming, Data Structures, Operating systems, Puzzles was mainly tested.

Round: HR Interview
Experience: Puzzle solving ability, Analytical skills were focused upon.

General Tips: I started preparing two months earlier and mainly focused on my core and C programming.
College Name: IIT MADRAS

Tell us how to improve this page.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Mphasis Interview Questions
3.4
 • 786 Interviews
Nagarro Interview Questions
4.0
 • 760 Interviews
View all

Vikash Sharma ( Software Engineer ) Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 2 Reviews and Ratings
Sales Officer
4 salaries
unlock blur

₹2.8 L/yr - ₹2.8 L/yr

Accountant
3 salaries
unlock blur

₹1.9 L/yr - ₹2.7 L/yr

Explore more salaries
Compare Vikash Sharma ( Software Engineer ) with

Accenture

3.9
Compare

Capgemini

3.8
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.6
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