Upload Button Icon Add office photos

Geekyants Software

Compare button icon Compare button icon Compare

Filter interviews by

Geekyants Software Software Engineer III Interview Questions and Answers

Updated 24 Mar 2024

Geekyants Software Software Engineer III Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Questions related to flutter sort a list various method usage

Interview questions from similar companies

I applied via Campus Placement

Interview Questionnaire 

3 Questions

  • Q1. Tell me one thing about you that's not listed on your resume
  • Ans. 

    I am an avid traveler and have visited over 20 countries

    • I love experiencing new cultures and trying new foods

    • I have backpacked through Europe and Asia

    • I have volunteered in orphanages in Cambodia and Nepal

  • Answered by AI
  • Q2. When you hear InMobi, what's the first word that comes in your head?
  • Ans. 

    Mobile advertising platform

    • Adtech

    • Mobile marketing

    • App monetization

  • Answered by AI
  • Q3. The office of InMobi technologies has 10 floors, each with 300 employees. In the morning (7-8 AM), the building sees 3000 employees entering and waiting in a queue for 3 lifts. In the morning, everyone goe...

Interview Preparation Tips

Round: Resume Shortlist
Experience: The first round was a resume shortlist, which I think was on the basis of programming and coding courses (and projects) taken along with your CGPA. Out of 10 shortlisted people, I knew 4 and all of us were 9 pointers. The rest who I didn't know turned out to be 9 pointers as well! :P
Out of 10 shortlisted people, 3 (including me) were from ECE and the rest were from CS. Even though InMobi was open for Mathematics & Computing, no person from MnC dept. was in the shortlist. (Presumably due to their CGPAs or some other criterion that I'm not in the knowledge of.)
Tips: i) High CGPA is a must (We're talking above 9, at the end of 2nd year for CS/ECE and 3rd year for MnC)
ii)Taking programming and algorithm courses and projects is important, as that must be visible in your resume.

Round: Puzzle Interview
Experience: One special thing about the interviews, you're asked not to wear any formals! That actually helps in taking the tension off of things!
It's simple logic, after that. Increase the lift's speed (taking in mind of the safety), collecting usage data, optimising the lift's floor-stoppage according to that.
As told after the interview, the interviewer is just observing how you think and approach a problem.

One odd thing was not being asked about any coding/algorithm questions even though the profile was for a software engineer.

After this question, I was asked if I had any questions to ask. I simply stated that the work environment and culture affected me as much as the profile I'm applying for. Thus, the drive and motivation of the people who work there is also very important. So I asked what are the companies' values which the employees believe in, too.
Tips: Stay confident, don't let any tension get to your head.
In the future, InMobi may start asking coding questions too in the interviews. or change the selection procedure, which will be communicated in the PPT of InMobi.
Whatever may happen, the first round should show your zeal to solve problems, your creativity in trying different approaches, and applying logic to find the best solution.

Round: HR Interview
Experience: OK! There were a lot of questions asked since the interview was more like a conversation taking place. Like in ANY conversation, keep proper eye contact, smile and be approachable for any questions. Show enthusiasm in your voice and your answers. The interviewer asked me questions about
i)My resume, and all the activities that I'd listed there. (eg: Why did you enlist in this course? Do you like coding?)
ii)Why programming, how does it interest you?
iii)Basic questions about InMobi, like 'What do you know about us after attending the PPT?' and 'Why InMobi'

Since I had done quite a lot of marketing activities, I was also asked about that. Will you do an MBA in the future? What all did you do for marketing? I had a strong background in digital marketing, and we had a little chat about mobile marketing and what's the future of mobile advertising.
Tips: Smile, for god's sake! It's a conversation about you, do all the basic things to improve the conversational experience.
Small things like greeting the interviewer, smiling, proper eye contact, and speaking properly are paramount.

Like in any HR interview, make sure you know yourself and your resume properly, so that you don't phase out in the interview when asked some 'unexpected' question. (since that's when they know thatyou might be lying/exaggerating). Hence introspect enough before sitting the interviews.

General Tips: Make sure you're able to convince yourself and the interviewers for why do you want to work in Inmobi Technolgies.

I've already shared the rest in previous sections! :)

2 people out of 10 were selected for this internship experience, so make sure you prepare well! All the best! :D

Skill Tips: I don't think that this adds on as a skill, but InMobi wants to create a huge impact on the mobile world and the mobile advertising sector.
Your knowledge about this sector in general could help you strike good conversations (at least in the HR round).
Skills: Logic, Problem Solving Abilties, Creativity, Communication Skills
Duration: 2.5
College Name: IIT Kharagpur
Motivation: I'm a gadget geek from my childhood. The mobile industry amazes me as it's been the biggest change-bringer in the modern world. InMobi as a company wants to create a huge impact in the mobile advertising space and mobile advertising! And seeing their products that they offer in this domain had me thinking that they're doing something unique and awesome!
The work culture of InMobi is just amazing, right from flexible work hours to the epic office they have in Bangalore full of awesome people working towards that one goal! Also, InMobi offers their employees opportunities to shift between various verticals if they want to. All of this (along with a good compensation ;-) ) was enough motivation for me to apply!
Funny Moments: When I was asked whether I was in the third year, I said yes, and then said, usually people think that I'm still in high school!
We had a good laugh on that one! :P

Otherwise also, the entire procedure was relaxed and fun in general.

Interview Questionnaire 

9 Questions

  • Q1. Find Maximum sub sequence sum in an array ?
  • Ans. 

    Maximum sub sequence sum in an array

    • Use Kadane's algorithm

    • Initialize max_so_far and max_ending_here to 0

    • Iterate through the array and update max_ending_here and max_so_far

    • Return max_so_far

  • Answered by AI
  • Q2. What do you understand by the endianness of the system ? How do you find out the the type of endianness ?
  • Ans. 

    Endianness refers to the byte order of a system. It determines how multi-byte data types are stored in memory.

    • Little-endian systems store the least significant byte first, while big-endian systems store the most significant byte first.

    • Endianness can affect the way data is transmitted between systems.

    • To determine the endianness of a system, you can use the byte order mark (BOM) or write a test program that checks the by...

  • Answered by AI
  • Q3. Sort an array which consists of 0's and 1's only
  • Ans. 

    Sort an array of 0's and 1's only.

    • Use two pointers, one at the beginning and one at the end of the array.

    • Swap 0's from the beginning with 1's from the end until the pointers meet.

    • Alternatively, use a counting sort algorithm to count the number of 0's and 1's and then reconstruct the array.

  • Answered by AI
  • Q4. A question on applications of minimum spanning tree, apply prim's or kruskal's algorithm
  • Q5. What do you understand by Heaps, max and min heaps ?
  • Ans. 

    Heaps are data structures used to efficiently find the maximum or minimum element in a collection.

    • Max heap: parent nodes are always greater than or equal to child nodes

    • Min heap: parent nodes are always smaller than or equal to child nodes

    • Heaps are commonly used in priority queues and sorting algorithms

    • Heap operations include insert, delete, and extract max/min

    • Example: An array [3, 8, 2, 5, 1, 4, 6] can be represented a

  • Answered by AI
  • Q6. What do you understand by hashing ? questions on application of hashing
  • Q7. Find 3 nos a,b and c in an array where a+b = c
  • Ans. 

    Find 3 numbers in an array where a+b=c.

    • Loop through the array and check for all possible combinations of a and b.

    • Use a hash table to store the values of a and b, and check if c is present in the hash table.

    • Sort the array and use two pointers to find a and b, and then check if their sum equals c.

  • Answered by AI
  • Q8. Some puzzles, as the other interviewee said, but not asked to me
  • Q9. Questions on Dynamic programming

Interview Preparation Tips

College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Algorithms on arrays and strings (coding)
  • Ans. 

    Algorithms for manipulating arrays and strings in coding

    • Use sorting algorithms like quicksort and mergesort for arrays

    • Use string manipulation functions like substring and replace for strings

    • Use dynamic programming for optimizing solutions to array and string problems

  • Answered by AI
  • Q2. Distributed Database Design
  • Q3. Large scale Ad Server Design
  • Ans. 

    Designing a large scale Ad Server

    • Use distributed systems for scalability

    • Implement caching for faster ad delivery

    • Ensure high availability and fault tolerance

    • Use real-time bidding for efficient ad placement

    • Implement fraud detection mechanisms

    • Ensure compliance with privacy regulations

  • Answered by AI

Interview Preparation Tips

Round: Interview
Experience: They tested on thought-process during design problems. What problems are with the current solution I suggested and how to improve it...
Tips: Hints from interviewer are very helpful
Keep talking while you are thinking

Skills: Algorithms, Thinking Skills, Coding
College Name: IIT KHARAGPUR

Skills evaluated in this interview

Interview Preparation Tips

College Name: Vidyalankar Institute Of Technology

Interview Questionnaire 

11 Questions

  • Q1. Hobbies: Drawing. Asked about drawing and pencil shading. Draw in next 5 mins something great to impress me else rejected
  • Q2. Sketch my face
  • Q3. If you are told to do a job of a peon for the company will you?
  • Q4. Remove all the pcs from the lab and keep in other lab RIGHT NOW?
  • Ans. 

    Yes, I can remove all the pcs from the lab and keep them in another lab right now.

    • Ensure all the necessary equipment and tools are available for the move

    • Coordinate with the lab staff to ensure a smooth transition

    • Label and document each PC for easy identification and setup in the new lab

    • Ensure proper packaging and handling to prevent any damage during the move

  • Answered by AI
  • Q5. Impress me with your talents
  • Q6. If a person asks you on a construction site to pick up bricks will you?
  • Q7. How crazy are you?
  • Q8. Show me how crazy are you in next 5 mins?
  • Q9. Write down Fibonacci series and also explain pseudo code for it?
  • Ans. 

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

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

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

    • The series goes on infinitely: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...

    • Pseudo code: 1. Initialize variables a=0, b=1, c=0 2. Print a and b 3. Repeat steps 4-6 until desired number of terms 4. c=a+b 5. Pr

  • Answered by AI
  • Q10. Write algorithm for matrix multiplication?
  • Ans. 

    Algorithm for matrix multiplication

    • Create a result matrix with dimensions of the two input matrices

    • Iterate through each row and column of the result matrix

    • For each element in the result matrix, multiply corresponding row in first matrix with corresponding column in second matrix

    • Add the products obtained in the previous step to get the final value for the element

  • Answered by AI
  • Q11. Explain your project and which algorithm you used in it. Why that algorithm?
  • Ans. 

    I worked on a project that involved sentiment analysis of customer reviews using Naive Bayes algorithm.

    • The project involved collecting customer reviews from various sources.

    • Preprocessing the data by removing stop words, stemming, and tokenizing.

    • Used Naive Bayes algorithm for sentiment analysis.

    • The algorithm was chosen because of its simplicity and effectiveness in text classification tasks.

    • The accuracy of the model was

  • Answered by AI

Interview Preparation Tips

Round: HR Interview
Experience: Confused

If they say do you have any questions?
NEVER ASK about your performance in that round.

Round: Technical Interview
Experience: Good
Tips: Interview depends on your basic knowledge

Skills: Presence Of Mind, Technical Skills, Analytical Skills
College Name: Vidyalankar Institute Of Technology
Motivation: Got rejected for TCS aptitude.
Funny Moments: Whole HR interview

Skills evaluated in this interview

Interview Questionnaire 

9 Questions

  • Q1. Talk about your BE project?
  • Ans. 

    Developed a web-based project management system for a construction company.

    • Used PHP and MySQL for backend development

    • Implemented user authentication and authorization

    • Designed a responsive UI using Bootstrap

    • Integrated Google Maps API for location tracking

    • Enabled file uploads and downloads for project documents

  • Answered by AI
  • Q2. If you belong to EXTC, then why IT?
  • Ans. 

    EXTC and IT are not mutually exclusive fields. My knowledge in EXTC complements my skills in IT.

    • My knowledge in EXTC gives me a strong foundation in electronics and communication, which are essential in the IT industry.

    • I have also gained programming skills through my coursework and projects in EXTC.

    • IT is a rapidly growing field with a lot of opportunities, and I believe my skills and knowledge make me a strong candidat...

  • Answered by AI
  • Q3. Are you ok with relocation?
  • Ans. 

    Yes, I am open to relocation for the right opportunity.

    • I am willing to relocate for a position that aligns with my career goals

    • I am excited about the prospect of exploring a new city and culture

    • I am flexible and adaptable to new environments

  • Answered by AI
  • Q4. Which languages are you familiar with?
  • Ans. 

    I am familiar with several programming languages.

    • Java

    • Python

    • C++

    • JavaScript

    • SQL

  • Answered by AI
  • Q5. BE project members and your guide
  • Q6. What/s the diffrencebetween leader and a manager
  • Ans. 

    A leader inspires and motivates while a manager plans and organizes.

    • Leaders focus on the big picture while managers focus on details

    • Leaders lead by example while managers delegate tasks

    • Leaders inspire and motivate while managers enforce rules and policies

    • Leaders are visionaries while managers are implementers

    • Examples of leaders: Steve Jobs, Martin Luther King Jr. Examples of managers: Tim Cook, COO of Apple

  • Answered by AI
  • Q7. Are you okay with relocation?
  • Ans. 

    Yes, I am open to relocation for the right opportunity.

    • I am willing to relocate for the right job opportunity

    • I am open to exploring new places and cultures

    • I understand that relocation may come with challenges, but I am prepared to face them

    • I am excited about the prospect of starting fresh in a new location

  • Answered by AI
  • Q8. What's the name of the person who took your technical interview?
  • Ans. 

    I'm sorry, I don't have that information.

    • N/A

  • Answered by AI
  • Q9. How was the TCS aptitude test?
  • Ans. 

    The TCS aptitude test was challenging but fair.

    • The test covered a wide range of topics including math, logic, and English.

    • The questions were designed to test problem-solving skills and critical thinking.

    • Time management was crucial as there were many questions to answer in a limited time.

    • Overall, the test was a good indicator of one's aptitude for software engineering.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: pretty decent and interactive
