Upload Button Icon Add office photos

Filter interviews by

Cleareye.ai Interview Questions and Answers

Updated 10 Apr 2025
Popular Designations

7 Interview questions

An Associate Trade Operations was asked 2mo ago
Q. What do you know about Trade Finance?
Ans. 

Trade finance facilitates international trade by providing financial instruments and services to manage risks and ensure payment.

  • Trade finance includes instruments like letters of credit, which guarantee payment to exporters.

  • It helps mitigate risks such as currency fluctuations and non-payment by buyers.

  • For example, a letter of credit can assure a seller that they will receive payment once they fulfill the terms o...

An Associate Trade Operations was asked 2mo ago
Q. What are some examples of trade finance documents?
Ans. 

Trade finance documents facilitate international trade by ensuring payment and reducing risks for exporters and importers.

  • Letter of Credit (LC): A bank guarantee for payment to the seller upon meeting specified conditions.

  • Bill of Lading (B/L): A document issued by a carrier acknowledging receipt of cargo for shipment.

  • Commercial Invoice: A document detailing the sale transaction between buyer and seller, including ...

A Python Developer Intern was asked 12mo ago
Q. What factors would you consider when creating a function that takes a date and a number of days as input and returns the date after adding the specified number of days?
Ans. 

Consider input validation, handling leap years, and using datetime library for accurate date calculations.

  • Validate input date format and ensure it is a valid date

  • Account for leap years when adding days to the date

  • Use datetime library in Python for accurate date calculations

View all Python Developer Intern interview questions
A Python Developer Intern was asked 12mo ago
Q. What are the differences between lists and tuples?
Ans. 

Lists are mutable, tuples are immutable data structures in Python.

  • Lists are enclosed in square brackets [], tuples in parentheses ().

  • Lists can be modified (add, remove, change elements), tuples cannot be modified once created.

  • Lists are used for collections of items that may need to be changed, tuples are used for fixed collections of items.

  • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

View all Python Developer Intern interview questions
A Jr Python Developer was asked
Q. What are the differences between lists and tuples in Python?
Ans. 

List is mutable, tuple is immutable in Python.

  • List can be modified (add, remove, change elements), tuple cannot be modified.

  • List is defined using square brackets [], tuple is defined using parentheses ().

  • List is used when we have a collection of items that may need to be changed, tuple is used when we have a collection of items that should not change.

View all Jr Python Developer interview questions
A Jr Python Developer was asked
Q. Dict and it's functions
Ans. 

Dict is a built-in data type in Python used to store key-value pairs.

  • Dict functions include keys(), values(), items(), get(), pop(), update(), clear().

  • Example: dict.keys() returns a list of all keys in the dictionary.

  • Example: dict.get('key') returns the value associated with 'key'.

View all Jr Python Developer interview questions
A Business Analyst was asked
Q. Type of Letter of credit
Ans. 

Types of letter of credit

  • Revocable letter of credit

  • Irrevocable letter of credit

  • Confirmed letter of credit

  • Transferable letter of credit

  • Standby letter of credit

View all Business Analyst interview questions
Are these interview questions helpful?

Cleareye.ai Interview Experiences

