Upload Button Icon Add office photos

Filter interviews by

Krishna Computer Interview Questions, Process, and Tips

Updated 15 Sep 2021

Top Krishna Computer Interview Questions and Answers

View all 6 questions

Krishna Computer Interview Experiences

Popular Designations

3 interviews found

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

It was in the early morning. Questions was mostly from aptitude and coding based.

  • Q1. Count Subsequences

    You have been given an integer array/list 'ARR' of size 'N'. Your task is to return the total number of those subsequences of the array in which all the elements are equa...

  • Ans. Brute Force

    The idea is to generate all the subsequences and check whether the elements present are equal or not.

     

    Here is the algorithm :

     

    1. Generate all the subsequences of the given array.
    2. Maintain a variable ‘COUNT’ which stores the total number of subsequences in which all the elements are equal.
    3. Iterate over each of the generated subsequences.
      1. In case all the elements of the current subsequence are equal, we in...
  • Answered Anonymously
Round 2 - Group Discussion 

(1 Question)

Round duration - 25 minutes
Round difficulty - Easy

It was in the afternoon period and it was very competitive.

  • Q1. Longest Increasing Subsequence

    For a given array with N elements, you need to find the length of the longest subsequence from the array such that all the elements of the subsequence are sorted in strictly ...

  • Ans. Recursive Approach
    • We will write a recursive algorithm that will try all the possibilities.
    • The argument of recursive function will be the current index and what was the previous number used for LIS. Initially, we will be passing the previous number as the minimum number of an integer and starting index as 0.
    • The base case would be when we reach index n,i.e we have exhausted the array elements so return 0 because there is...
  • Answered Anonymously
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Medium

It was late night. Interviewer was asking tricky questions to confuse me

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaNAKrishna Computers Pvt. Ltd interview preparation:Topics to prepare for the interview - Data Structures, Aptitude, OOPS, Algorithms, Output Based Questions, Data ScienceTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice much more on coding or output based questions from trusted website
Tip 2 : Make sure your resume look skill full and nice
Tip 3 : Avoid any hesitation in interview while giving answers

Application resume tips for other job seekers

Tip 1 : Try to attach any specific skill with authorized certificate from good coding platform like Coding Ninja
Tip 2 : Make sure you have full confidence in the skills you have mentioned 

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

It was in the morning around 8:00AM-8:30AM. Platform used for this round was hackerrank. Coding questions were of moderate level.

  • Q1. Count diagonal paths

    You are given a binary tree. Your task is to return the count of the diagonal paths to the leaf of the given binary tree such that all the values of the nodes on the diagonal are equal...

  • Ans. Count diagonal paths from a node to a leaf consisting of the same valued nodes

    The main idea here is to traverse the tree diagonally using a Map/Dictionary. 

    The algorithm will be-

    1. Traverse the given binary tree in a diagonal order and store the starting node of each diagonal as the key and for each key, store all the values in that diagonal in a dictionary
    2. To traverse the given binary tree in a diagonal order the mai...
  • Answered Anonymously
  • Q2. All Root to Leaf Paths in Binary Tree.

    You are given an arbitrary binary tree consisting of 'N' nodes numbered from 1 to 'N'. Your task is to print all the root to leaf paths of the binary ...

  • Ans. 

    The task is to print all the root to leaf paths of an arbitrary binary tree.

    • Traverse the binary tree using depth-first search (DFS) algorithm

    • Maintain a current path list to keep track of the nodes in the current path

    • When reaching a leaf node, add the current path to the result list

    • Recursively explore the left and right subtrees

    • Remove the last node from the current path after exploring each subtree

  • Answered by AI
Round 2 - Video Call 

Round duration - 20 minutes
Round difficulty - Easy

It was in the evening around 4:00PM-4:20PM. Platform used for this round was skype. Interviewer was very calm in questioning.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as Software Engineer in DelhiEligibility criteriaNo BacklogsKrishna Computers Pvt. Ltd interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, OOPS, Algorithms, Data ScienceTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice as much as possible.
Tip 2 : Focus on skills rather than more on memorising.
 

Application resume tips for other job seekers