Tips: be true, be yourself

General Tips: Do not fake a personality, be original. Avoid an answer if you have to, but , in an affirmative way.
Skills: Ability To Justify, Ability To Be Involved In Hands On Work, Ability To Deal Diplomatically, Ability To Convince
College Name: Vidyalankar Institute Of Technology
Funny Moments: The HR interviewer asked me the name of my tech interviewer.

Interview Questionnaire 

7 Questions

  • Q1. Introduce Yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

  • Answered by AI
  • Q2. About Your Family
  • Q3. About MindTree
  • Q4. Why MindTree?
  • Ans. 

    MindTree's focus on innovation, culture of learning, and diverse opportunities make it an ideal fit for my career growth.

    • Strong focus on innovation and cutting-edge technologies

    • Culture of continuous learning and development

    • Diverse opportunities for growth and career advancement

  • Answered by AI
  • Q5. Plans for Higher Study
  • Ans. 

    I am currently focusing on gaining practical experience in the software engineering field, but I may consider pursuing higher studies in the future.

    • Currently focusing on gaining practical experience in software engineering

    • Open to considering higher studies in the future

    • Higher studies could include a Master's degree in Computer Science or related field

  • Answered by AI
  • Q6. About Relocation
  • Q7. Any Question?

Interview Preparation Tips

Round: Test
Experience: First round was aptitude test organised by our college through AMCAT
It had 4 section –
1. English – 25 questions (25 minutes)
2. Quantitative – 25 questions (35 minutes)
3. Technical – 25 questions (35 minutes)
4. Logical – 24 questions (35 minutes)
Practice previous Amcat papers. Technical was mostly from data structure and algorithm. There were very basic questions from Operating System and SQL. Each section had individual cut off . It was adaptive test so you can not go back to your previous answer.
Tips: If you are good in basics then you can easily score well in AMCAT.There is no negative marking in AMCAT.You have to manage time as some of the questions are lengthy.Follow R.S.Aggarwal book.
Topics to concentrate for Quantative:
· Time and Work
· Pipes and Cisterns
· Problems on Trains
· Boats and Streams
· Calendar and Clocks
· Probability
· Ratios and Percentage
· Number systems

Logical Ability
Analogy Pattern Recognition
Classification Pattern Recognition
Coding Pattern Recognition
Number Series Pattern Recognition
Direction sense, Blood relations, CDL
Puzzles, Logical word sequence
Selection decision table
Data sufficiency
Objective reasoning

English:

Synonyms/Antonyms/Word Meaning (Vocabulary)
Complete the Sentence (Grammar)
Spot error/Correct sentence (Grammar/sentence construction)
Sentence Ordering (Comprehension skills)
Questions based on passage (Comprehension skills)
Duration: 130 minutes
Total Questions: 99

Round: Resume Shortlist
Experience: Eligibility Criteria:

10th and 12th percentage - 65%
Aggregate of 60% in Engineering (BE / B.Tech/MCA only)
Please note the percentage calculation in case of CGPA:
Total marks obtained from in all the subjects from the first to last semester divided by total of maximum marks in all the subjects from first to last semester.
Candidates need to clear all exams before joining & should come with Degree Certificates
At the time of recruitment, Mindtree allow candidates to appear for the selection/interview process if they have less than 2 backlogs
Only Students from circuit branches can take part in the Mindtree selection process (branches mentioned below) :-
Computer Science and Engineering
Electronics
Electronics and Electricals
Electronics & Communication Engineering
Electronics & Instrumentation
Electronics and telecommunication Engineering
Information Science
Information Technology
Instrumentation Engineering
Telecommunication
MCA

