Upload Button Icon Add office photos
Engaged Employer

i

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

Blue Flame Labs Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Blue Flame Labs Associate Technical Consultant Interview Questions and Answers

Updated 12 Jun 2024

Blue Flame Labs Associate Technical Consultant Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops, code sample
  • Q2. Html, css, js questions
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quants, logical, verbal.....................

Round 2 - Coding Test 

We have to write a program to demonstrate the functions of a door(constructors) in our desired language in onlinegdb compiler. The meeting was held on Google Meet and we had to share our screen during the coding.

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn OOPS concepts thoroughly, be confident and calm.

Associate Technical Consultant Interview Questions Asked at Other Companies

asked in Streebo
Q1. Which one is better to store data, Excel or Relation Database Sys ... read more
asked in Mastek
Q2. which is Faster subquery or Join? Or subquery or function? Why vi ... read more
asked in TecTree
Q3. Program to Separate Vowels and Consonants from a String
Q4. How we can give permission to multiple users to delete user , use ... read more
asked in TecTree
Q5. Print a Hollow pyramid Using JAVA language

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They don't have any project only to show the client they have taken.
  • Q2. They are firing the employee very frequently.

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a good company. My suggestion not to join that company.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2022. There were 4 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 - Coding Test 

Programming mandatory (c cpp java ...)

Round 3 - Technical 

(1 Question)

  • Q1. You should be technically sound as per mentioned in cv.
Round 4 - HR 

(1 Question)

  • Q1. Just a salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Before go for interview, you should be prepared as per mention in resume.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Question on C
  • Q2. Linux basics, and domain specific
Round 2 - One-on-one 

(2 Questions)

  • Q1. Linux Internals
  • Q2. Threads and processes
Round 3 - HR 

(1 Question)

  • Q1. Basic details, offer

Interview Preparation Tips

Topics to prepare for Amantya Technologies Technical Lead interview:
  • DSA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jun 2023. There were 4 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 

(1 Question)

  • Q1. Most of questions related project base and Apache Hadoop, Spark fundamental and also indept question in above areas
Round 3 - Group Discussion 

Spark and Hadoop architecture, Linux command , python , pyspark question

Round 4 - HR 

(1 Question)

  • Q1. They were asking related CTC, location etc.

I applied via Recruitment Consultant and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java and advanced Java

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through an organisation, there were 5 rounds of interview.
1. Aptitude test(written):30 MCQ. Quants, Logical reasoning and vocabulary.
2. Java written test: 20 MCQ and 2 codes.
Questions are about Oops, collection,
Exceptionn and Threads. (Medium level).
Programs are based on Strings and Arrays.
3. Technical Interview 1: Mainly they used to
ask based on your Resume. You should
have very good understanding of SQL, core Java and Advance Java concepts. If you know JavaScript it's then a bit advantageous.
You should have good coding skills, they might ask you write another logic of your program written in Java written test.

4. Technical round 2 : It's all about advanced Java concepts like Jdbc, servlets, JSP, Hibernate and Springs.
5. Managerial cum HR round: Technical questions based on your resume. Normal Hr questions.

