Add office photos
Engaged Employer

OodlesTechnologies

3.2
based on 292 Reviews
Filter interviews by

AGILE AIRPORT SERVICES Interview Questions and Answers

Updated 30 Apr 2024
Popular Designations

Q1. Write a Python Program in recursion

Ans.

A Python program in recursion

  • Recursion is a technique where a function calls itself to solve a problem

  • The function should have a base case to stop the recursion

  • The function should have a recursive case to continue the recursion

  • Example: Factorial of a number using recursion

  • Example: Fibonacci series using recursion

View 1 answer

Q2. How to import views in django

Ans.

To import views in Django, you need to create a views.py file and import it in urls.py

  • Create a views.py file in your Django app directory

  • Define your views in the views.py file

  • Import your views in urls.py using the 'from . import views' syntax

  • Map your views to URLs in urls.py using the 'path()' function

Add your answer

Q3. What is Models in django

Ans.

Models in Django are Python classes that define the structure of the database tables.

  • Models are used to create, read, update and delete data from the database.

  • They define the fields and their types, relationships between tables, and constraints.

  • Models can be created using the Django ORM (Object-Relational Mapping) or by writing SQL.

  • Example: class Book(models.Model): title = models.CharField(max_length=100) author = models.ForeignKey(Author, on_delete=models.CASCADE)

  • Models are...read more

Add your answer

Q4. Write a programme for particular series

Ans.

Program to generate a particular series

  • Define the series pattern

  • Use loops to generate the series

  • Store the series in an array

  • Print the array

Add your answer
Discover AGILE AIRPORT SERVICES interview dos and don'ts from real experiences

Q5. Create a function to find out if a given number is prime or not.

Ans.

Function to determine if a number is prime or not.

  • Check if the number is less than 2, return False if so

  • Iterate from 2 to the square root of the number, checking for divisibility

  • If no divisors found, return True (number is prime)

Add your answer

Q6. Create a function to find out the least repeating consecutive character in a string.

Ans.

Create a function to find the least repeating consecutive character in a string.

  • Iterate through the string and keep track of consecutive characters and their counts

  • Find the character with the least count of consecutive repetitions

  • Return the character with the least count

Add your answer

Q7. Give the difference between call by value and call by reference.

Ans.

Call by value passes a copy of the variable's value, while call by reference passes a reference to the variable's memory location.

  • Call by value passes a copy of the variable's value, so changes made to the parameter inside the function do not affect the original variable.

  • Call by reference passes a reference to the variable's memory location, so changes made to the parameter inside the function affect the original variable.

  • In Python, all function arguments are passed by refere...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at AGILE AIRPORT SERVICES

based on 3 interviews
Interview experience
3.0
Average
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Python Developer Interview Questions from Similar Companies

3.7
 • 15 Interview Questions
3.8
 • 12 Interview Questions
4.0
 • 12 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter