Upload Button Icon Add office photos

Filter interviews by

Intelgic Python Developer Interview Questions and Answers

Updated 31 May 2024

Intelgic Python Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Monster and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Asked basic questions on Python -
what is a tuple, set?
how to sort a list?
Have you worked with pandas, what is a data frame?

Round 2 - Technical 

(1 Question)

  • Q1. Asked - how to add elements to a list? what is JSON? how to remove duplicate values from a list? write a code to print prime numbers from 1 to 100.
  • Ans. 

    Adding elements to a list, understanding JSON, removing duplicates, and printing prime numbers in Python.

    • To add elements to a list in Python, you can use the append() method or the extend() method.

    • JSON (JavaScript Object Notation) is a lightweight data interchange format that is easy for humans to read and write, and easy for machines to parse and generate.

    • To remove duplicate values from a list, you can convert the lis...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Some basic HR questions - tell me about yourself. tell me the reason for pursuing this career. why are you the best fit for this role?

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Python Language?
  • Q2. Python is a object oriented programming language.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you a reverse a string in Python?
  • Ans. 

    Use slicing with step size -1 to reverse a string in Python.

    • Use string slicing with step size -1 to reverse the string.

    • Example: 'hello'[::-1] will return 'olleh'.

  • Answered by AI
  • Q2. You can reverse a string using slicing.
  • Ans. 

    Yes, you can reverse a string in Python using slicing.

    • Use the slicing syntax [::-1] to reverse a string.

    • Example: 'hello'[::-1] will return 'olleh'.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - "Research the company thoroughly."
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Python Language?
  • Q2. Python is a object oriented programming language.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you reverse in a list in PYthon?
  • Ans. 

    Use the reverse() method to reverse a list in Python.

    • Use the reverse() method to reverse the elements of a list in place.

    • Example: my_list = [1, 2, 3, 4]; my_list.reverse(); print(my_list) will output [4, 3, 2, 1].

  • Answered by AI
  • Q2. You can use the reverse() method or slicing.

Interview Preparation Tips

Interview preparation tips for other job seekers - "Research the company before interview."
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you reverse a string in Python?
  • Ans. 

    Use slicing with step -1 to reverse a string in Python.

    • Use string slicing with step -1 to reverse a string: str[::-1]

    • Example: 'hello'[::-1] will return 'olleh'

  • Answered by AI
  • Q2. Use slicing reversed_string ="hello
  • Ans. 

    Using slicing to reverse a string in Python

    • Use slicing with a step of -1 to reverse the string

    • Example: reversed_string = 'hello'[::-1]

    • Print reversed_string to see the reversed result

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - "Network effectively and genuinely."
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you reverse a string in Python?
  • Ans. 

    Use slicing with step -1 to reverse a string in Python.

    • Use slicing with step -1 to reverse a string: str[::-1]

    • Example: s = 'hello', reversed_s = s[::-1] will result in 'olleh'

  • Answered by AI
  • Q2. Use Slicing ex - reverse_string ="hello"
  • Ans. 

    Slicing in Python allows you to extract a portion of a string or list by specifying a start and end index.

    • Use square brackets [] to specify the start and end index for slicing.

    • The start index is inclusive, while the end index is exclusive.

    • You can also specify a step value to skip elements while slicing.

    • Example: reverse_string = 'hello'; reverse_string[::-1] will output 'olleh'.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - "Focus on building relevant skills."
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What is a python decorator and how does it work?
  • Ans. 

    Python decorator is a design pattern that allows you to add new functionality to existing functions or methods without modifying their structure.

    • Decorators are denoted by the @ symbol followed by the decorator name.

    • They are functions that take another function as an argument and return a new function.

    • Decorators can be used for logging, timing, authentication, and more.

    • Example: @my_decorator def my_function(): pass

  • Answered by AI
  • Q2. A python decorator is a function that modifies another function's behaviour

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learning and improving skills
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. How would you handle exceptions in Python?
  • Ans. 

    Exceptions in Python are handled using try-except blocks to catch and handle errors gracefully.

    • Use try-except blocks to catch exceptions and handle them gracefully.

    • You can specify different except blocks for different types of exceptions.

    • Use the 'finally' block to execute code regardless of whether an exception was raised or not.

  • Answered by AI
  • Q2. Using a try-except block

Interview Preparation Tips

Interview preparation tips for other job seekers - customize your resume for each job
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Measure of your ability to learn or perform required tasks and succeed in the environment you're in. They are not a measure of intelligence these tests look for your strengths and weaknesses, giving you and the evaluator an idea of your abilities.

Round 3 - Coding Test 

To asking the question for the coding

Round 4 - HR 

(1 Question)

  • Q1. Tell me about your self? What is your strength? What is your weekeness? Why should I hire u ?
  • Ans. Thank you for this opportunity to this position of interview my self sowmya patro I am from vishakapatnam Andhra Pradesh my graduation is degree in bsc computers msrs.siddardha degree college coming to my family background I believe in nuclear family including me my father has working from A/c mechanic my mother house wife My strength is time punctuality and good good communication skills My weekness is public talking
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for HCL Infosystems Python Developer Lead interview:
  • Non Voice Process
  • Python
Interview preparation tips for other job seekers - Sir /madam
I am a good hard worker

Intelgic Interview FAQs

How many rounds are there in Intelgic Python Developer interview?
Intelgic interview process usually has 3 rounds. The most common rounds in the Intelgic interview process are Coding Test, Technical and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Intelgic interview
Job Portal
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

AmbitionBox Interview Questions
5.0
 • 144 Interviews
HCL Infosystems Interview Questions
3.9
 • 141 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
Data Entry Interview Questions
4.1
 • 95 Interviews
JioMart Interview Questions
3.9
 • 92 Interviews
HyScaler Interview Questions
4.5
 • 90 Interviews
CapitalOne Interview Questions
4.0
 • 73 Interviews
3 Minds Digital Interview Questions
4.4
 • 63 Interviews
View all

Intelgic Python Developer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

4.5

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

4.5

Work Satisfaction

Explore 2 Reviews and Ratings
Software Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹4.8 L/yr

Python Software Developer
4 salaries
unlock blur

₹3.6 L/yr - ₹4.8 L/yr

Quality Analyst
3 salaries
unlock blur

₹2.2 L/yr - ₹3.5 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹6.5 L/yr - ₹7.3 L/yr

Explore more salaries
Compare Intelgic with

Marpu Foundation

4.9
Compare

Huawei Technologies

4.0
Compare

HCL Infosystems

3.9
Compare

Exotic Learning

4.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