Tip 1 : It should not be too long or too short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 25 minutes
Round difficulty - Easy

  • Q1. Count Subsequences

    You have been given an integer array/list 'ARR' of size 'N'. Your task is to return the total number of those subsequences of the array in which all the elements are equa...

  • Ans. Brute Force

    The idea is to generate all the subsequences and check whether the elements present are equal or not.

     

    Here is the algorithm :

     

    1. Generate all the subsequences of the given array.
    2. Maintain a variable ‘COUNT’ which stores the total number of subsequences in which all the elements are equal.
    3. Iterate over each of the generated subsequences.
      1. In case all the elements of the current subsequence are equal, we in...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 10 Minutes
Round difficulty - Medium

Interview Preparation Tips

Eligibility criteriaGraduateKrishna Computers Pvt. Ltd interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice as much as you can
Tip 2 : Work on your communication skills

Application resume tips for other job seekers

Tip 1 : It should look presentable
Tip 2 : Skills should be mentioned properly

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. Tell me about ur self
  • Ans. 

    I am a highly skilled System Engineer with expertise in designing and implementing complex systems.

    • Experienced in managing and troubleshooting network infrastructure

    • Proficient in virtualization technologies such as VMware and Hyper-V

    • Strong knowledge of operating systems like Windows and Linux

    • Familiar with scripting languages like PowerShell and Bash

    • Excellent problem-solving and communication skills

  • Answered by AI
  • Q2. Have u done any teamwork
  • Ans. 

    Yes, I have experience working in teams.

    • I have worked on several group projects during my studies.

    • I have collaborated with colleagues to solve complex technical problems.

    • I have participated in cross-functional teams to implement system upgrades.

    • I have also been part of agile development teams, working closely with software engineers and testers.

    • One example of teamwork is when I led a team of engineers to successfully d

  • Answered by AI
  • Q3. Family background

Interview Preparation Tips

Round: Test
Experience: There are two sections ....1) verbal 2)analytical and reasoning. paper was little bit tough. i didn't remember the type of questions.

Round: HR Interview
Experience: The HR was very cool and friendly. He asked me general questions like "tell me about ur self","have u done any teamwork" etc and then he asked me about my favourite subject.Then he asked me to explain the subject considering him as an 8th class student. Then he asked me about my family background. And the interview was about 30mins.

General Tips: You must be very cool while facing interview and u should ur confidence and interest towards the company.
College Name: NIT WARANGAL

Assistant Trainee Interview Questions & Answers

TCS user image YATISH KUMAR KESHWANI

posted on 9 Feb 2015

Interview Questionnaire 

22 Questions

  • Q1. What are the subjects you have command in?
  • Q2. Tell me about your final year project?
  • Q3. Tell me about the industrial training you had?
  • Q4. How does an induction motor works?
  • Q5. Why motor is rated in KW whereas Transformer and generator in KVA?
  • Ans. 

    Motors are rated in KW because they consume power, while transformers and generators are rated in KVA because they produce power.

    • Motors convert electrical energy into mechanical energy, so they consume power and are rated in KW.

    • Transformers and generators produce electrical energy, so they are rated in KVA based on their apparent power.

    • KVA takes into account both the real power (KW) and the reactive power (KVAR) produc...

  • Answered by AI
  • Q6. What is the type of motor used in ceiling fans?
  • Ans. 

    The type of motor used in ceiling fans is an induction motor.

    • Ceiling fans typically use single-phase induction motors.

    • These motors are designed to provide a constant speed and are efficient in converting electrical energy into mechanical energy.

    • The motor consists of a stator and a rotor, with the stator being the stationary part and the rotor being the rotating part.

    • The stator contains windings that create a rotating m...

  • Answered by AI
  • Q7. Hoe does a thermal power plant works?
  • Ans. 

    A thermal power plant generates electricity by converting heat energy into mechanical energy.

    • Thermal power plants use fossil fuels or nuclear energy to heat water and produce steam.

    • The steam drives a turbine, which is connected to a generator that produces electricity.

    • The heat source can be coal, natural gas, oil, or nuclear reactions.

    • The steam is condensed back into water and recycled in a closed-loop system.

    • Thermal p...

  • Answered by AI
  • Q8. Write a program to make a GP
  • Ans. 

    A program to generate a geometric progression (GP).

    • Take the first term, common ratio and number of terms as input.

    • Use a loop to calculate each term of the GP.

    • Print the generated GP as output.

  • Answered by AI
  • Q9. Write a program to print factorial using recursion
  • Ans. 

    A program to print factorial using recursion

    • Define a function to calculate factorial recursively

    • Base case: if the number is 0 or 1, return 1

    • Recursive case: multiply the number with factorial of (number - 1)

    • Print the factorial of a given number

  • Answered by AI
  • Q10. Write the logic to reverse a string without using string fnctions
  • Ans. 

    Logic to reverse a string without using string functions

    • Iterate through the string from the last character to the first

    • Create a new string and append each character to it in reverse order

  • Answered by AI
  • Q11. Tell me about yourself?
  • Q12. What are your hobbies?
  • Q13. Apart from your technical pat and studies what have you done in college?
  • Q14. What do you prefer, ethics or values?
  • Q15. Suppose you are working in office and somebody came and slapped you, what will you do?
  • Q16. Tell me about yourself for 5 minutes
  • Q17. What are your views about Mr. Narendra Modi as PM of India
  • Q18. Any extra curricular activities you have participated in school or college
  • Q19. What are your strengths?
  • Q20. What are your weaknesses?
  • Q21. Being an Electrical engineer why do you want to join an IT company
  • Q22. What do you know about TCS?

