Upload Button Icon Add office photos

Filter interviews by

Infocepts Technologies Interview Questions, Process, and Tips

Updated 6 Dec 2024

Top Infocepts Technologies Interview Questions and Answers

View all 26 questions

Infocepts Technologies Interview Experiences

Popular Designations

37 interviews found

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

(3 Questions)

  • Q1. What is broadcasting?
  • Ans. 

    Broadcasting is a feature in Apache Spark that allows for efficient data distribution across cluster nodes.

    • Broadcasting is used to efficiently distribute read-only data to all nodes in a Spark cluster.

    • It helps reduce data shuffling and improve performance by avoiding unnecessary data transfers.

    • Common use cases include broadcasting small lookup tables or configuration data.

    • Example: Broadcasting a small reference dataset

  • Answered by AI
  • Q2. What is ETL? Different process
  • Ans. 

    ETL stands for Extract, Transform, Load. It is a process used to extract data from various sources, transform it into a consistent format, and load it into a target database.

    • Extract: Data is extracted from multiple sources such as databases, files, APIs, etc.

    • Transform: Data is cleaned, filtered, aggregated, and converted into a consistent format.

    • Load: Transformed data is loaded into a target database or data warehouse ...

  • Answered by AI
  • Q3. CI/CD Pipeline?

Skills evaluated in this interview

Lead Data Engineer Interview Questions asked at other Companies

Q1. Given a DataFrame df with columns 'A', 'B','C' how would you group the data by the values in column 'A' and calculate the mean of column 'B' for each group, while also summing the values in column 'C' ?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(10 Questions)

  • Q1. DIFFERENCE B/W Groups and sets in tableau
  • Ans. 

    In Tableau, groups are used to combine related dimension members, while sets are used to create custom fields based on a condition.

    • Groups in Tableau are used to combine related dimension members into higher-level categories. For example, grouping different product categories into a single 'Other' category.

    • Sets in Tableau are used to create custom fields based on a condition. For example, creating a set of 'High Sales' ...

  • Answered by AI
  • Q2. OLAP VS OLTP difference
  • Ans. 

    OLAP is used for analyzing historical data while OLTP is used for managing real-time transactional data.

    • OLAP stands for Online Analytical Processing and is used for complex queries and data analysis.

    • OLTP stands for Online Transactional Processing and is used for managing real-time transactional data.

    • OLAP databases are optimized for read-heavy workloads while OLTP databases are optimized for write-heavy workloads.

    • OLAP d...

  • Answered by AI
  • Q3. What are the challenges you have faced in the current project ?
  • Q4. Types of filters and execution order in tableau
  • Ans. 

    Tableau filters include context filters, extract filters, data source filters, and user filters. Execution order is top-down.

    • Context filters are applied first and limit the data set for subsequent filters.

    • Extract filters are applied next, filtering data before it is extracted into Tableau.

    • Data source filters are applied after extract filters, limiting the data at the data source level.

    • User filters are applied last, all...

  • Answered by AI
  • Q5. Difference between tree map and heat map
  • Ans. 

    Tree map displays hierarchical data using nested rectangles, while heat map visualizes data using colors.

    • Tree map organizes data in a hierarchical structure with nested rectangles

    • Heat map uses colors to represent data values on a matrix

    • Tree map is useful for showing proportions within a whole, while heat map is good for visualizing patterns or correlations in data

  • Answered by AI
  • Q6. What is the custom chart you have worked on
  • Ans. 

    I have worked on creating a custom sales performance chart for tracking monthly revenue

    • Utilized Excel to create a custom chart with data from multiple sources

    • Implemented color coding to highlight trends and outliers

    • Added interactive features for easy data analysis

    • Presented the chart to senior management for decision-making purposes

  • Answered by AI
  • Q7. Rank vs rank dense in SQL
  • Ans. 

    Rank function assigns a unique rank to each row in the result set, while dense_rank function assigns a unique rank to each distinct row in the result set.

    • Rank function leaves gaps in the ranking if there are ties, while dense_rank function does not leave gaps.

    • Rank function is used to assign a unique rank to each row based on the specified order, while dense_rank function is used to assign a unique rank to each distinct...

  • Answered by AI
  • Q8. Union and union all major difference
  • Ans. 

    UNION combines the results of two or more SELECT statements, while UNION ALL does the same but includes duplicates.

    • UNION removes duplicates from the result set, while UNION ALL includes duplicates

    • UNION is slower than UNION ALL because it has to perform an additional step to remove duplicates

    • UNION requires the same number of columns in the SELECT statements, while UNION ALL does not have this requirement

  • Answered by AI
  • Q9. How you have optimised the performance of the dashboard
  • Ans. 

    I optimized the performance of the dashboard by streamlining data sources, improving data visualization, and implementing automated updates.

    • Identified and removed unnecessary data sources to reduce load times

    • Utilized data caching techniques to improve dashboard loading speed

    • Implemented data visualization best practices to enhance user experience

    • Set up automated data refresh schedules to ensure real-time updates

    • Optimize...

  • Answered by AI
  • Q10. Types of joins and explain it with one example for each
  • Ans. 

    Types of joins in SQL with examples

    • Inner Join: Returns rows when there is a match in both tables. Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

    • Left Join: Returns all rows from the left table and the matched rows from the right table. Example: SELECT * FROM table1 LEFT JOIN table2 ON table1.id = table2.id

    • Right Join: Returns all rows from the right table and the matched rows from the left table...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on the project scenarios

