Upload Button Icon Add office photos

Filter interviews by

Iniesta Webtech Solution Python Developer Interview Questions and Answers

Updated 24 Apr 2024

Iniesta Webtech Solution Python Developer Interview Experiences

1 interview found

Python Developer Interview Questions & Answers

user image Shivang Chanda

posted on 24 Apr 2024

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

1 hour test duration for coding test

Round 2 - Technical 

(1 Question)

  • Q1. Run length using token challenges
  • Ans. 

    Run length encoding is a method to compress data by representing consecutive identical characters as a single token followed by the count.

    • Iterate through the input array and count consecutive identical tokens

    • Replace consecutive identical tokens with a single token followed by the count

    • Return the compressed array of strings

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. It was based on Data structures

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Time management

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is done within the same class while method overriding is done in different classes (subclass and superclass).

    • Method overloading is achieved by changing the number of parameters or the data type of ...

  • Answered by AI
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, don't hesitate.

I applied via Recruitment Consultant and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. PI questions and related to my previous experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident in every interview , you will see the difference. Because key to crack any interview is how confident you are while answering interview's questions.

SO JUST BE CONFIDENT WHAT YOU SPEAK.

I applied via Campus Placement and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Better don’t join as a fresher. No career growth

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Waterfall model, Software development life cycle
  • Q2. How do you arrive at factorial without recursive function
  • Ans. 

    Factorial can be calculated using a loop by multiplying numbers from 1 to n.

    • Initialize a variable to 1

    • Use a loop to multiply the variable with numbers from 1 to n

    • Return the variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your fundamental skills

I applied via Campus Placement and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About the basics of c, c++ and java, also asked to explain the project that I developed.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and transparent. Explain your reasons and issues if any they are under standable.

Interview Questionnaire 

3 Questions

  • Q1. Process builder. 2.types of relationships. 3.difference in user ,profile and role. 4.workflow. 5.Admin questions
  • Ans. 

    Answering questions related to software development and Salesforce administration.

    • Process Builder is a visual tool in Salesforce used to automate business processes.

    • Types of relationships in Salesforce include lookup, master-detail, and many-to-many relationships.

    • User represents an individual who can log in and access Salesforce, Profile defines the permissions and settings for a user, and Role determines the hierarchy...

  • Answered by AI
  • Q2. What configuration i have done.
  • Ans. 

    I have configured various software systems and tools for development purposes.

    • Configured IDEs such as Eclipse and Visual Studio for development

    • Set up version control systems like Git and SVN

    • Installed and configured build tools like Maven and Gradle

    • Configured application servers like Tomcat and JBoss

    • Set up databases like MySQL and Oracle for development and testing

  • Answered by AI
  • Q3. Salary negotiations

Interview Preparation Tips

Round: Manager round
Experience: Configuration and what work ee have done in your previous company.

Skills evaluated in this interview

I appeared for an interview before Oct 2021.

Round 1 - Aptitude Test 

30 mns to 1 hr of aptitude test was conducted and later technical

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between tuple and list
  • Ans. 

    Tuple is immutable and ordered while list is mutable and ordered.

    • Tuple uses () while list uses []

    • Tuple cannot be modified while list can be modified

    • Tuple is faster than list for accessing elements

    • Tuple is used for fixed data while list is used for dynamic data

  • Answered by AI
  • Q2. What is a suite in python
  • Ans. 

    A suite in Python is a group of statements that are executed together as a single block.

    • Suites are used in control structures like if, while, for, etc.

    • Suites are defined by their indentation level.

    • Suites can contain one or more statements.

    • Suites can also be empty.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and give your answers confidently so that you can communicate well

Skills evaluated in this interview

Iniesta Webtech Solution Interview FAQs

How many rounds are there in Iniesta Webtech Solution Python Developer interview?
Iniesta Webtech Solution interview process usually has 3 rounds. The most common rounds in the Iniesta Webtech Solution interview process are Technical and Coding Test.
What are the top questions asked in Iniesta Webtech Solution Python Developer interview?

Some of the top questions asked at the Iniesta Webtech Solution Python Developer interview -

  1. Run length using token challen...read more
  2. It was based on Data structu...read more

Tell us how to improve this page.

Iniesta Webtech Solution Python Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Compare Iniesta Webtech Solution with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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