5 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
  • Q1. They asked all about collection and Lc
  • Q2. Some question on error making by the team member
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between list and tuples
  • Ans. 

    Lists are mutable, tuples are immutable data structures in Python.

    • Lists are enclosed in square brackets [], tuples in parentheses ().

    • Lists can be modified (add, remove, change elements), tuples cannot be modified once created.

    • Lists are used for collections of items that may need to be changed, tuples are used for fixed collections of items.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q2. What are the things which you will consider when u are creating a function where the date and no. of days will be given we have to output the date after adding the no. of days to the inputed date.
  • Ans. 

    Consider input validation, handling leap years, and using datetime library for accurate date calculations.

    • Validate input date format and ensure it is a valid date

    • Account for leap years when adding days to the date

    • Use datetime library in Python for accurate date calculations

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. What do you know about Trade Finance?
  • Ans. 

    Trade finance facilitates international trade by providing financial instruments and services to manage risks and ensure payment.

    • Trade finance includes instruments like letters of credit, which guarantee payment to exporters.

    • It helps mitigate risks such as currency fluctuations and non-payment by buyers.

    • For example, a letter of credit can assure a seller that they will receive payment once they fulfill the terms of the...

  • Answered by AI
  • Q3. Examples of trade finance documents
  • Ans. 

    Trade finance documents facilitate international trade by ensuring payment and reducing risks for exporters and importers.

    • Letter of Credit (LC): A bank guarantee for payment to the seller upon meeting specified conditions.

    • Bill of Lading (B/L): A document issued by a carrier acknowledging receipt of cargo for shipment.

    • Commercial Invoice: A document detailing the sale transaction between buyer and seller, including terms...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Type of Letter of credit
  • Ans. 

    Types of letter of credit

    • Revocable letter of credit

    • Irrevocable letter of credit

    • Confirmed letter of credit

    • Transferable letter of credit

    • Standby letter of credit

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 question on python basics

Round 2 - HR 

(1 Question)

  • Q1. It was friendly
Round 3 - Technical 

(3 Questions)

  • Q1. Simple python question over video call
  • Q2. Diff betweenlist and tupple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified (add, remove, change elements), tuple cannot be modified.

    • List is defined using square brackets [], tuple is defined using parentheses ().

    • List is used when we have a collection of items that may need to be changed, tuple is used when we have a collection of items that should not change.

  • Answered by AI
  • Q3. Dict and it's functions
  • Ans. 

    Dict is a built-in data type in Python used to store key-value pairs.

    • Dict functions include keys(), values(), items(), get(), pop(), update(), clear().

    • Example: dict.keys() returns a list of all keys in the dictionary.

    • Example: dict.get('key') returns the value associated with 'key'.

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Cleareye.ai?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All Technical quetions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared technically

I applied via Campus Placement and was interviewed before Jun 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. General HR questions and some current related topic

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak till recruiter stops you
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Java c c++

Interview Questionnaire 

1 Question

  • Q1. Your past exp?

Interview Questionnaire 

2 Questions

  • Q1. Questions were mostly situations based.
  • Q2. Technical explanation is required

Cleareye.ai Interview FAQs

How many rounds are there in Cleareye.ai interview?
Cleareye.ai interview process usually has 1-2 rounds. The most common rounds in the Cleareye.ai interview process are Technical, HR and Coding Test.
How to prepare for Cleareye.ai 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 Cleareye.ai. The most common topics and skills that interviewers at Cleareye.ai expect are Python, Machine Learning, Deep Learning, Kubernetes and Automation Testing.
What are the top questions asked in Cleareye.ai interview?

Some of the top questions asked at the Cleareye.ai interview -

  1. What are the things which you will consider when u are creating a function wher...read more
  2. What do you know about Trade Finan...read more
  3. Difference between list and tup...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

Cleareye.ai Reviews and Ratings

based on 17 reviews

3.3/5

Rating in categories

3.7

Skill development

3.1

Work-life balance

3.0

Salary

3.4

Job security

3.0

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 17 Reviews and Ratings
Senior Developer

Thiruvananthapuram

5-8 Yrs

Not Disclosed

Lead Developer

Thiruvananthapuram

8-12 Yrs

Not Disclosed

Explore more jobs
QA Engineer
24 salaries
unlock blur

₹4.2 L/yr - ₹4.2 L/yr

Machine Learning Engineer
13 salaries
unlock blur

₹7 L/yr - ₹8.1 L/yr

Business Analyst
7 salaries
unlock blur

₹7.5 L/yr - ₹16 L/yr

Product Engineer
5 salaries
unlock blur

₹3.8 L/yr - ₹14.3 L/yr

Senior Product Engineer
5 salaries
unlock blur

₹4.2 L/yr - ₹13 L/yr

Explore more salaries
Compare Cleareye.ai with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview