Upload Button Icon Add office photos

Filter interviews by

Jal Jeevan Mission Technical Support Engineer Interview Questions and Answers

Updated 10 Feb 2021

Jal Jeevan Mission Technical Support Engineer Interview Experiences

1 interview found

Interview Questionnaire 

2 Questions

  • Q1. Water supply and WTP pumping &electrical work
  • Q2. Electrical work tansformar

Interview Preparation Tips

Interview preparation tips for other job seekers - Water supply laying work in distribution line &rasing mean line

Interview questions from similar companies

Software Engineer Interview Questions & Answers

Amazon user image Rajesh Paramanandam

posted on 24 Feb 2017

I was interviewed in Oct 2016.

Interview Preparation Tips

Round: Test
Experience: Aptitude was quite easy they just asked us basic questions from Math,logical reasoning and english
Tips: Just think well before u do..
Duration: 1 hour 30 minutes
Total Questions: 40

Round: Behavioural Interview
Experience: It was face to face .. the interviewee asked questions from our resume... Since I m from computer science background they asked some technical questions..

Tips: Beware filling ur resume.. they will ask every stuff that you have in resume

Round: Technical Interview
Experience: Discussion about my project that i vr done in my final year.they asked me what was my role in my project

College Name: Sri ganesh college of engineering and technology

I applied via Campus Placement

Interview Questionnaire 

4 Questions

  • Q1. Boundary traversal of a tree
  • Ans. 

    Boundary traversal of a tree is the process of visiting the nodes on the boundary of a tree in a specific order.

    • The boundary traversal can be done in three steps: left boundary, leaf nodes, and right boundary.

    • For the left boundary, start from the root and traverse down the left side of the tree until reaching a leaf node.

    • For the leaf nodes, perform an inorder traversal to visit all the leaf nodes of the tree.

    • For the ri...

  • Answered by AI
  • Q2. Find the nearest greater value of a given value in a BST
  • Ans. 

    Find the nearest greater value of a given value in a Binary Search Tree (BST).

    • Start from the root node and compare the given value with the current node's value.

    • If the given value is less than the current node's value, move to the left subtree.

    • If the given value is greater than the current node's value, move to the right subtree.

    • Keep track of the closest greater value encountered while traversing the tree.

    • Return the cl

  • Answered by AI
  • Q3. There is an infinite stair case and there are n rounds. in i'th round we can jump i steps at one or discard them. it is given that k'th step is broken , find the max height we can reach with out stepping o...
  • Ans. 

    Given an infinite staircase with a broken kth step, find the maximum height we can reach in n rounds of jumping i steps.

    • We can start by jumping the maximum number of steps in each round until we reach the broken step.

    • After reaching the broken step, we can discard the i steps that would land us on the broken step and jump the remaining steps.

    • We can continue this pattern until we reach the maximum height we can reach wit

  • Answered by AI
  • Q4. Height h was given and form a binary tree of height h and start combining bottom nodes to form a cone like structure

Interview Preparation Tips

Round: Test
Experience: there were 20 MCQ which were on ds , networks and basic coding followed by 2 coding questions.
1) print all the distinct substrings of a given string in lexicographical order
2) find the max i-j value in the given array of 0's and 1's such that there are equal number of zeros and ones, where i is the starting index and j is the ending index of the array.
Tips: make sure that you pass atleast half the test cases for both the question.
Duration: 90 minutes
Total Questions: 22

Round: Technical Interview
Experience: 1) i printed left view then leaves and right view using three level order traversals . he asked me to use one traversal only, then i told him the approach and wrote the working code.
2) told him the approach and coded it.
Tips: look at corner cases properly. the interviewers were friendly, so i felt relaxed.

Round: Technical Interview
Experience: 1) i told him a recursive O(2^n) solution, optimised it to O(n^2). he told me to optimise further. Then i finally came up with O(n) solution after 5 min and he was satisfied . i coded it. he was satisfied finally :D .
2) came up with the approach immediately and coded it. he was satisfied.
Tips: he was very particular about corner cases and he checked the code througly tested it on some cases to ensure it was working.

