Upload Button Icon Add office photos

Filter interviews by

Indicsoft Technologies Interview Questions and Answers for Experienced

Updated 28 Mar 2024

Indicsoft Technologies Interview Experiences for Experienced

2 interviews found

Software Engineer Interview Questions & Answers

user image Himanshu Shekhar Singh

posted on 3 Aug 2023

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is your name?
  • Q2. Are you ready to learn and grow with us?
  • Q3. Do you have questions?

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 (170)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Sql, Python

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 (170)

Interview questions from similar companies

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

Interview Questionnaire 

14 Questions

  • Q1. Python is interpreted then why .pyc files are there?
  • Ans. 

    Python compiles source code to bytecode for faster execution, stored in .pyc files.

    • Python interpreter compiles source code to bytecode before execution

    • Bytecode is platform-independent and faster to execute than source code

    • Compiled bytecode is stored in .pyc files for future use and faster startup time

    • If source code is modified, .pyc files are automatically recompiled

  • Answered by AI
  • Q2. Explain Django life cycle.
  • Ans. 

    Django life cycle involves request processing, URL routing, view function execution, template rendering, and response generation.

    • When a request is made, Django checks the URL patterns defined in urls.py file.

    • If a match is found, the corresponding view function is executed.

    • The view function processes the request and returns a response.

    • The response is rendered using a template, if applicable.

    • The final response is sent ba

  • Answered by AI
  • Q3. Explain ownership of the project approach.
  • Ans. 

    Ownership of the project approach refers to taking responsibility for the project's success and making decisions accordingly.

    • The owner of the project approach should have a clear understanding of the project's goals and objectives.

    • They should be able to make informed decisions about the project's direction and prioritize tasks accordingly.

    • The owner should also be accountable for the project's success or failure and be ...

  • Answered by AI
  • Q4. Difference between sort and sorted, dump vs dumps, load vs loads etc.
  • Ans. 

    Difference between sort and sorted, dump vs dumps, load vs loads etc.

    • sort() is a method of list object while sorted() is a built-in function

    • dump() serializes an object to a file while dumps() serializes to a string

    • load() deserializes an object from a file while loads() deserializes from a string

  • Answered by AI
  • Q5. Design patterns in Python?
  • Ans. 

    Design patterns are reusable solutions to common problems in software design.

    • Design patterns provide a structured approach to solving design problems.

    • Python has several design patterns such as Singleton, Factory, Observer, etc.

    • Each design pattern has its own purpose and usage.

    • Design patterns promote code reusability, maintainability, and scalability.

    • Understanding design patterns helps in writing cleaner and more effici

  • Answered by AI
  • Q6. Generator, Iterator, enumeration, Yeild, decorators, closures etc.
  • Q7. Explain dict, tuple, list, set, string etc.
  • Ans. 

    Data structures in Python: dict, tuple, list, set, string

    • dict: unordered collection of key-value pairs

    • tuple: ordered, immutable collection of elements

    • list: ordered, mutable collection of elements

    • set: unordered collection of unique elements

    • string: ordered collection of characters

  • Answered by AI
  • Q8. How many python modules you have used?
  • Ans. 

    I have used multiple python modules for various purposes.

    • I have used NumPy for numerical computations.

    • I have used Pandas for data analysis and manipulation.

    • I have used Matplotlib for data visualization.

    • I have used Flask for web development.

    • I have used Requests for making HTTP requests.

    • I have used BeautifulSoup for web scraping.

    • I have used Scikit-learn for machine learning tasks.

    • I have used TensorFlow for deep learning

  • Answered by AI
  • Q9. Can we use list as dict key?
  • Ans. 

    Yes, but only if the list is immutable.

    • Lists are mutable and cannot be used as dict keys.

    • Tuples are immutable and can be used as dict keys.

    • If a list needs to be used as a key, it can be converted to a tuple.

  • Answered by AI
  • Q10. Explain list slices, starts and ends at.
  • Ans. 

    List slices are a way to extract a portion of a list by specifying start and end indices.

    • List slices are denoted by using square brackets with start and end indices separated by a colon.

    • The start index is inclusive and the end index is exclusive.

    • If the start index is omitted, it defaults to 0. If the end index is omitted, it defaults to the length of the list.

    • Negative indices can be used to count from the end of the li...

  • Answered by AI
  • Q11. Explain Lambda functions. Map, reduce, filter etc.
  • Ans. 

    Lambda functions are anonymous functions that can be passed as arguments to other functions.

    • Lambda functions are also known as anonymous functions because they don't have a name.

    • They are often used as arguments to higher-order functions like map, reduce, and filter.

    • Map applies a function to each element of an array and returns a new array with the results.

    • Reduce applies a function to the elements of an array and return...

  • Answered by AI
  • Q12. Explain memory management of python.
  • Ans. 

    Python uses automatic memory management through garbage collection.

    • Python uses reference counting to keep track of objects in memory.

    • When an object's reference count reaches zero, it is deleted by the garbage collector.

    • Python also uses a cyclic garbage collector to detect and delete objects with circular references.

    • Memory can be managed manually using the ctypes module.

    • Python's memory management is efficient and transp

  • Answered by AI
  • Q13. Explain GIL python.
  • Ans. 

    GIL stands for Global Interpreter Lock, which is a mechanism used in CPython to ensure thread safety.

    • GIL is a mutex that allows only one thread to execute Python bytecode at a time.

    • It is necessary because CPython's memory management is not thread-safe.

    • GIL can cause performance issues in CPU-bound multi-threaded applications.

    • However, it does not affect I/O-bound or multi-process applications.

    • Alternative Python implement...

  • Answered by AI
  • Q14. Explain Threading of Python.
  • Ans. 

    Threading in Python allows multiple threads of execution to run concurrently within a single process.

    • Python's threading module provides a way to create and manage threads.

    • Threads share the same memory space and can access the same variables and data structures.

    • Threading can improve performance for I/O-bound tasks, but not for CPU-bound tasks.

    • Python's Global Interpreter Lock (GIL) limits true parallelism in multi-thread...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident but don't loose hopes sometimes interviewer has different views may be he can't predict those with. But some where these gets matches and we get job. Best of luck.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why do you left the previous organisation?
  • Q2. Explain about the process you worked for

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and communication is the key and try to be humble as possible.