Round: Test
Experience: This round is elimination round and your programs will be considered for technical round. There were 2 C/C++/Java programming questions and you need to type the program, compile and submit. Some hints will be on the screen. This test is conducted by Aspiring Minds. You have to focus on basics programming. There were two questions.One question from pattern printing and other one from array/pointer/String.
Tips: Focus on basic programming
Duration: 20 minutes
Total Questions: 2

Round: Technical Interview
Experience: Thorough discussion about the projects. My major work was on Advance Java, so the interviewer kept on grilling me. Questions on the database, challenges faced, control flow were asked. She even asked me about the implementation of my project. The interview ended with some questions on OOPs concepts.
Tips: Prepare both the programs which have been asked in Programming test. You are surely going to face this question. Prepare well with Logics.Apart from that you need to focus on C/Data Structure/DBMS/Basics of Operating System/Basics of OOPS.

C- Pointer/Array/Strings/Structure/Union
Data Structure : Linked List/Stack/Tree/Sorting/Traversal/SEaching

Round: HR Interview
Experience: This was end of d interview, thankfully I was able to answer all of them. I was the first candidate to enter .

I hope all that I shared above could help you in your preparation. Be confident and give your best.
Tips: In HR round, questions are of fixed type. in every Interview So preparee it from Indiabix.

General Tips: Focus on basics. The "basic" is most difficult to cover :D So Prepare well and be Confident
Skill Tips: Confidence is the key in all interview
Skills: Smartness, Ability To Think Of Creative Solutions, Technical Skill, Confidence
College Name: B P Poddar Institute of management and technology

I applied via Campus Placement

Interview Questionnaire 

4 Questions

  • Q1. Tell me about a time when you have worked on a group project
  • Ans. 

    Worked on a group project to develop a mobile app for a charity organization

    • Collaborated with team members to define project scope and requirements

    • Assigned tasks and set deadlines to ensure timely completion

    • Conducted regular meetings to discuss progress and address any issues

    • Implemented agile methodology to adapt to changing requirements

    • Delivered a functional and user-friendly app within the given timeframe

  • Answered by AI
  • Q2. How will you write a program to . For example, create a calculator
  • Ans. 

    To create a calculator program, use a GUI framework and implement basic arithmetic operations.

    • Choose a programming language and a GUI framework such as JavaFX or Tkinter.

    • Implement the basic arithmetic operations such as addition, subtraction, multiplication, and division.

    • Add functionality for decimal points, clear button, and negative numbers.

    • Test the program thoroughly to ensure accuracy and usability.

  • Answered by AI
  • Q3. Why do you want to work for this organisation?
  • Ans. 

    I am excited to work for this organisation because of its reputation for innovation and commitment to employee growth.

    • I am impressed by the company's track record of developing cutting-edge technology

    • I appreciate the emphasis on professional development and growth opportunities for employees

    • I am drawn to the company's culture of collaboration and teamwork

    • I am excited about the potential to work on projects that have a

  • Answered by AI
  • Q4. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers to create innovative solutions.

    • Leading a team of developers to create innovative solutions

    • Continuing to learn and stay up-to-date with the latest technologies

    • Contributing to the growth and success of the company

    • Mentoring and coaching junior developers

    • Taking on more responsibilities and challenges

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: I responded with a description of my third year engineering project. The interviewer was interested in knowing more about
a. how did we come up with the project idea
b. how was the work divided between the team members
c. what challenges did we face and how we overcame them
d. what was the final outcome. was the deliverable as per specifications
Tips: In my experience, interviewers are trying to understand how one works in a group / team. Provide examples instead of generic responses - these will serve as evidences to your claims. Try to include following pointers in your responses
a. what was your personal contribution (this is the most technical part of the response)
b. how did you assist other members
c. how did you seek help from other members
d. how did you take accountability of something outside your personal tasks.
e. how did you keep focus on the bigger picture

Round: Technical Interview
Experience: I responded with a flowchart of a standard calculator. It was a simple design. The interviewer was more interested in knowing
a. how did I come up with a design
b. how did I make sure the design was correct
c. what are the limitations of the design?
d. what enhancements can I make to the design
Tips: In my experience, the interviewers are trying to understand your analytical skills.
a. how do you understand the problem statement
b. why do you decide on one particular design. are there any alternatives.
c. how do you break down the problem statement to smaller tasks
d. how thoroughly do you understand your design, with limitations.
e. does it fulfill your client's purpose.


