Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Chetu Team. If you also belong to the team, you can get access from here

Chetu Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Chetu Coldfusion Developer Interview Questions and Answers

Updated 13 Aug 2024

Chetu Coldfusion Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was good. I cleared this

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between cfset and cfparam
  • Ans. 

    cfset is used to set a variable value, while cfparam is used to initialize a variable if it does not already exist.

    • cfset is used to assign a value to a variable, while cfparam is used to initialize a variable if it does not already have a value

    • cfset can be used multiple times to change the value of a variable, while cfparam will only initialize the variable once

    • Example: vs

Answered by AI
  • Q2. Database connection with CFML
  • Ans. 

    Database connection with CFML involves creating a datasource and using CFQUERY tag to interact with the database.

    • Create a datasource in ColdFusion Administrator

    • Use CFQUERY tag to execute SQL queries

    • Use CFQUERYPARAM tag to prevent SQL injection

    • Example: SELECT * FROM myTable

  • Answered by AI
    Round 3 - Technical 

    (2 Questions)

    • Q1. Situation based javascript questions
    • Q2. Logical question to find duplicate array elements
    • Ans. 

      Use a hash set to find duplicate elements in an array of strings.

      • Create a hash set to store unique elements.

      • Iterate through the array and check if each element is already in the hash set.

      • If it is, then it is a duplicate element.

      • Example: ['apple', 'banana', 'apple', 'orange'] should return 'apple' as a duplicate element.

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Very poor management Chetu is having.
    They are making candidate fool. They call candidates to hire them and then they stop the process and tell candidates that we are not hiring currently and so on. The recruitment team is very unprofessional. I cleared 3 rounds of interview and submitted candidate recruitment form, after all this they took my position on hold and told me we are not hiring.

    Chetu schedule interview 3 times, 2 times recruiter Manoj kumar stoped the process and told me position is fullfilled.
    In last few days again recruiter Vivek Singh schedule interview and I cleared all the rounds. He given me a candidate recruitment form to submit, I did.
    Then he not called me again and also didn't answer my calls.

    Whole management is very poor and unprofessional.

    Skills evaluated in this interview

    Interview questions from similar companies

    I appeared for an interview before Mar 2021.

    Round 1 - Video Call 

    (3 Questions)

    Round duration - 60 minutes
    Round difficulty - Easy

    This was a technical round with questions on DBMS.

    • Q1. What is data integrity?
    • Ans. 

      Data integrity refers to the accuracy, consistency, and reliability of data throughout its lifecycle.

      • Data integrity ensures that data is accurate and consistent in storage and transmission.

      • It involves maintaining the quality and reliability of data over time.

      • Methods for ensuring data integrity include checksums, encryption, and error detection codes.

      • Examples of data integrity violations include data corruption, unautho

    • Answered by AI
    • Q2. What is a trigger in the context of a database management system?
    • Ans. 

      A trigger is a special type of stored procedure that automatically executes when certain events occur in a database.

      • Triggers are used to enforce business rules, maintain data integrity, and automate repetitive tasks.

      • They can be triggered by INSERT, UPDATE, or DELETE operations on a table.

      • Examples of triggers include auditing changes to a table, updating related tables when a record is modified, or enforcing referential

    • Answered by AI
    • Q3. What is the difference between clustered and non-clustered indexes in a database management system?
    • Ans. 

      Clustered indexes physically order the data in the table, while non-clustered indexes do not.

      • Clustered indexes determine the physical order of data in the table, while non-clustered indexes do not.

      • A table can have only one clustered index, but multiple non-clustered indexes.

      • Clustered indexes are faster for retrieval of data, especially range queries, compared to non-clustered indexes.

      • Non-clustered indexes are stored se...

    • Answered by AI
    Round 2 - Video Call 

    (3 Questions)

    Round duration - 60 minutes
    Round difficulty - Easy

    Technical interview round with questions on DBMS.

    • Q1. What is the difference between UNION and UNION ALL in SQL?
    • Ans. 

      UNION combines and removes duplicates, UNION ALL combines without removing duplicates.

      • UNION merges the result sets of two or more SELECT statements and removes duplicates.

      • UNION ALL merges the result sets of two or more SELECT statements without removing duplicates.

      • UNION is slower than UNION ALL as it involves removing duplicates.

      • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

      • Example: SELECT column...

    • Answered by AI
    • Q2. What are the functions of a cursor in PL/SQL?
    • Ans. 

      A cursor in PL/SQL is used to retrieve and process multiple rows of data one at a time.

      • Allows iteration over a result set

      • Retrieves data row by row

      • Can be used to update or delete rows in a table

      • Must be declared, opened, fetched, and closed

    • Answered by AI
    • Q3. Write a SQL query to fetch the nth highest salary from a table.
    • Ans. 

      SQL query to fetch the nth highest salary from a table

      • Use the ORDER BY clause to sort salaries in descending order

      • Use the LIMIT clause to fetch the nth highest salary

    • Answered by AI
    Round 3 - HR 

    Round duration - 30 minutes
    Round difficulty - Easy

    This was a managerial round with typical behavioral problems.

    Interview Preparation Tips

    Eligibility criteriaAbove 7 CGPACerner Corporation interview preparation:Topics to prepare for the interview - SQL, Database Management Systems, OOPS, DSA, System DesignTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

    Tip 1 : Since this was a SQL post, I would suggest you to get the basics intact and try practicing few queries.
    Tip 2 : Must do Previously asked Interview as well as Online Test Questions.
    Tip 3 : Go through all the previous interview experiences from Codestudio and Leetcode.

    Application resume tips for other job seekers

    Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
    Tip 2 : Every skill must be mentioned.
    Tip 3 : Focus on skills, projects and experiences more.

    Final outcome of the interviewSelected

    Skills evaluated in this interview

    I appeared for an interview before Sep 2020.

    Round 1 - Coding Test 

    (3 Questions)

    Round duration - 75 minutes
    Round difficulty - Hard

    Coding Test with 3 problems. 1 Easy , 1 Medium , 1 Very Hard

    • Q1. 

      Job Scheduling Problem

      You are provided with a list of jobs, where each job has a specific deadline and profit. The goal is to schedule these jobs such that the total profit is maximized. Each job require...

    • Ans. 

      The goal is to schedule jobs to maximize profit while meeting deadlines. Each job takes one unit of time and only one job can be scheduled at a time.

      • Sort the jobs in decreasing order of profit

      • Iterate through the sorted jobs and schedule them based on their deadlines

      • Keep track of the total profit achieved

      • Ensure each job is completed before its deadline

    • Answered by AI
    • Q2. 

      Spiral Order Traversal of a Binary Tree

      Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

      Input:

      The input consists of a single line containing elem...
    • Ans. 

      Implement a function to return the spiral order traversal of a binary tree.

      • Traverse the binary tree level by level, alternating between left to right and right to left.

      • Use a queue to keep track of nodes at each level.

      • Append nodes to the result list in the order they are visited.

    • Answered by AI
    • Q3. 

      Structurally Unique Binary Trees of Dragon Balls

      Goku has ‘N’ Dragon Balls, where each Dragon Ball is unique. The ith Dragon Ball has ‘i’ stars on it, meaning the first Dragon Ball has 1 star, the second ...

    • Ans. 

      Count the number of structurally unique binary trees that can be constructed with given Dragon Balls.

      • Use dynamic programming to solve this problem efficiently.

      • The number of structurally unique binary trees can be calculated using Catalan numbers.

      • For each test case, calculate the number of structurally unique binary trees modulo 10^9 + 7.

      • Return the count of unique binary trees for each test case.

    • Answered by AI
    Round 2 - Video Call 

    Round duration - 60 minutes
    Round difficulty - Hard

    In depth questions on Subjects like OOP , DBMS , OS , Javascript.

    Round 3 - Video Call 

    (1 Question)

    Round duration - 40 minutes
    Round difficulty - Hard

    Questions on my resume, projects, internship done. Interviewer was a bit harsh on me.

    • Q1. What are the differences between low-level and high-level programming languages, and can you explain some kernel-related questions?
    • Ans. 

      Low-level languages interact directly with hardware, while high-level languages are more abstract and easier to read/write.

      • Low-level languages are closer to machine code and hardware, while high-level languages are closer to human language.

      • Low-level languages require more manual memory management and are less portable, while high-level languages have automatic memory management and are more portable.

      • Examples of low-lev...

    • Answered by AI

    Interview Preparation Tips

    Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteria8 CGPAAltassian interview preparation:Topics to prepare for the interview - Operating System, DBMS, Data Structures and Algorithms , OOP , Computer NetworksTime required to prepare for the interview - 10 monthsInterview preparation tips for other job seekers

    Tip 1 : Never leave any topic from any chapter / Subject
    Tip 2 : Learn to explain your thoughts well
    Tip 3 : Learn from previous experiences / interviews / problems asked.
    Tip 4 : Atleast 4 projects in Resume

    Application resume tips for other job seekers

    Tip 1 : Atleast 4 projects on Resume
    Tip 2 : Do not write false things. You always get caught. Be genuine.

    Final outcome of the interviewRejected

    Skills evaluated in this interview

    I appeared for an interview before Sep 2020.

    Round 1 - Coding Test 

    (3 Questions)

    Round duration - 90 minutes
    Round difficulty - Medium

    Timing: 90 mins
    Environment: Online coding round
    No of questions: 3 Questions(225 marks) were asked.

    • Q1. 

      Quick Sort Problem Statement

      You are provided with an array of integers. The task is to sort the array in ascending order using the quick sort algorithm.

      Quick sort is a divide-and-conquer algorithm. It ...

    • Ans. 

      Yes, the quick sort algorithm can be enhanced to achieve NlogN complexity in the worst case by using randomized quick sort or median of three pivot selection.

      • Use randomized quick sort to randomly select the pivot element, reducing the chances of worst-case scenarios.

      • Implement median of three pivot selection to choose a pivot that is closer to the median value, improving partitioning efficiency.

      • Consider using dual pivot...

    • Answered by AI
    • Q2. 

      Find K'th Character of Decrypted String

      You are given an encrypted string where repeated substrings are represented by the substring followed by its count. Your task is to find the K'th character of the d...

    • Ans. 

      Given an encrypted string with repeated substrings represented by counts, find the K'th character of the decrypted string.

      • Parse the encrypted string to extract substrings and their counts

      • Iterate through the substrings and counts to build the decrypted string

      • Track the position in the decrypted string to find the K'th character

    • Answered by AI
    • Q3. 

      Weighted Job Scheduling Problem Statement

      You have 'N' jobs, each with a start time, end time, and profit. Your task is to identify the maximum profit that can be earned by scheduling these jobs such that...

    • Ans. 

      The Weighted Job Scheduling problem involves maximizing profit by scheduling non-overlapping jobs with given start times, end times, and profits.

      • Sort the jobs by end time in ascending order.

      • Initialize an array 'dp' to store maximum profit at each job index.

      • For each job, find the latest non-overlapping job and update 'dp' with the maximum profit.

      • Return the maximum profit from 'dp'.

    • Answered by AI
    Round 2 - Video Call 

    (1 Question)

    Round duration - 45 minutes
    Round difficulty - Medium

    Timing: evening
    Environment: Virtual(remote)
    Activity:
    It was a resume screening + DSA round . There were 2 interviewers in this round. Initially , a brief introduction was given by them & later , they started with projects listed in my resume . They first asked me to explain about the projects , asked some questions related to its implementation & its actual use case in real world (where it can be used) .Later , they switched to DSA part , a total of 2 questions of easy medium difficulty level were asked . I only remember 1 question that was similar to Minimum platform problem.

    After this , They asked me for favourite subjects. I said Operation Systems . Then , they asked for some concepts in OS , including CPU scheduling & its algos like Round robin , SJF etc and later asked which type of scheduling algorithm is used to design actual systems .

    • Q1. 

      Minimum Number of Platforms Problem

      Your task is to determine the minimum number of platforms required at a railway station so that no train has to wait.

      Explanation:

      Given two arrays:

      • AT - represent...
    • Ans. 

      Determine the minimum number of platforms needed at a railway station so that no train has to wait.

      • Sort the arrival and departure times arrays in ascending order.

      • Use two pointers to iterate through the arrays and keep track of the number of platforms needed.

      • Increment the number of platforms needed when a train arrives and decrement it when a train departs.

      • Return the maximum number of platforms needed at any point.

      • Examp...

    • Answered by AI
    Round 3 - Video Call 

    (1 Question)

    Round duration - 50 minutes
    Round difficulty - Medium

    It was System design round.Though , it also started with a brief introduction & later , asked about projects . As my project was related to test classification . In that context , they asked me to design a low level Suggestion system(In any preferred language) .

    • Q1. 

      Spell Checker Problem Statement

      You are provided with a list of strings, DICTIONARY[], representing the correct spellings of words, and a query string QUERY that may contain misspelled words. Your task is...

    • Ans. 

      Given a list of correct spellings and a query string, return a list of suggested correct spellings if the query is misspelled.

      • Iterate through the dictionary to check for matching prefixes with the query string.

      • If a match is found, add the corresponding word to the list of suggestions.

      • Return the list of suggestions if the query is misspelled, otherwise return an empty list.

    • Answered by AI

    Interview Preparation Tips

    Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo CriteriaAtlassian interview preparation:Topics to prepare for the interview - Data Structures & Algorithms, Competitive programming, Operating systems, Object oriented programming, Database management systems, Computer NetworksTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

    Tip 1 : Practice a lot of problems from leetcode/coding ninjas or some other platform.
    Tip 2 : Participate in daily contests on codeforces, leetcode, kickstart, etc.
    Tip 3 : Include new topics while learning/solving Data structures problems like tries, BIT, etc.

    Application resume tips for other job seekers

    Tip 1 : Mention your competitve programming skills and profiles in resume if possible.
    Tip 2 : While mentioning things in resume: mention by numbers.
    Tip 3 : Make a neet resume in some standard format(maybe by using LaTeX)
    Tip 4 : Have atleast 2 projects(on which you are confident) in resume
    Tip 5 : Don't put false positive on resume.

    Final outcome of the interviewSelected

    Skills evaluated in this interview

    I applied via Company Website and was interviewed in Jun 2021. There was 1 interview round.

    Interview Questionnaire 

    2 Questions

    • Q1. C c++ javascript HTML Java
    • Q2. What sir or mum required Is

    Interview Preparation Tips

    Interview preparation tips for other job seekers - My name is Saurabh Saxena
    I live in nadaiya rampur Post govindpur tilhar shahjahanpur Uttar Pradesh
    I have a complete graduation BCA

    I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Sql based quedtion

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare continuously don't lose hope

    Software Engineer Interview Questions & Answers

    Amadeus user image Varun Thopucherla

    posted on 11 Mar 2015

    Interview Questionnaire 

    10 Questions

    • Q1. Tell about yourself?
    • Ans. 

      I am a software engineer with experience in developing web applications and mobile apps.

      • Proficient in programming languages such as Java, Python, and JavaScript

      • Experience in developing RESTful APIs and integrating third-party APIs

      • Familiarity with front-end frameworks such as React and Angular

      • Strong understanding of database management systems such as MySQL and MongoDB

      • Passionate about learning new technologies and keepi

    • Answered by AI
    • Q2. Why Software industry? why not core?
    • Ans. 

      Software industry offers endless opportunities for innovation and growth.

      • Software industry is constantly evolving and offers opportunities to work on cutting-edge technologies.

      • It provides a platform to solve complex problems and create innovative solutions.

      • The demand for software engineers is high and the industry offers competitive salaries.

      • Core industries may have limited scope for growth and innovation compared to s...

    • Answered by AI
    • Q3. Write a program to print the given string in reverse
    • Ans. 

      Program to print a given string in reverse

      • Create a character array of the given string

      • Loop through the array from end to start and print each character

    • Answered by AI
    • Q4. Some questions about computer networks and Digital electronics
    • Q5. What is Mux? what are its real life applications?
    • Ans. 

      Mux is a device that selects one of several input signals and forwards the selected input into a single output line.

      • Mux stands for Multiplexer.

      • It is used in digital circuits to select one of several input signals and forward the selected input into a single output line.

      • It is used in communication systems to combine multiple signals into a single channel for transmission.

      • It is used in video and audio systems to switch b...

    • Answered by AI
    • Q6. What is DeMux? what are its real life applications?
    • Ans. 

      DeMux is short for Demultiplexer. It is a digital circuit that takes one input and directs it to multiple outputs.

      • DeMux is used in digital communication systems to separate signals that have been combined for transmission.

      • It is also used in computer memory systems to select a specific memory location.

      • DeMux is used in video and audio systems to separate different channels of information.

      • It is used in automation systems ...

    • Answered by AI
    • Q7. Difference between decoder and Demux
    • Ans. 

      Decoder converts encoded data into a readable format while Demux separates a single input into multiple outputs.

      • Decoder is used to decode encoded data such as binary data into a readable format.

      • Demux is used to separate a single input into multiple outputs based on the control signals.

      • Decoder is a combinational circuit while Demux is a sequential circuit.

      • Decoder is used in applications such as remote controls, computer...

    • Answered by AI
    • Q8. Why amadeus labs?
    • Ans. 

      Amadeus Labs is a leading technology company in the travel industry.

      • Amadeus Labs provides opportunities to work on cutting-edge technologies.

      • The company has a strong focus on innovation and research.

      • Amadeus Labs has a global presence and offers a diverse and inclusive work environment.

      • Working at Amadeus Labs provides the opportunity to make a real impact on the travel industry.

      • The company values work-life balance and o

    • Answered by AI
    • Q9. Are you comfortable in working for Testing?
    • Ans. 

      Yes, I am comfortable working for Testing.

      • I have experience in testing and understand its importance in software development.

      • I am willing to learn new testing techniques and tools.

      • I am comfortable working with testing teams and collaborating with them to ensure quality software.

      • I understand the importance of testing in ensuring customer satisfaction and reducing costs.

      • Examples: I have experience in manual and automated...

    • Answered by AI
    • Q10. Why do you consider yourself suitable for developer role?
    • Ans. 

      I have the necessary skills and experience to excel in the developer role.

      • I have a degree in computer science and have completed multiple coding projects.

      • I am proficient in programming languages such as Java, Python, and C++.

      • I have experience working with databases and web development frameworks.

      • I am a quick learner and enjoy solving complex problems.

      • I am a team player and have collaborated with other developers on var

    • Answered by AI

    Interview Preparation Tips

    Round: Test
    Experience: The test was conducted online. All the questions were of medium standard and easy to crack if we have patience for thinking.

    English comprehension level is slightly below the standard of CAT. Those who have the habit of reading English news paper can easily crack the test.

    Data analysis questions were also of medium standard. Those who have knowledge about graphs, bar & pie charts can easily crack the exam.
    Tips: Practice Aptitude questions from R S Agarwaal book and CAT material.

    Round: Technical Interview
    Experience: Over all interview experience is cool. Interviewers never grilled on anything. In many cases they have helped me to arrive at answers.
    Tips: Read C++ and Oops concepts from E Balaguruswamy text book.
    For Data structures and algorithms read 'Data structures' by Yeshwant kanethkar.
    Minimum knowledge about all the courses of your department will be an added advantage. This will help you to depict you are sincere in your studies and don't have any personal constraints in learning a new thing.

    General Tips: Just be confident and believe in yourself. You will get through.
    Skills: Programming skill in C++
    College Name: NIT Warangal
    Motivation: No special motivation. It is a rapidly growing company offering good package.

    Skills evaluated in this interview

    I appeared for an interview in Aug 2016.

    Interview Preparation Tips

    Round: Test
    Experience: The questions were tricky. We were given a paragraph and after reading it, a statement was given to us and we were asked to say if it is true, false or cannot say. The structure of the statement put us into a a tough place. So practice of such kind of questions is necessary.

    For data interpretation questions a good hand on basic statistical mathematics is needed. One has to be quick because of the time crunch. The questions were approachable

    Round: Technical Interview
    Experience: In this round my resume was scanned and I was required to speak about myself, my projects and explain certain areas of my resume. The interviewer picked up one of my basic project, surprisingly, and asked me to elaborate on it. He asked me how I can improve the project. And I had to write a code to make that change. Basically, one should have a good idea about the projects they've done/ mentioned in their resume. And know it in detail.

    Few questions on data structures. Prepare well for coding type questions and data structures.

    Round: Puzzle Interview
    Experience: The interviewer asked me two puzzles. They were moderate level. And also luckily he was helpful whenever I got stuck.

    Round: HR Interview
    Experience: HR round was good. Basic questions like " tell me more about yourself", brief information about my past history, college life, extra curricular activities. In the end she asked me, "should we hire you?" And I lightly answered " why not!" So it was a good interview overall.

    Skills: Coding Skills, Team Working Ability, Project management
    College Name: Visvesvaraya National Institute Of Technology

    Interview Questionnaire 

    2 Questions

    • Q1. Algorithm and Trick questions on Java
    • Q2. Your future interest, interaction capabilities

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: Mention only those projects/works which you feel fully confident on, let any question be thrown your way.
    Believe me, a simple project explained in a good way is better than a complex project that scares you going into the details.
    Tips: A little bit of extra activities (sports/music) helps them picture you as not a total nerd, which might help in front of some interviewers.

    Round: Interview
    Experience: They will mostly try to trick you here, even if you are right, they will make you doubt yourself. It's just about believing oneself and answering in one go.
    Tips: Stick to your answers if you feel it's right, changing it again and again won't do you much good.

    Round: Interview
    Experience: This is where you have to be most careful, what they seek is just your interest in the company or infact passion for their work and not leaving them mid-way for higher studies or startup plans.
    Tips: Diverting talks to some extra-currics might help a lot here specially if they have interest in that too, like the one, I was giving interview to, was wearing a Barcelona cap and I had mentioned that I played football at Inter-Hostel level. So we talked about the recent Premier league for like 10 minutes and the mood was really lightened, thanks to that.

    General Tips: It is never too late to be what you might have been.
    Skills: Algorithms, Java, Interaction Skills, coding, C, C++
    College Name: IIT DELHI
    Motivation: The technology (Social-Media Management) they are working on is really interesting to know more about and can be a future pioneer in the coming days.
    Funny Moments: One of the interviewer I became so friendly with, mid-way through the interview that we added each other right there on facebook.

    I applied via Recruitment Consultant and was interviewed in May 2019. There were 4 interview rounds.

    Interview Questionnaire 

    3 Questions

    • Q1. What is your day to day work?
    • Q2. What new you have to offer the organization?
    • Q3. The most recent issues that you faced in the organization?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be true to yourself and the interviewer, he/she doesn't want you to be full of all technical skills. He/she wants you to be atleast good at the things mentioned in your resume. Showcase that you're ready to switch to any language even if it is uncomfortable for you

    Chetu Interview FAQs

    How many rounds are there in Chetu Coldfusion Developer interview?
    Chetu interview process usually has 3 rounds. The most common rounds in the Chetu interview process are Technical and Aptitude Test.
    How to prepare for Chetu Coldfusion Developer 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 Chetu. The most common topics and skills that interviewers at Chetu expect are Coldfusion, Software Development, Design Patterns, JQuery and Javascript.
    What are the top questions asked in Chetu Coldfusion Developer interview?

    Some of the top questions asked at the Chetu Coldfusion Developer interview -

    1. Logical question to find duplicate array eleme...read more
    2. Difference between cfset and cfpa...read more
    3. Database connection with C...read more

    Tell us how to improve this page.

    Chetu Coldfusion Developer Interview Process

    based on 1 interview

    Interview experience

    1
      
    Bad
    View more

    Interview Questions from Similar Companies

    AVASOFT Interview Questions
    2.9
     • 162 Interviews
    Oracle Cerner Interview Questions
    3.7
     • 157 Interviews
    ServiceNow Interview Questions
    4.1
     • 121 Interviews
    Thomson Reuters Interview Questions
    4.1
     • 114 Interviews
    Amadeus Interview Questions
    3.9
     • 107 Interviews
    UKG Interview Questions
    3.1
     • 103 Interviews
    EbixCash Limited Interview Questions
    4.0
     • 102 Interviews
    SPRINKLR Interview Questions
    3.0
     • 101 Interviews
    Atlassian Interview Questions
    3.5
     • 89 Interviews
    View all
    Chetu Coldfusion Developer Salary
    based on 4 salaries
    ₹5.4 L/yr - ₹7.2 L/yr
    60% more than the average Coldfusion Developer Salary in India
    View more details
    Software Engineer
    1.2k salaries
    unlock blur

    ₹2.4 L/yr - ₹11 L/yr

    Software Developer
    1k salaries
    unlock blur

    ₹2 L/yr - ₹9 L/yr

    Senior Software Engineer
    644 salaries
    unlock blur

    ₹4.4 L/yr - ₹10.5 L/yr

    Team Lead
    282 salaries
    unlock blur

    ₹4.2 L/yr - ₹13.5 L/yr

    Senior Software Developer
    220 salaries
    unlock blur

    ₹4.6 L/yr - ₹11 L/yr

    Explore more salaries
    Compare Chetu with

    Thomson Reuters

    4.1
    Compare

    Oracle Cerner

    3.7
    Compare

    R Systems International

    3.3
    Compare

    EbixCash Limited

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