Associate Manager-Service Delivery Interview Questions & Answers

Sutherland Global Services user image Anonymous

posted on 5 Aug 2020

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

Interview Questionnaire 

1 Question

  • Q1. About my previous job. What were the metrics I was driving . how would you deal with a team which is in bottom quintiles. How would you motivate your team and manage attrition

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay focused on what you have prepared for the interview, questions may be different but it all leads to how good a team member manager you are going to be.
E.g I was prepared for question "why should we hire you" but I was asked what difference are you going to bring in if you are selected

Similarly there are many questions that may be asked in different ways but you have to promptly rephrase your answer to match the question

I applied via Referral and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Three rounds of technical interview with one hr interview which was friendly and challenging
  • Q2. What made you to be successful till now

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool and answer calmly

Interview Questionnaire 

3 Questions

  • Q1. Inevitable consisted of 4 round :-
  • Q2. One such question i remember was no of possible decoding of a given integer string. Ex - If a-1, b-2, c-3, ... Z - 26 Then 123 can be written as ABC, LC, AW
  • Q3. 3) MCQ - it consisted of multiple choice questions from android and java domain. The level was medium. 4) Manager round - asked questions about my project and technologies used. Gave me a problem relate...

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Algorithms

I applied via Company Website and was interviewed in Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I was asked questions about CICD, terraform, k8s, aws architect as well as many experience related questions like how much did you train others, how many recognitions did you receive in last companies
  • Q2. Go well prepared on the technology you work in and try to grasp deep knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and tell yourself I will do my best no matter what is the result, I tried the same and it gave me result, not just here also in other 5 interviews. I appeared in the same interview 2 years ago and was eliminated in the first round itself.

Assistant BPS Interview Questions & Answers

DXC Technology user image Anonymous

posted on 5 May 2019

Interview Questionnaire 

2 Questions

  • Q1. Based on resume and accounting
  • Q2. What is Credit sales and credit purchases

Interview Preparation Tips

Round: Resume Shortlist
Experience: Freshers

Round: Group Discussion
Experience: Own choice

Round: Test
Experience: Accounts

Interview Preparation Tips

Round: Test
Experience: Quant + Critical ReasoningIt was very light, a person who is preparing for CAT will excel here. But even a normal candidate can make it easily.I didn't prepare for CAT but it was probably my best aptitude ever. Verbal Section:Verbal is also light (no need of any special preparation), many questions are based on selecting correct sentenceout of wrong ones, some where like two-three sentences will be given with some information and you shouldchoose the appropriate statement from among the options that is incurred from both the statements, 2 comprehensions.
Tips: Quant is very easy, there might be some tricky time taking questions so don't waste your time in solving that try solving next. RS Agarwal is a good book to prepare. Comprehensions are at the start of the verbal section so please don't waste your time in comprehension passage, try to do other questions first as they are very easy.
Duration: 70 minutes

Round: HR Interview
Experience: In Infosys normally, the interview panel members are old experienced professionals. My interview wentreally good, he first asked me about myself, about my future plans, then he asked me about my interests, my C.G.P.A, followed by how I prepared for exams.Then he asked me if I have been in any Co-ordination committee, After that he gave me a situation and then asked me what I would do in that situation. Totally it was light.
Tips: Never be so nervous, as it will affect your performance. In the interview basically they will check for your communication skills, your management skills, your leadership qualities, your ability to work in a group.In the interview never panic, keep cool, try to keep good eyecontact with the interviewer.

College Name: NIT WARANGAL

Indicsoft Technologies Interview FAQs

How many rounds are there in Indicsoft Technologies interview for experienced candidates?
Indicsoft Technologies interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Indicsoft Technologies interview process for experienced candidates are Resume Shortlist, One-on-one Round and Technical.
How to prepare for Indicsoft Technologies interview for experienced candidates?
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 Indicsoft Technologies. The most common topics and skills that interviewers at Indicsoft Technologies expect are AWS, Python, SCALA, Big Data and HBase.

Tell us how to improve this page.

People are getting interviews through

based on 1 Indicsoft Technologies interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 782 Interviews
View all

Indicsoft Technologies Reviews and Ratings

based on 23 reviews

3.6/5

Rating in categories

3.8

Skill development

3.7

Work-Life balance

3.4

Salary & Benefits

3.8

Job Security

3.7

Company culture

3.2

Promotions/Appraisal

3.4

Work Satisfaction

Explore 23 Reviews and Ratings
Software Engineer
8 salaries
unlock blur

₹2 L/yr - ₹10.7 L/yr

Java Developer
8 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Business Analyst
7 salaries
unlock blur

₹3 L/yr - ₹6.6 L/yr

Software Developer
6 salaries
unlock blur

₹4.8 L/yr - ₹5.2 L/yr

Devops Engineer
6 salaries
unlock blur

₹3 L/yr - ₹9.4 L/yr

Explore more salaries
Compare Indicsoft Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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