Round: HR Interview
Experience: I had undertaken thorough research about the organisation, which enabled me to map my ambitions and expectations to the organisational values and purpose.
Tips: I highly recommend doing a background research on the organisation. It also helps to be clear on your expectations.
For example, 'I want to work here because the company believes in taking a client centric approach to deliver solutions, while maintaining high ethical standards. This way of work aligns with my idea of undertaking challenging tasks in an environment which provides developmental platforms for employees.'

Round: HR Interview
Experience: I responded with my professional ambitions in the industry. The interviewer is more interested in understanding what your objective is and your plan to get there.
Tips: Study the career opportunities and pathways available in the industry. Decide which one suits your goals the best. It is alright not to have a completely confirmed plan. You can also demonstrate that you are flexible with your plan and will select the best available option at a future point in time.

General Tips: Learn from the experience. If you do not get selected, there is always a next opportunity. Understand what the recruiters are looking for. Try to refrain from repeating your mistakes.
Skills: Leadership Skills, Teamwork, Ability To Improvise, Basic Mathematics, Ability To Deal Diplomatically, Activeness Of Candidate, Analytical Skills, Object Oriented Programming (OOP) Basics, Programming
College Name: Vidyalankar Institute Of Technology
Funny Moments: The HR rep complimented me on having a unique name and asked me what it means. To which I had no answer. Quite embarrassing!

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Are u willing to relocate to different centers for training?
  • Ans. 

    Yes, I am willing to relocate to different centers for training.

    • I am open to the opportunity of relocating for training purposes.

    • I understand that training may be conducted in different centers and I am willing to adapt.

    • Relocating for training can provide valuable learning experiences and exposure to different environments.

    • I am flexible and willing to make the necessary arrangements to relocate if required.

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

    I am a software engineer with 5 years of experience in developing web applications using Java and JavaScript.

    • I have a strong knowledge of object-oriented programming and design patterns.

    • I am proficient in Java, JavaScript, HTML, and CSS.

    • I have experience working with frameworks like Spring and Angular.

    • I have worked on projects involving database management and RESTful APIs.

    • I am a quick learner and enjoy staying updated...

  • Answered by AI
  • Q3. What are your qualities ?
  • Ans. 

    I am a highly skilled and dedicated software engineer with a strong problem-solving ability.

    • Strong programming skills in languages like Java, C++, and Python

    • Excellent problem-solving and analytical skills

    • Ability to work well in a team and collaborate effectively

    • Strong attention to detail and ability to write clean and efficient code

    • Experience with software development methodologies like Agile

    • Good communication skills t...

  • Answered by AI
  • Q4. Would you be able to cope up with IT being extc engg?

Interview Preparation Tips

Round: HR Interview
Experience: answers to the above questions
ans 1)If you want to get campus placement blindly say yes I am able to relocate.
ans 2)Give the details about you which are not there in resume.
ans 3)give details about your strength.
ans 4)blindly say yes
Tips: Be confident and answer with full beleif in yourself.

General Tips: prepare aptitude wholly and basics about your project and strong subjects.
Skill Tips: clear the basics and be familiar with quantz and verbal ability
Skills: Aptitude, attitude, Confidence
College Name: Vidyalankar Institute Of Technology
Motivation: Its quality of services and brand value .
Funny Moments: none

Geekyants Software Interview FAQs

How many rounds are there in Geekyants Software Software Engineer III interview?
Geekyants Software interview process usually has 1 rounds. The most common rounds in the Geekyants Software interview process are One-on-one Round.
How to prepare for Geekyants Software Software Engineer III 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 Geekyants Software. The most common topics and skills that interviewers at Geekyants Software expect are Javascript.

Tell us how to improve this page.

Geekyants Software Software Engineer III Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
CRED Interview Questions
3.6
 • 36 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
View all
Geekyants Software Software Engineer III Salary
based on 47 salaries
₹10 L/yr - ₹19 L/yr
54% less than the average Software Engineer III Salary in India
View more details

Geekyants Software Software Engineer III Reviews and Ratings

based on 4 reviews

4.7/5

Rating in categories

4.8

Skill development

4.5

Work-life balance

4.3

Salary

3.0

Job security

4.8

Company culture

4.8

Promotions

4.6

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
110 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
64 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer III
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Geekyants Software with

CRED

3.6
Compare

Postman

3.6
Compare

Freshworks

3.5
Compare

Zoho

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