General Tips: be cool. interviewers were friendly. tell them what you are thinking and be clear with the question before answering to avoid wasteage of time.
Skill Tips: solve problems from codechef, spoj and codeforces. solve interview questions from geeksforgeeks and careercup.
Skills: the way you think, coding skills and knowledge on data structures.
Duration: 3
College Name: IIT Roorkee
Motivation: some good seniors got intern, so i was inspired.
Funny Moments: on the interview day a person came into the conference room to call me for interview, i didnt thought he was interviewer. he was very simple, but intelligent and at last i felt like asking him to ask me one more coding question as it was fun solving questions infront of him, but i didnt do that as i was frightened if i would not be able to answer it would be a negative remark :P .

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Data struct,algo,
  • Q2. High level data structs and algos

Interview Preparation Tips

Round: Problem Statement
Experience: coding and submission before face to face interview shortlisting
Tips: practice coding ,coding is key to success for SE

Round: Resume Shortlist
Experience: based on marks ,I was called for F2F
Tips: the ppt was to be submitted explaining the approach

Round: Technical Interview
Experience: a lot of brain storming
Tips: understands the nitty gritty of the structs and algos

Round: Technical Interview
Experience: exact code was to be written instead of pseudo code
Tips: get hold of DS,Algos

Interview Preparation Tips

Round: Test
Experience: The first test
contained 25 objective questions encompassing the basics of Computer Science ranging from
data structures, networks and operating systems to theory of computation
Duration: 45 minutes
Total Questions: 25

Round: Test
Experience: The second test contained 3 coding questions.
Duration: 45 minutes
Total Questions: 3

Round: HR Interview
Experience: After the written test, next day I appeared for 3 interviews.
They were checking if you can write code and also if you are aware of the practical issues faced while coding. In the final round they were testing if you could abstract out a real world
problem into code.
Tips: Overall I can say that you must hope for the best and prepare for the
worst. So make sure that you are prepared on all counts. You never know what might go wrong.

Interview Questionnaire 

