Upload Button Icon Add office photos

Filter interviews by

CinchiT Solutions VBA Developer Interview Questions and Answers

Updated 5 Sep 2022

CinchiT Solutions VBA Developer Interview Experiences

1 interview found

I applied via Indeed and was interviewed before Sep 2021. There were 2 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 - Technical 

(3 Questions)

  • Q1. Different types of Excel formulas, Conditions
  • Ans. 

    Excel formulas can be categorized into mathematical, logical, text, date/time, and lookup/reference formulas.

    • Mathematical formulas perform arithmetic operations like addition, subtraction, multiplication, and division.

    • Logical formulas evaluate conditions and return TRUE or FALSE.

    • Text formulas manipulate text strings.

    • Date/time formulas perform calculations with dates and times.

    • Lookup/reference formulas retrieve data fro...

  • Answered by AI
  • Q2. How the different types of Loops work
  • Ans. 

    Loops are used to execute a set of statements repeatedly until a condition is met.

    • For loop: executes a set of statements for a specified number of times

    • While loop: executes a set of statements as long as the condition is true

    • Do-While loop: executes a set of statements at least once, and then repeatedly executes the set of statements as long as the condition is true

    • For Each loop: used to loop through each element in an

  • Answered by AI
  • Q3. Writing Program to check the awareness of the programming structure

Interview Preparation Tips

Topics to prepare for CinchiT Solutions VBA Developer interview:
  • Excel
  • Advanced Excel
  • VBA
Interview preparation tips for other job seekers - If you are aware of excel, then it is very easy for you to crack the interview.

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Share details of your previous job.
  • Q3. What are your salary expectations?
  • Q4. Tell me about yourself.
Round 2 - Coding Test 

Data extraction from a table

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to work and learn.
Improved communication with various teams.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Why did you choose the flask over the django and fastapi?
  • Ans. 

    I chose Flask over Django and FastAPI due to its simplicity, flexibility, and ease of use for smaller projects.

    • Flask is lightweight and minimalistic, making it easier to set up and use for smaller projects.

    • Flask allows for more flexibility in terms of project structure and customization compared to Django.

    • Flask is well-suited for rapid prototyping and smaller applications where simplicity is key.

    • Django, on the other ha...

  • Answered by AI
  • Q2. Write the code for flask request and response block?
  • Ans. 

    Flask request and response block code snippet

    • Use Flask's request object to access incoming request data

    • Use Flask's jsonify function to create a JSON response

    • Handle different HTTP methods like GET, POST, etc. in the route function

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is ORM? which ORM tool, have you used?
  • Ans. 

    ORM stands for Object-Relational Mapping, a programming technique for converting data between incompatible type systems in object-oriented programming languages.

    • ORM is used to map objects from an application to tables in a relational database.

    • It simplifies data manipulation by allowing developers to work with objects instead of SQL queries.

    • Popular ORM tools include Hibernate for Java, Entity Framework for .NET, and Seq

  • Answered by AI
  • Q2. Write ORM code for select item from table?
  • Ans. 

    Use ORM code to select item from a table in database.

    • Use ORM query methods like find(), findOne(), or where() to select items from a table.

    • Specify the table name and any conditions for the selection.

    • Example: User.find({ where: { id: 1 } }) will select a user with id 1 from the User table.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just conduct the interviews
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

General aptitude, computer science fundamentals multiple-choice questions, and data structures and algorithms multiple-choice questions were asked.

Round 2 - Technical 

(2 Questions)

  • Q1. Given a string, write a function to reverse the string.
  • Ans. 

    Function to reverse a given string

    • Create an empty string to store the reversed string

    • Iterate through the input string in reverse order and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q2. Given a sorted array of integers, write a function to perform a binary search to find the index of a target value. If the target value is not found, return -1.
  • Ans. 

    Binary search function to find target value in sorted array

    • Define function that takes sorted array and target value as input

    • Initialize variables for start, end, and middle indices

    • Use while loop to iterate until start is less than or equal to end

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. About the company
  • Q2. What are three significant achievements in your life?
  • Ans. 

    Graduating with honors, winning a hackathon, volunteering in a developing country

    • Graduated with honors from university with a degree in Computer Science

    • Won first place in a hackathon competition by developing a unique and innovative software solution

    • Volunteered in a developing country to help build schools and provide education to underprivileged children

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project related question , Interface , Abstraction
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussioon
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Angular routing
  • Q2. What are pipes in angular
  • Ans. 

    Pipes in Angular are used for transforming data in templates.

    • Pipes are used to format data before displaying it in the view

    • They can be used to filter, sort, or transform data in various ways

    • Examples include date pipe, currency pipe, and uppercase/lowercase pipe

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Which version of java you use?
  • Ans. 

    I use Java version 8 for Angular development.

    • I use Java 8 for its compatibility with Angular frameworks and libraries.

    • Java 8 introduced features like lambda expressions and streams which are useful in Angular development.

    • Example: I use Java 8 to write backend services for my Angular applications.

  • Answered by AI
  • Q2. What are the new features in java 8?
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces provide a way to define interfaces with a single abstract method.

    • Streams allow you to process collections of objects in a functional style.

    • Default methods allow you to add new methods to interfaces wit

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Mostly js questions, not so many of angular or react.
  • Q2. Like fizbuzz or things like that.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply here, the culture here is horrible.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Ui development and component related
  • Q2. Performance of technology and challenges
Round 2 - HR 

(2 Questions)

  • Q1. Personal introduction and location details
  • Q2. Negatition of salries excepectations

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very good organization. Freindly nature in team operation is good from leads hikes also ok
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Basic html css questions
Round 2 - Aptitude Test 

Logical reasoning, quantitative analysis and computer test

Round 3 - Technical 

(1 Question)

  • Q1. Basic html, css, javascript questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. JavaScript Related Questions
  • Q2. ReactJs Related Questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Reactjs Use Effects and UseRef
  • Q2. JavaScript Closures,Map,CallBack

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

CinchiT Solutions Interview FAQs

How many rounds are there in CinchiT Solutions VBA Developer interview?
CinchiT Solutions interview process usually has 2 rounds. The most common rounds in the CinchiT Solutions interview process are Resume Shortlist and Technical.
What are the top questions asked in CinchiT Solutions VBA Developer interview?

Some of the top questions asked at the CinchiT Solutions VBA Developer interview -

  1. How the different types of Loops w...read more
  2. Different types of Excel formulas, Conditi...read more
  3. Writing Program to check the awareness of the programming struct...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 CinchiT Solutions 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

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
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
CinchiT Solutions VBA Developer Salary
based on 10 salaries
₹1.7 L/yr - ₹3.8 L/yr
51% less than the average VBA Developer Salary in India
View more details

CinchiT Solutions VBA Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

3.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Software Developer
16 salaries
unlock blur

₹1.6 L/yr - ₹4 L/yr

VBA Developer
10 salaries
unlock blur

₹1.7 L/yr - ₹3.8 L/yr

Senior Software Developer
5 salaries
unlock blur

₹2.2 L/yr - ₹5.1 L/yr

Technical Consultant
4 salaries
unlock blur

₹1.2 L/yr - ₹2 L/yr

PHP Developer
4 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Explore more salaries
Compare CinchiT Solutions with

Infosys

3.7
Compare

TCS

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