Skills evaluated in this interview

Top Infocepts Technologies Assistant Manager Interview Questions and Answers

Q1. how you have optimised the performance of the dashboard
View answer (1)

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (87)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the diffrent datatype in python
  • Ans. 

    Python has various data types including int, float, str, list, tuple, dict, set, bool, and more.

    • int - integer numbers (e.g. 5)

    • float - floating point numbers (e.g. 3.14)

    • str - strings (e.g. 'hello')

    • list - ordered collection of items (e.g. [1, 2, 3])

    • tuple - ordered collection of items that cannot be changed (e.g. (1, 2, 3))

    • dict - collection of key-value pairs (e.g. {'name': 'John', 'age': 30})

    • set - unordered collection of...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What are the diifrent ML algoritham & Explain in details
  • Ans. 

    Various ML algorithms include linear regression, decision trees, random forests, support vector machines, and neural networks.

    • Linear Regression: Used for predicting continuous values based on input features.

    • Decision Trees: Tree-like model of decisions used for classification and regression.

    • Random Forests: Ensemble learning method using multiple decision trees for improved accuracy.

    • Support Vector Machines: Classify data...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. This was more to check cultural fit
Round 4 - HR 

(1 Question)

  • Q1. Ths was more to know dates when you joined previous company

Skills evaluated in this interview

Senior Data Scientist Interview Questions asked at other Companies

Q1. What is the difference between logistic and linear regression?
View answer (4)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2024

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

(2 Questions)

  • Q1. Basic question on aws and ETL process
  • Q2. Pyapark transformation

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Infocepts Technologies interview questions for popular designations

 Associate Analyst

 (3)

 Senior Executive

 (3)

 Associate

 (2)

 Data Analyst

 (2)

 Software Developer

 (2)

 Analyst

 (1)

 Application Development - Senior Analyst

 (1)

 Assistant Manager

 (1)

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Walk-in and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. Whats your name?
  • Q2. Whare you coming from?
  • Q3. Whats your quvalifycation?
  • Ans. 

    I have a Bachelor's degree in Computer Science and 5 years of experience in software development.

    • Bachelor's degree in Computer Science

    • 5 years of experience in software development

  • Answered by AI
  • Q4. What are you choose this company?
  • Ans. 

    I chose this company because of its innovative projects, strong team culture, and opportunities for growth.

    • Innovative projects that challenge me to learn and grow

    • Strong team culture that fosters collaboration and support

    • Opportunities for career growth and advancement

    • Positive reputation in the industry

  • Answered by AI

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Get interview-ready with Top Infocepts Technologies Interview Questions

Associate Analyst Interview Questions & Answers

user image Ayush Kaushik

posted on 24 Apr 2024

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

(2 Questions)

  • Q1. Tell me abt yourself?
  • Q2. Analytical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round was aptitude, then 2nd Analytical and last 3rd was HR round.
Give all answers with confidence and focus on your communication skills, prepare well for analytical round. They ask real life situation questions in Analytical round.

Associate Analyst Interview Questions asked at other Companies

Q1. If you are given an array of 6 numbers 123345 give the logic for finding the duplicate numbers in this array Other technical questions where purely based on what we say previously. When I talked about my course and specializations, all the ... read more
View answer (7)

Jobs at Infocepts Technologies

View all
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Snowflake, Snowpipe, SQL

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at SRM university (SRMU) and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Analytical Questions

Round 2 - Technical 

(2 Questions)

  • Q1. Question related to SQL
  • Q2. Question related to pragramming languages
Round 3 - One-on-one 

(2 Questions)

  • Q1. Analytical thinking
  • Q2. Managerial skill
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a highly motivated and detail-oriented Executive Analyst with a strong background in data analysis and strategic planning.

    • Over 5 years of experience in analyzing complex data sets and providing actionable insights

    • Proficient in using various analytical tools and software such as Excel, Tableau, and SQL

    • Skilled in developing and implementing strategic plans to drive business growth

    • Excellent communication and presenta...

  • Answered by AI
  • Q2. Other common HR questions

Executive Analyst Interview Questions asked at other Companies

Q1. 1) What is LBO model? 2) What is DCF valuation? 3) What is the relationship between balance sheet, income statement, and cash flow statement? 4) if you have to choose any 2 financial statements to evaluate the company, which is you choose. ... read more
View answer (1)

I applied via Job Fair and was interviewed in Nov 2022. 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 

(5 Questions)

  • Q1. Jab continued oner part time joab
  • Ans. Nice jaon and best best solution
  • Answered Anonymously
  • Q2. Advise that you mean
  • Q3. Successful ty jab and new people and commerce college chikhli
  • Q4. What are doing well done
  • Q5. Naew jab and the skiils

Interview Preparation Tips

Interview preparation tips for other job seekers - Jab apply is short distance between New version of the day of the best job

Banking Executive Interview Questions asked at other Companies

Q1. What do you know about bank, loans, credit cards ?
View answer (1)

I was interviewed in Nov 2022.

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between where and having?
  • Ans. 

    WHERE is used to filter rows in a SQL query while HAVING is used to filter groups in a SQL query.

    • WHERE is used with SELECT, UPDATE, DELETE statements while HAVING is used with GROUP BY clause.

    • WHERE filters rows before grouping while HAVING filters groups after grouping.

    • WHERE is used to filter individual rows based on a condition while HAVING is used to filter groups based on a condition.

    • Example: SELECT * FROM table WHE...

  • Answered by AI
  • Q2. What is the use of union
  • Ans. 

    Unions are organizations that represent workers in negotiations with employers to improve working conditions, wages, and benefits.

    • Unions help workers negotiate better pay, benefits, and working conditions

    • They provide a collective voice for workers to address grievances and concerns

    • Unions also advocate for workplace safety and training programs

    • They can help workers navigate disputes with management and provide legal rep...

  • Answered by AI
  • Q3. Difference between table and view
  • Ans. 

    Tables store data in a structured format while views are virtual tables created from a query.

    • Tables are physical objects that store data in a structured format with columns and rows.

    • Views are virtual tables created from a query that retrieves data from one or more tables.

    • Tables can be modified directly while views are read-only.

    • Views can be used to simplify complex queries and provide a layer of abstraction for securit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - We can bump up SQL by taking this test
And also shine your knowledge.

Skills evaluated in this interview

Senior Executive Interview Questions asked at other Companies

Q1. If oneday the men power is very less due to some problem and lode is more that day as a senior Exucative, how will u handle your team ?
View answer (55)

Infocepts Technologies Interview FAQs

How many rounds are there in Infocepts Technologies interview?
Infocepts Technologies interview process usually has 2-3 rounds. The most common rounds in the Infocepts Technologies interview process are Technical, HR and Resume Shortlist.
How to prepare for Infocepts Technologies 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 Infocepts Technologies. The most common topics and skills that interviewers at Infocepts Technologies expect are SQL, Microstrategy, AWS, Big Data and Python.
What are the top questions asked in Infocepts Technologies interview?

Some of the top questions asked at the Infocepts Technologies interview -

  1. Which command is used to check the memory stat...read more
  2. What is lvm and why is it requir...read more
  3. Maximum size (in bytes) of the filename in Linux can ...read more
How long is the Infocepts Technologies interview process?

The duration of Infocepts Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Infocepts Technologies Interview Process

based on 24 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Cyient Interview Questions
3.7
 • 283 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
View all

Infocepts Technologies Reviews and Ratings

based on 292 reviews

3.4/5

Rating in categories

3.4

Skill development

3.3

Work-life balance

3.1

Salary

2.8

Job security

3.5

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 292 Reviews and Ratings
Sr. Devops Engineer

India

7-10 Yrs

Not Disclosed

Sr. Developer- Power BI

India

7-10 Yrs

Not Disclosed

Power BI Developer

India

3-5 Yrs

Not Disclosed

Explore more jobs
Senior Analyst
209 salaries
unlock blur

₹5.1 L/yr - ₹19 L/yr

Senior Executive
202 salaries
unlock blur

₹4.6 L/yr - ₹16 L/yr

Assistant Manager
150 salaries
unlock blur

₹8 L/yr - ₹22 L/yr

Executive Analyst
134 salaries
unlock blur

₹3.8 L/yr - ₹9.8 L/yr

Executive
121 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Explore more salaries
Compare Infocepts Technologies with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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