It's my honest interview experience with JMR. Interview process took one week. I got offer letter.
Good luck...😊

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to implement Sqlite database in React Native?
  • Ans. 

    Sqlite database can be implemented in React Native using 'react-native-sqlite-storage' package.

    • Install 'react-native-sqlite-storage' package using npm.

    • Import SQLite from 'react-native-sqlite-storage'.

    • Create a database using SQLite.openDatabase() method.

    • Execute SQL queries using executeSql() method.

    • Close the database connection using close() method.

  • Answered by AI
  • Q2. What are generator functions?
  • Ans. 

    Generator functions are functions that can be paused and resumed, allowing for lazy evaluation of data.

    • Generator functions use the yield keyword to pause execution and return a value.

    • They can be used to generate an infinite sequence of values.

    • They are memory efficient as they only generate values when needed.

    • Example: function* myGenerator() { yield 1; yield 2; yield 3; }

    • Example: const infiniteGenerator = function*() {

  • Answered by AI
  • Q3. How to implement push notifications in Android and iOS?
  • Ans. 

    Push notifications can be implemented in Android and iOS using Firebase Cloud Messaging (FCM) and Apple Push Notification service (APNs) respectively.

    • For Android, integrate FCM SDK in the app and use FCM console to send notifications.

    • For iOS, create an APNs certificate, configure the app to receive notifications, and use APNs to send notifications.

    • Both platforms require handling of notification payload in the app to di...

  • Answered by AI
  • Q4. How do you use in your last app?
  • Ans. 

    I used React Native for my last app.

    • Developed UI components using React Native

    • Integrated APIs to fetch and display data

    • Implemented Redux for state management

    • Used Firebase for authentication and database

    • Optimized app performance using React Native Debugger

  • Answered by AI
  • Q5. What is the difference between functional components and non functional components?
  • Ans. 

    Functional components are stateless and return UI elements based on input props, while non-functional components have state and can change UI based on user interaction.

    • Functional components are simpler and easier to test than non-functional components.

    • Non-functional components can have state and lifecycle methods, while functional components cannot.

    • Examples of functional components include buttons, labels, and icons, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its Hard and requires deep knowledge of your technical skills.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

It placed in hackerRank.question difficulty level was medium.

Round 3 - Technical 

(1 Question)

  • Q1. The difficulty depends upon who is taking your interview. But mostly asked questions were related to string and hashmap.
Round 4 - HR 

(1 Question)

  • Q1. It was more like a little bit technical and hr round. Mostly talk about personal profile like education,family background, hobbies and etc.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Medium level leetcode

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics of linked list. How to delete without head and address of current node is given?
  • Q2. Simple join queries on 2 to 3 tables?
  • Ans. 

    Join queries are used to combine data from multiple tables based on a related column between them.

    • Use JOIN keyword to combine tables based on a common column

    • Specify the columns to select from each table

    • Use WHERE clause to specify the join condition

  • Answered by AI

Skills evaluated in this interview

Blue Flame Labs Interview FAQs

How many rounds are there in Blue Flame Labs Associate Technical Consultant interview?
Blue Flame Labs interview process usually has 2 rounds. The most common rounds in the Blue Flame Labs interview process are Resume Shortlist, Aptitude Test and Coding Test.
How to prepare for Blue Flame Labs Associate Technical Consultant 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 Blue Flame Labs. The most common topics and skills that interviewers at Blue Flame Labs expect are C++, Consulting, DBMS, HTML and Javascript.
What are the top questions asked in Blue Flame Labs Associate Technical Consultant interview?

Some of the top questions asked at the Blue Flame Labs Associate Technical Consultant interview -

  1. html, css, js questi...read more
  2. oops, code sam...read more

Tell us how to improve this page.

Blue Flame Labs Associate Technical Consultant Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
JMR Infotech Interview Questions
4.3
 • 29 Interviews
PC Solutions Interview Questions
3.7
 • 16 Interviews
View all
Blue Flame Labs Associate Technical Consultant Salary
based on 84 salaries
₹3 L/yr - ₹6.7 L/yr
46% less than the average Associate Technical Consultant Salary in India
View more details

Blue Flame Labs Associate Technical Consultant Reviews and Ratings

based on 11 reviews

1.9/5

Rating in categories

2.8

Skill development

2.0

Work-life balance

1.8

Salary

2.1

Job security

2.1

Company culture

2.1

Promotions

1.9

Work satisfaction

Explore 11 Reviews and Ratings
Associate Technical Consultant
84 salaries
unlock blur

₹3 L/yr - ₹6.7 L/yr

Technical Consultant
83 salaries
unlock blur

₹3 L/yr - ₹11.8 L/yr

Salesforce Developer
37 salaries
unlock blur

₹3 L/yr - ₹8.9 L/yr

Senior Technical Consultant
18 salaries
unlock blur

₹7 L/yr - ₹20 L/yr

Salesforce Technical Consultant
13 salaries
unlock blur

₹4.5 L/yr - ₹11.1 L/yr

Explore more salaries
Compare Blue Flame Labs with

PC Solutions

3.7
Compare

RNF Technologies

3.3
Compare

Hidden Brains InfoTech

3.8
Compare

Affine

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