13 Questions

  • Q1. Given a string of parenthesis, write a function if it is balanced
  • Ans. 

    Function to check if a string of parenthesis is balanced

    • Use a stack to keep track of opening parenthesis

    • If a closing parenthesis is encountered, pop from stack and check if it matches

    • If stack is empty and a closing parenthesis is encountered, return False

    • If all parenthesis are matched and stack is empty, return True

  • Answered by AI
  • Q2. Given two linked lists each of which represent a number, write a function that returns a linked list that represents the sum
  • Q3. Find the number of occurrences of words in a paragraph
  • Ans. 

    Count the occurrences of words in a paragraph.

    • Split the paragraph into words using whitespace as a delimiter.

    • Create a dictionary to store the count of each word.

    • Iterate through the words and increment the count in the dictionary.

    • Return the dictionary with the word counts.

  • Answered by AI
  • Q4. Find common elements out of two sorted array?
  • Ans. 

    Find common elements out of two sorted array

    • Use two pointers to traverse both arrays simultaneously

    • Compare elements at each pointer and move the pointer of the smaller element

    • If elements are equal, add to common elements list and move both pointers

    • Stop when either pointer reaches end of array

  • Answered by AI
  • Q5. Convert BST to a Doubly linked list?
  • Ans. 

    Convert a Binary Search Tree to a Doubly Linked List.

    • Create a DLL node class with left, right, and data fields.

    • Traverse the BST in-order and add each node to the DLL.

    • Adjust the left and right pointers of each node to create the DLL.

    • Return the head of the DLL.

  • Answered by AI
  • Q6. Given a binary tree in which the node structure has an additional field called “next” which of pointer to tree node type, fill up this field of each node to point to the next node at the same level (NULL i...
  • Ans. 

    The task is to fill the 'next' field of each node in a binary tree to point to the next node at the same level.

    • Use a level order traversal to process the tree nodes.

    • Maintain a queue to store the nodes at each level.

    • For each node, set its 'next' field to the next node in the queue.

    • If a node is the last node at its level, set its 'next' field to NULL.

  • Answered by AI
  • Q7. Given a parentheses string, determine if it is a valid / legitimate parentheses string. For strings consisting of single parentheses type and those consisting of multiple types
  • Q8. You have a dictionary of words. Given a word, print all anagram are in dictionary . State the data structure to be used to solve this problem
  • Ans. 

    To find anagrams of a given word in a dictionary, use a hash table to store sorted versions of each word as keys and their corresponding original words as values.

    • Create a hash table to store the anagrams

    • Iterate through each word in the dictionary

    • Sort the characters of the word and use it as a key in the hash table

    • If the key already exists, add the word to the list of values for that key

    • Print the list of values for the

  • Answered by AI
  • Q9. You have given 10 files and you have given a string suggest data structure which ll facilitate efficient search of string in the file if string appears more than ones in that case u have to print line numb...
  • Ans. 

    Suggest a data structure for efficient search of a string in 10 files and print line number and file if string appears more than once.

    • Use a hash table to store the file name and line number of each occurrence of the string.

    • Iterate through each file and for each line, check if the string is present and update the hash table accordingly.

    • Print the hash table entries for the string.

  • Answered by AI
  • Q10. Write a program to print a tree in vertical order asked more than one approach to do this problem and modified problem many times
  • Q11. Discussion on my current work, difficulties and challenges faced at work, difficult people I have had to work with, instances when I went out of my way to propose creative solutions to existing problems a...
  • Q12. Why do you think amazon is the right place for you?
  • Ans. 

    Amazon is the right place for me because of its innovative culture, vast resources, and opportunities for growth.

    • Amazon's innovative culture aligns with my passion for pushing boundaries and finding creative solutions.

    • The company's vast resources provide the necessary tools and support to develop and deliver high-quality software.

    • Amazon offers numerous opportunities for growth and career advancement, allowing me to con...

  • Answered by AI
  • Q13. You have given an binary matrix which is sorted row wise and column wise write a program to search a row in the matrix having maximum number of zeroes

Interview Preparation Tips

General Tips: My process started off at one their hiring drives. It was ahiring drivein world trade center in Bangalore. It was a tiresome process that comprised a written round followed by 4rounds of interview.
Skills: Algorithm, data structure
College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Tell about yourself
  • Q2. Basic c programs
  • Q3. Tell about your parents
  • Q4. Explain your standing project

Interview Preparation Tips

Round: Resume Shortlist
Experience: They have selected those who have no standing arrears
Tips: Clear  arrears before 5 sem

Round: Test
Experience: Quantitative is little tough but i am lucky that i am able to solve the problems
Tips: Use formulas
Duration: 65 minutes
Total Questions: 90 min

Round: Group Discussion
Experience: No group discussion
Tips: Prepare well for GD

Round: HR Interview
Experience: I have spoke for 2 min and hr was impressed for it. Wrote some programs. Explained my project
Tips: For any hr interview prepare about your self. Learn some basic c programs, learn your project diagram. If u have any questions ask to hr to impress him

General Tips: Start doing some apptitude questions
Skill Tips: Whatever you talk,  speak it clearly. Dont get tension
Skills: communication skill
College Name: SATHYABAMA UNIVERSITY
Motivation: Our seniors

Interview Questionnaire 

1 Question

  • Q1. Questions vary from HR to HR

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resume is the most important part of your whole placement process. Your resume reflects your whole profile, what you are. So, we had to do that properly. Main thing is the format of the resume. For getting the proper format itself we had to go through a lot, but our staffs do guide us so that's not a problem.
Tips: Stick to the proper and latest format and make sure your resume shouldn't be more than 2 pages, that's ideal for a fresher. Write only those points that are valid and if any question asked related to that, you can answer.

Round: Test
Experience: We had gone through a lot of practice tests during the placement classes and if your English is good, you will easily get through it. They just give basic grammer which we have already learnt in our school days. The Quant's part is also easy and basic maths that we have done in our primary school (7-10). Reasoning part completely based on your IQ level.
Tips: Focus on your vocabulary. Read books, articles and whatever you can. Just keep yourself up to date. Practice the basic quants. There are various books for both Quant's and reasoning. Just keep practising.
Duration: 30 mins minutes
Total Questions: depends (20-30)

Round: HR Interview
Experience: I had a very tough experience. Since I'm from Biotechnology department, I was asked questions like why do I want to work in an IT company. They were actually testing my patience and I got through it. Your HR interview depends on your HR itself, even the time limit. My interview went for almost half an hour, but for few it got over even in 10-15 mins, so it depends.
Tips: Just be confident. Presentation is very important. Present yourself in a confident manner and be calm and patience. You should have good communication skill.

General Tips: Be confident and patient. Make sure you choose the proper job for yourself and have interest in that field. You will get through it. Placement is not that tough as you think. Just have confidence in yourself and you will get it. All the best.
Skills: Quants, verbal, reasoning, Soft skills, Communication skill
College Name: SATHYABAMA UNIVERSITY
Motivation: I have always wanted to go in this and Infosys is considered as one the top IT companies in India and more over they offer you the best training. An infocician is highly recognised outside. Last but not the least, you have the biggest and the best campus for Infosys.
Funny Moments: Nothing as such, but I had really a funny HR round. For half an hour he kept Me asking the same question just to check my patience level. We had a great time during the placement classes. All the staffs were very friendly and interactive.

Software Engineer Interview Questions & Answers

Infosys user image Saideep Kamishetty

posted on 16 Mar 2015

Interview Preparation Tips

General Tips: Sit straight while facing interviewer,
Answer to his questions boldly and carefully
Practice is must for passing out written test
Skill Tips: Coolness,Way i communicate with the interviewer,My technical skills regarding my project,My participation in my co-curricular activities
College Name: Sreenidhi Institute of science and technology
Motivation: Like the way they work,
Mysore training,
R&D of infosys
Funny Moments: At the end of my interview the interviewer had asked me about my apartment and the way we conduct events most funniest one is he stays in our locality

Interview Questionnaire 

1 Question

  • Q1. I'll be mentioning each and everything in my experience itself

Interview Preparation Tips

Round: Test
Experience: The test was a really basic one. Also the cut off was decided depending upon the performance of those who have appeared for the exam. So a basic knowledge of maths, reasoning and verbal helped me get through the exam. Each section  had a specific time limit and cut off. I was able to complete each section within stipulated time and able to answer most of them correctly. My knowledge of aptitude I had through my coaching also helped me.
Tips: Keep your cool and don't get tensed. the questions are not above the tenth class standard even. You'll have a lot of time to think and answer every question. Don't take a risk of copying. You can surely crack the test. You'll know few questions before you enter the examination centre, as people who already appeared for the test have a habit of debating on these questions. I'm sure the paper is same for all the batches. So there isn't any reason to worry at all.
Duration: around 70 mins minute
Total Questions: 50

Round: HR Interview
Experience: My college is one of the biggest ones in Andhra Pradesh. To handle the entire bunch of comparatively better students in the state, they gave us a privilege of clearing only Test and Interview. We had no group discussion.  Coming to interview, mine was purely on HR. The questions were expected and are common HR questions for most of interviews. He asked me to tell me about myself. I told him everything. Then he had gone through my resume and asked me a few questions on my intern-ships, social activities and about the events in which I participated and organised. I explained him everything. Then he asked  me why software and then why Infosys. I answered these questions too. That's all about the questions. My panellist was a cool guy. He was laughing all through. So I could answer exactly on what I've prepared. In fact I was laughing through the entire process. It was like a small chat with a strange and new friend.
Tips: Be prepared on your resume. Every point counts. The panellists can easily guess which isn't your true achievement and can grill you on that. So be careful while preparing your resume and be prepared to answer any question related to your resume. There were people who had experience Technical round also. So having a knowledge of Basic C language will be helpful. Common HR questions are available on the internet. Most of the interview depends on how we attempt these questions. So be prepared on those questions and finally the most important thing is, don't get tensed, keep a smile on your face and let the words flow even if you feel they are wrong.

General Tips: This is a campus placement and the panellists are surely going to select most of you. A 7 day preparation is more than enough. Prepare well. Don't get tensed. Keep a smile on your face. Your confidence level matters the most for them. So don't regret for few mistakes in the interview process.
College Name: ANDHRA UNIVERSITY COLLEGE OF ENGINEERING
Motivation: This was an On campus drive in my college and I had to surely apply for this company as I had no core company visiting my campus. Many of my seniors are working in this campus and have told me that the training in Infosys is an ultimate one.
Funny Moments: I already knew many of the questions in verbal ability before I appeared for the exam from my friends. Also we could discuss and answer few questions in the test. The interviewer was a funny guy. The entire session was really funny and we had a debate on the company's owner for a while which was more funny

Jal Jeevan Mission Interview FAQs

What are the top questions asked in Jal Jeevan Mission Technical Support Engineer interview?

Some of the top questions asked at the Jal Jeevan Mission Technical Support Engineer interview -

  1. Water supply and WTP pumping &electrical w...read more
  2. Electrical work tansform...read more

Tell us how to improve this page.

Management Consultant
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Coordinator
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Jal Jeevan Mission with

Swachh Bharat Abhiyan

4.2
Compare

WaterAid

3.9
Compare

Sarva Yoga

4.5
Compare

Gram Vikas Udyog

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