Interview Preparation Tips

Round: Test
Experience: In email writing one question was given describing the situation and maximum word limit. It has the keywords given to be used. 1 question, 10 minutes.This section is generally used to check your verbal ability. Make sure to use all the keywords given and complete it within time, with no spelling mistakes of course. Missing a keyword or a spelling mistake could be your goodbye to qualified list.The second section had 30 questions of quantitative aptitude. Duration 70 mins. There are questions from various sections, such as Time and speed, Time and distance, Data interpretation,etc.There are 2-3 star marked questions which have more weight-age. There my also be a dummy question who doesn't have any matching answer. Make sure uh don't attempt these questions.26-27 questions is the cut-off for qualified list.But you have to do the email writing part correctly.
Tips: Practice email writing online from various websites such as technicalbaba.com, indiageeks.comPractice quantitative aptitude as it is a must in any interview you will face. you can use R.S.Agarwal or CAT material.
Duration: 90 minutes
Total Questions: 30 + 1

Round: Interview
Experience: Greeting the interviewer is a must. Be confident and enthusiastic. Have your resume properly ready. Technical questions from your subject will be asked. Not a must that you should know any programming language like C, C++, JAVA.
Tips: Prepare 3-4 subjects of your core branch. Never try to flatter the interviewer. Be confident and answer the questions appropriately. Dont say directly " I DON'T KNOW". Atleast try even if you dont know the answer.

Round: Interview
Experience: There are certain questions which doesnt have direct answers. You have to be diplomatic about them. You should be able to see all the possible situation when a question like that is asked.

Round: Interview
Experience: The HR head may manipulate you, try to stress you, etc. Be calm and confident.Think before you speak. Prepare your answers before hand for general questions. Write your introduction on a paper and prepare it well so that you speak it confidently...
Tips: Be yourself. Be confident. Never argue with the interviewer.All the best

General Tips: Be presentable in the interview. Wear a watch. Show respect to the interviewer. Prepare 3-4 technical subjects well. Read last 15 days newspaper. Be confident when you speak. Improve your English if you are weak in it.
Skill Tips: ""
Skills: Verbal ability, Attitude, Technical knowledge, General knowledge
College Name: IMS ENGINEERING COLLEGE, GHAZIABAD
Motivation: TCS is a semi government company with a decent package and high job security.

Skills evaluated in this interview

Interview Questionnaire 

7 Questions

  • Q1. Say something about yourself?
  • Q2. Asked on college project
  • Q3. Which programming language do you know?
  • Ans. 

    I know multiple programming languages including Java, Python, and C++.

    • Proficient in Java with experience in developing web applications using Spring framework

    • Familiar with Python for data analysis and machine learning

    • Experience in C++ for developing high-performance applications

    • Also familiar with HTML, CSS, and JavaScript for front-end development

  • Answered by AI
  • Q4. What is class, encapsulation and other feature of OOP?
  • Ans. 

    Class is a blueprint for creating objects, encapsulation is the process of hiding data and methods within a class.

    • Class is a template or blueprint that defines the properties and behaviors of an object.

    • Encapsulation is the process of bundling data and methods together within a class, hiding the internal details from the outside world.

    • Other features of OOP include inheritance, polymorphism, and abstraction.

    • Inheritance a...

  • Answered by AI
  • Q5. Write a program to find the sum of the squares of each term of Fibonacci series
  • Ans. 

    Program to find the sum of squares of each term of Fibonacci series

    • Generate Fibonacci series using loop or recursion

    • Calculate square of each term

    • Add all squares to get the sum

  • Answered by AI
  • Q6. What can I do for you?
  • Q7. Why would you like to join Cognizant?
  • Ans. 

    I would like to join Cognizant because of its reputation as a leading global technology and consulting company.

    • Cognizant has a strong presence in the industry and is known for its innovative solutions.

    • I am impressed by Cognizant's commitment to digital transformation and its ability to deliver value to clients.

    • The company offers excellent career growth opportunities and a supportive work environment.

    • Cognizant's diverse...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions were simple but demanded faster solving ability especially the Quantitative ability section.
Tips: Solve every bit of R.S.Aggarwal for Aptitude problems. www.indiabix.com is a good site to solve questions from all the sections.
Duration: 90 minutes

Round: Interview
Experience: Started with self description to explaining what projects I was involved in. Talked about my role in the project. Then answered questions from C++ programming language and then wrote the program that the interviewer gave me to do.
Tips: Be Confident. Have the problem solving & "Yes I can Do" attitude. Go with a open mind. Listen to the interviewer carefully. Do not stammer. Keep yourself calm and cool. Be honest.

Round: Interview
Experience: Faced normal questions
Tips: Be confident & keep smiling. Keep track of your body language. Be fluent in speaking English.

General Tips: Be confident and a "can do" attitude will help you grab the job.
Skill Tips: """"
Skills: Communication Skill, Proficiency in English, Basic Computer Progamming Knowledge, Learning ability, Aptitude
College Name: IIT Madras

Skills evaluated in this interview

Interview Preparation Tips

Round: Resume Shortlist
Experience: CGPA + resume + online test - based shortlisting

Round: Test
Experience: Online Test:Quant, DI, verbal, and coding45 minutes coding + 15 minutes verbal + 30 minutes quant
Tips: Time constraint will be the major problem. CAT preparation would sufficeBrush up your coding skills- concentrate in either C or C++ or whichever language you're comfortable withE.g.: The coding question- Write a function to find if a number is palindromeBrush up through basic data structuresGraph theory and few sorting algorithms
Duration: 90 minutes

Round: Interview
Experience: (2 interviews, 20 minutes each)Resume- basedCoding skills and the approach towards the problem will also be tested
Tips: Be thorough with the work done in your internships and projects. Be ready to answer why you are interested in the company.Maintain your confidence level in the interviews. They also look for good communication skills, and even leadership, which is evident from the way you conduct yourself through the interview.Practice quant questions, prepare answers for all the basic HR questions.Coding, go through sorting algorithms, FOR, Graph theory.Digital IC design is very important courses. You should be through with this courses if you are interested in digital profile.

College Name: IIT Madras

Interview Questions & Answers

Deloitte user image Anonymous

posted on 7 Jan 2015

Interview Preparation Tips

Round: Test
Experience: CAT type questions on maths and English. Speed matters. Preparation for CAT helps, I did not sit for CAT but I went through is DI material before the test to increase my speed. Questions in general are easy. Conduct yourself professionally. Deloitte decides to allot you a profile depending on your score in this test most probably. So make sure you do well in this test. I think the highest scoring candidates are shortlisted for the S&O profile, though I am not sure about it.
Tips: If you are up for a career in management consulting and can't possibly be shortlisted by Mckinsey or BCG, this is your golden opportunity. You have to do well in the test for it. Deloitte is one of the best places in the world for management consulting after MBB firms and I believe some people might have gotten selected for this profile just because they did well in this test (by fair or unfair means!!)

Round: Group Discussion
Experience: You are given a case. Your group of 10 has to find a solution for a client. The process lasts for about 30 minutes. The key is staying calm and composed and not disputing and challenging others violently! At the end you are supposed to give a presentation on the problem and it solution, 5 minutes for each member.
Tips: Speak less rather than speaking trash. Introduce yourself first when asked to give your part of the presentation and behave professionally, they check more on your professional behavior than the effectiveness of your solution. 50 % of the students passing this round generally make it to the offer. Hence this is the most important round. If you have done very well in this round you will probably do well in the PI.

Round: Behavorial Interview
Experience: Behavioral questions base on your resume.
I had networked a bit with my interviewer before the interview because both of us were waiting to enter the interview room and it felt awkward not talking to him. I think that might have helped.

Dont go for a technology profile hoping you will get to enter the management consulting space some day. Technology consulting is a good career choice only if you are passionate about it, or else it is a disaster, since the only exit route is an MBA application.
Dont go without reading about the company, it was a big source of worry for me
Tips: Answer the questions diplomatically. Appearing confident helps. I kept a smiling face no matter how tensed I was, that might help.
Know all the points in your resume and prepare to answer all behavioral questions you can possibly think of.
Have some questions to ask at the end of the interview.

General Tips: Its good if you have some extra academic involvement to have some discussion points during your PI. Or when you are asked about an achievement you are very proud of.
Skill Tips: I felt the company loves to hire calm and professional people who can articulate themselves properly. And do well in the written test if you want a profile of your choice.
Deloitte is probably the only company to be able to compete with the likes of Mckinsey in management consulting and IBM in technology, at the same time. No doubt, it is a great brand name to work with. It is highly rated in both the fields.
Strategy and Operations is a very good career if you are looking for management consulting, they have a program to train and sponsor you for the best B-Schools in the world.
The technology profiles are good if you are passionate about technology and its integration.
So be careful about your choices.
College Name: IIT Kharagpur

Interview Questions & Answers

HCLTech user image Anonymous

posted on 13 Apr 2015

Interview Questionnaire 

10 Questions

  • Q1. Do you know Java? ---Yes
  • Ans. 

    Yes, I know Java.

    • I have experience in Java programming.

    • I am familiar with Java syntax and concepts.

    • I have worked on Java projects in the past.

  • Answered by AI
  • Q2. What is Thread and why are they used? ---told
  • Q3. What is JDBC? ---told
  • Q4. How to retrieve data from back end? ---told
  • Ans. 

    To retrieve data from the back end, you can use APIs or database queries.

    • Use API calls to fetch data from the back end server.

    • Execute database queries to retrieve data from the database.

    • Parse the response or query result to extract the required data.

    • Handle any necessary authentication or authorization for accessing the back end.

    • Examples: GET request to an API endpoint, SELECT query in SQL.

  • Answered by AI
  • Q5. Explain OOP concepts. ---explained the program
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP stands for Object-Oriented Programming

    • It focuses on creating objects that interact with each other to solve a problem

    • Encapsulation, inheritance, and polymorphism are key concepts in OOP

    • Example: A car object can have properties like color, make, and model, and methods like start and stop

    • OOP promotes code reusability and ma

  • Answered by AI
  • Q6. He gave me Java program and asked me to explain how memory is allocated? ---Explained with diagram
  • Q7. How was the day? ---A bit lagging one
  • Q8. Why? ---My token number is 197, I need to wait for long time since morning
  • Q9. About yourself? ---told
  • Q10. Tell me a special quality of yours which is not mentioned in your resume? ---Told

Interview Preparation Tips

Round: Test
Experience: 4 modules :
1. Computer Programing :- Code is given,we need to find output, basic questions in Java, C, Data Structures, DBMS.
2. Quantitative Aptitude :- Easy, Basics in Simple Interest, Profit&Loss, Numbers, Logs, Time and Work, Time Speed Distance, Prob, Perm&Comb.
3. Logical Reasoning :- Blood relations, Directions, Data sufficiency, Puzzle, Arrangements (circular & linear).
4. English :- Fill in appropriate meaning, Antonyms, Synonyms, Arrange the sentences, and 2 huge paragraphs (4+4=8 questions).

Out of 2000 members 400 were selected. I'm one among them.

Round: HR Interview
Experience: After 2 days I received mail from HCL (offer letter and letter of intent).
Tips: HR round is to test our communication only..

College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a software engineer with experience in developing and maintaining software applications.

    • I have a strong background in programming languages such as Java, C++, and Python.

    • I have worked on various projects, including developing web applications and implementing software solutions.

    • I am skilled in problem-solving and debugging, ensuring efficient and effective software development.

    • I have experience in collaborating wi...

  • Answered by AI
  • Q2. What are your objectives
  • Q3. What are you going to do for companies betterment
  • Q4. What is your final year project all about
  • Q5. What you learned from your summer intenship
  • Ans. 

    I learned valuable teamwork and problem-solving skills during my summer internship.

    • Developed strong collaboration skills by working with a team of software engineers to complete projects

    • Gained experience in troubleshooting and debugging software issues

    • Learned to effectively communicate and present technical concepts to both technical and non-technical stakeholders

    • Improved problem-solving abilities by identifying and re...

  • Answered by AI
  • Q6. What you learned from your winter intenship
  • Q7. Do you have any question

Interview Preparation Tips

Round: Test
Experience: Verbal section was a easy section,It comprised of Comprehension,Spotting errors,Synonyms,Antonyms,Relationship between two given words,Rearranging the sentences.Logical reasoning the second section in which problems on data interpretation,blood relations,syllogism,where there with little bit difficulty.third section was of quant we usual  think it's easy but this was a tough one! with standard problems,percentage,profit loss,speed distance time.....etc.
Tips: While,attempting verbal part always give most appropriate answers.Options may be more confusing and closer one but you have to select the correct one!!!!! Always check for sectional cutoff and if its there then try to attempt each section properly if not then concentrate on section in which you are strong....refer to sites such as IndiaBIX, M4maths, freshersworld for aptitude questions
Duration: 60 minutes
Total Questions: 75

Round: Group Discussion
Experience: GD was not a round included for Capgemini placement test,Pearson versant english test was there once you clear your apti but due to technical faults GD was the round taken.There was a group of 10 people and we were given topic and 5 mins for preparation then GD was started.I was the second one to speak on the topic,I was in the favour of MNC because I really feel that for freshers Indian IT company is not very great start.Rather if one starts with MNC then it gets a brand name associated with them and also global exposure for one.And also Indian IT sectors are largely collaborating with the MNCs so for fresher MNC is a good start than Indian IT company.
Tips: I will suggest you to understand the topic well,jot down the points you want to say and then always initiate for the GD do not argue,just humbly disagree to the topic,do not get personal in it...as soon as you start the supervisor judges you so do not hesitate and just put your points confidently only your English is judged by this...
Duration: 20 minutes

Round: HR Interview
Experience: As I entered they  checked me from top to bottom means how formally you are dressed and shoes,then asked for my resume and started to see and verify each and everything written in it is true and genuine.And both TR and HR interview was taken simultaneously.My interview was the quicker one they just started with name then all above mentioned questions....
Tips: Go properly dressed with shoes polished,do not panic or try to recollect what you  have prepared just be genuine.Write resume neatly and study it well they scan it and ask most questions from it...

Round: Pearson versant English test
Experience: This test consist of two sections firstly the telephonic round in which we were provided with one toll free number and  unique test-id then it was for about 20 mins we talked on telephone.The questions asked were on basic english,like  repeat the sentences,correct the jumbled sentences,complete the sentences,answer in yes or no.Second test was a computer based test for 60 mins in which complete the sentences synonyms,copying the passage,email writing ,listen and write,were few of the questions directed.this test is taken mainly to check your english and writing skills.
Tips: Be clear and loud enough in telephonic test,and search placement papers of every company you sit for.

General Tips: "Try try you will succeed" always believe on this saying and keep giving tests if you failed in one!!
College Name: TERNA ENGINEERING COLLEGE
Motivation: Capgemini is one of good MNC its under top 10 best IT companies also its symbol spade which represented free enivronment to work and moto "People matter,results count".motivated me to join it!

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
View all

Krishna Computer Reviews and Ratings

based on 16 reviews

4.5/5

Rating in categories

4.6

Skill development

4.5

Work-life balance

4.4

Salary

4.2

Job security

4.5

Company culture

4.4

Promotions

4.6

Work satisfaction

Explore 16 Reviews and Ratings
Desktop Support Engineer
13 salaries
unlock blur

₹1.2 L/yr - ₹2.5 L/yr

Computer Teacher
5 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Hardware & Networking Engineer
4 salaries
unlock blur

₹1.9 L/yr - ₹2 L/yr

Printer Engineer
4 salaries
unlock blur

₹2 L/yr - ₹3.2 L/yr

System Engineer
3 salaries
unlock blur

₹1.2 L/yr - ₹2.2 L/yr

Explore more salaries
Compare Krishna Computer with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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