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
-

I applied via Walk-in and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Javascript array questions like palindrom and others with aptitude

Round 2 - Technical 

(4 Questions)

  • Q1. Skill related technical questions
  • Q2. How to share data in components react
  • Ans. 

    Data can be shared between components in React using props, context, or state management libraries like Redux.

    • Use props to pass data from parent to child components

    • Use context to share data across multiple components without passing props manually

    • Use state management libraries like Redux to manage global state and share data between components

  • Answered by AI
  • Q3. Prop drilling explain in react
  • Ans. 

    Prop drilling is the process of passing data through multiple levels of components in React.

    • Prop drilling occurs when a component needs to pass data to a deeply nested child component.

    • It can lead to code that is hard to maintain and understand.

    • One way to avoid prop drilling is by using Context API or Redux for state management.

  • Answered by AI
  • Q4. Redux flow explain
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux stores the entire state of an application in a single immutable object.

    • State changes are made by dispatching actions, which are plain JavaScript objects.

    • Reducers specify how the application's state changes in response to actions.

    • Redux flow: Action -> Reducer -> Store -> View

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Previous project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear the basics of react or angular and redux also.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is the closure in JS?
  • Ans. 

    Closure in JS is a function that retains access to variables from its parent scope even after the parent function has finished executing.

    • Closure allows functions to have access to variables from an outer function even after the outer function has finished executing.

    • It is created whenever a function is defined within another function, and the inner function has access to the outer function's variables.

    • Closures are commo...

  • Answered by AI
  • Q2. Explain about web worker ?
  • Ans. 

    Web workers allow running JavaScript code in the background without blocking the main thread.

    • Web workers are separate JavaScript files that run in the background.

    • They allow for multi-threading in web applications.

    • Web workers can perform tasks like heavy calculations or network requests without affecting the main UI thread.

    • Communication between web workers and the main thread is done through message passing.

  • Answered by AI
  • Q3. How to pass props in React
  • Ans. 

    Props in React are passed from parent components to child components to share data and functionality.

    • Props are passed as attributes in JSX when rendering a component

    • Props can be accessed in the child component using 'this.props'

    • Props are read-only and should not be modified directly

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - As a UI developer profile we should be proficient in HTML and CSS with JS knowledge is mandotory.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. PLSQL basic to advanced.
  • Q2. Explain collections in details?
  • Ans. 

    Collections in PL/SQL are data structures used to store multiple elements of the same data type.

    • Collections can be nested tables, varrays, or associative arrays.

    • Nested tables are like one-dimensional arrays with no upper bounds.

    • Varrays are like arrays with a maximum size that is specified at declaration.

    • Associative arrays are like lookup tables where each element is accessed using a unique key.

    • Collections can be used t...

  • Answered by AI
  • Q3. Bulk collect concept
  • Ans. 

    Bulk collect is a feature in PL/SQL that allows for fetching multiple rows of data at once.

    • Improves performance by reducing context switches between the PL/SQL engine and SQL engine

    • Reduces network traffic by fetching multiple rows in a single round trip

    • Can be used with SELECT INTO or FETCH INTO statements

  • Answered by AI
  • Q4. Decode and case
  • Q5. Tuning of sql and some sql code
Round 2 - Group Discussion 

Bank product related questions and carrer expericnce .

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

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is AOT And JIT How angular different from react Route guard
  • Ans. 

    AOT (Ahead-of-Time) and JIT (Just-in-Time) are compilation techniques used in Angular. Angular and React differ in their architecture and data binding approach. Route guards in Angular are used to control access to routes.

    • AOT compilation in Angular converts TypeScript code into efficient JavaScript code during the build process, resulting in faster rendering and smaller bundle sizes.

    • JIT compilation in Angular compiles ...

  • Answered by AI
  • Q2. How angular application build
  • Ans. 

    Angular applications are built using the Angular CLI, which provides a command-line interface for creating, building, and serving Angular projects.

    • Angular applications are built using the Angular CLI (Command Line Interface)

    • The Angular CLI provides commands for creating new projects, generating components, services, modules, etc.

    • To build an Angular application, you can use the 'ng build' command which compiles the appl

  • Answered by AI
  • Q3. Project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep prepare for basic questions and some of the coding

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Moderate to difficult

Round 2 - Technical 

(1 Question)

  • Q1. DSA questions based on Dynamic programming
Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

HTML CSS javascript jQuery

I applied via Naukri.com and was interviewed in Sep 2021. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain about about you and background and your experiences and expertise areas. Difficulties or challenges that we faced in our last project What is performance tuning in Teradata and how to do one? Whet...
Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations?
Round 3 - One-on-one 

(1 Question)

  • Q1. Explain about your experience and expertise? Tell about yourself?
Round 4 - One-on-one 

(1 Question)

  • Q1. Tell about yourself? Explain your last project and the challenges that you faced and if any appreciation you got from clients?

Interview Preparation Tips

Topics to prepare for HCLTech Senior Developer interview:
  • Teradata SQL
  • Teradata architecture
Interview preparation tips for other job seekers - Prepare well on the technical topics as well as your projects that you have done with your previous employers and its challenges

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

Round 1 - Technical 

(4 Questions)

  • Q1. About all lifecycle,hooks, virtual Dom questions on react js
  • Q2. Explain about Jwt and related token based questions.
  • Q3. Redux work flow kind of questions.
  • Q4. Java class , interface, abstraction kind of questions.
Round 2 - Coding Test 

JavaScript coding questions using map, filter, reduce.

React hooks coding example s.

Round 3 - One-on-one 

(3 Questions)

  • Q1. What were ur leaning in ur last project?
  • Q2. How was ur role and responsibilities. Questions about development process and testing methods.
  • Q3. Are u willing to learn new skills?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Tell answers honestly. Prepare well.

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