Upload Button Icon Add office photos

Filter interviews by

Actiknow Interview Questions and Answers

Updated 2 Jul 2024

Actiknow Interview Experiences

3 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Jul 2024

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

I applied via Referral and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical Reasoning, English, Math

Round 2 - Technical 

(2 Questions)

  • Q1. SQL case studies
  • Q2. Excel related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, prepare well and it will be decent, not very high level.

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 20 Jul 2021

Interview Questionnaire 

3 Questions

  • Q1. How to make dashboards?
  • Ans. 

    Dashboards can be made using various tools like Tableau, Power BI, Excel, etc.

    • Identify the purpose of the dashboard

    • Choose the appropriate tool for creating the dashboard

    • Select the relevant data sources

    • Design the layout and visualizations

    • Add filters and interactivity

    • Test and refine the dashboard

  • Answered by AI
  • Q2. What is tableau?
  • Ans. 

    Tableau is a data visualization tool used to create interactive and visually appealing dashboards and reports.

    • Tableau allows users to connect to various data sources and create visualizations using drag-and-drop functionality.

    • It offers a wide range of chart types, maps, and tables to represent data in a meaningful way.

    • Tableau also provides features like filtering, sorting, and grouping to analyze data in detail.

    • It can ...

  • Answered by AI
  • Q3. What is python
  • Ans. 

    Python is a high-level, interpreted programming language known for its simplicity and ease of use.

    • Python is used for web development, data analysis, artificial intelligence, and more.

    • It has a large standard library and supports multiple programming paradigms.

    • Python code is easy to read and write, making it a popular choice for beginners.

    • Some popular Python frameworks include Django, Flask, and PyTorch.

  • Answered by AI

Skills evaluated in this interview

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

Actiknow Interview Questions and Answers for Freshers
illustration image

Actiknow Business Consulting Interview Questions & Answers

user image Anonymous

posted on 2 Aug 2021

I applied via Walk-in and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. HR general questions like tell me about yourself, why do you wanna join, things about your university and other character-based questions
  • Q2. About your university projects
  • Q3. Some basics questions related to analytics, a basic understanding
  • Q4. Excel-related questions like Lookup, pivots, index

Interview Preparation Tips

Interview preparation tips for other job seekers - Joined as a fresher, gone through 3-4 rounds: Aptitude & English Written-test, HR Round, Director/Manager/Team-lead interview round
locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

Interview questions from similar companies

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

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(12 Questions)

  • Q1. Rate yourself in js, node js, react, MongoDB (separately)
  • Q2. Typeof null, typeof undefined, typeof {}, typeof NaN
  • Q3. What changes came in es6
  • Ans. 

    ES6 introduced several new features and improvements to JavaScript, making it more powerful and efficient.

    • Arrow functions for more concise syntax

    • Let and const for block-scoped variables

    • Classes for easier object-oriented programming

    • Template literals for easier string interpolation

    • Default parameters and rest parameters for function arguments

    • Destructuring assignment for easier data extraction

    • Promises for asynchronous prog

  • Answered by AI
  • Q4. This keyword, closures, hoisting
  • Q5. Are let and cont variables hoisted?
  • Ans. 

    Yes, let and const variables are hoisted but not initialized.

    • let and const variables are hoisted to the top of their block scope, but they are not initialized until the actual line of code is executed.

    • This means that you cannot access a let or const variable before it is declared in the code.

    • For example, trying to access a let variable before it is declared will result in a ReferenceError.

  • Answered by AI
  • Q6. What is global context
  • Ans. 

    Global context refers to the overall environment or setting in which something exists or operates.

    • Global context encompasses all variables, functions, and objects that are accessible throughout an entire program.

    • It can be thought of as the 'big picture' view of a program's execution.

    • In web development, global context includes the window object in JavaScript.

  • Answered by AI
  • Q7. What is temporal deadzone
  • Ans. 

    Temporal dead zone is a period during the variable creation process where accessing the variable results in a ReferenceError.

    • Occurs when trying to access a variable before it has been declared with let or const

    • Happens due to the variable being in the temporal dead zone until it is declared

    • Example: accessing a variable before its declaration will result in a ReferenceError

  • Answered by AI
  • Q8. What is modules? types of modules in nodejs
  • Ans. 

    Modules in Node.js are reusable blocks of code that encapsulate related functionality.

    • Modules in Node.js can be built-in modules like fs (file system) or third-party modules like express.

    • Modules help in organizing code into separate files for better maintainability and reusability.

    • Modules can be imported using the require() function in Node.js.

  • Answered by AI
  • Q9. Index in mongodb, why we need index, is index good or bad?
  • Ans. 

    Indexes in MongoDB improve query performance by allowing the database to quickly locate and retrieve specific documents.

    • Indexes help to speed up query performance by allowing the database to quickly locate specific documents based on the indexed fields.

    • Without indexes, MongoDB would have to perform a collection scan, which can be slow and resource-intensive.

    • Indexes can be created on single fields or compound fields to ...

  • Answered by AI
  • Q10. What are hooks , use of useRef
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components. useRef is a hook that allows you to create a mutable object that persists for the lifetime of the component.

    • Hooks are used to add state and lifecycle methods to functional components in React

    • useRef is used to create a mutable reference that persists between renders

    • useRef can be used to access DOM elements directl

  • Answered by AI
  • Q11. Fs module, http module, worker thread?
  • Q12. Why we use mongoose not mongodb driver?
  • Ans. 

    Mongoose is an Object Data Modeling (ODM) library for MongoDB that provides a higher level of abstraction and simplifies interactions with the database.

    • Mongoose provides schema validation which helps maintain data integrity.

    • Mongoose simplifies querying and data manipulation with built-in functions.

    • Mongoose supports middleware functions for pre and post processing of data operations.

  • Answered by AI

Skills evaluated in this interview

locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Why are you interested in the role
  • Ans. 

    I am passionate about driving organizational effectiveness and employee engagement through strategic HR initiatives.

    • I have a strong background in HR strategy and business partnering

    • I enjoy collaborating with cross-functional teams to drive positive change

    • I am excited about the opportunity to make a meaningful impact on the organization's culture and performance

  • Answered by AI
  • Q3. Talking about Intersted in which things that do in free time

Interview Preparation Tips

Interview preparation tips for other job seekers - Recently, I had an interview experience that felt unprofessional. I was assured I was one of two shortlisted candidates for a role and encouraged to attend. After waiting for over 30 minutes, the HR representative finally conducted the interview but was dressed in casual nightwear, which left a poor impression. Such behavior from an HR professional does not reflect well on the company. I suggest researching thoroughly before investing your time and effort with organizations that may not prioritize professionalism in their recruitment process.
locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Assignment 

They gave me an assignment to complete

Round 2 - One-on-one 

(1 Question)

  • Q1. They just asked me general questions and few more questions about my experience as a project manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident, you will crack it
locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

Apprentice Interview Questions & Answers

HyScaler user image Radharani Rath

posted on 25 Nov 2024

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

4 easy level questions will be asked basically from arrays and strings.

Round 2 - Assignment 

Assignment will be given after clearing coding round. In my case ELearning Platform project was given and 7 days time was given to complete.

Round 3 - One-on-one 

(4 Questions)

  • Q1. DBMS questions like ACID properties, database transaction. Etc
  • Q2. Project related questions
  • Q3. Basic and conceptual questions of frameworks you know
  • Q4. Basic coding questions like armstrong number, palendromic sequence, recursion

Interview Preparation Tips

Interview preparation tips for other job seekers - Give focus on conceptual and theory questions of your known framework
locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basically It is a list of 25 questions having mix of Resoning,Aptitude &English. Each Queztion carries 2 marks and also there was a plus point that it doesn't have any negative marks

Round 2 - Technical 

(1 Question)

  • Q1. Basically it is about the Technical Subjects that U mention eariler in your coresponding CV's. Whatever Subject you meantioned their gonna answer about it for tge questions regarding to that subject
Round 3 - HR 

(14 Questions)

  • Q1. Brief Description about Youself
  • Q2. What is your goal in Life
  • Q3. What do you know about tgis job Profile
  • Q4. Why should we hire you instead of all achoknowledgable freshers sitting behind for this job role ?
  • Q5. What are ur hobbies and strengths and weeknesses
  • Q6. Why you want to do this job role
  • Q7. Why you want to join us instead of other good companies.
  • Q8. How you balance yourself in a fatal situation
  • Q9. If you alredy working under a company but want to switch it then the questions will remain same but just add some 2 to 3 extra questions like i am meantioning it down👇
  • Q10. What was ur job profile
  • Q11. How do u know about our company
  • Q12. Did u Resign by ur own or The comapny Resign you ??
  • Q13. What was ur salary their
  • Q14. Incase u alredy have an experience in a better company then interviewer ask this -* why joing us instead u have an magnificent well role on your comapny*

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Ofcourse if you are not confident you will get rejected. Because Interviewer asks the 4x questions who has lack of Confidence to broke them to fear .You sbould get rid of that.

2. And Always balance ur words like what u going to say ,read the mind of the interviewer. (ofcourse it take practices)

3.As like our older says "Stand infront of the mirror and start saying about you, define yourself to you, what r u, why r u, how u gonna work this, everything" This'll burn the fear inside you.

4. Don't get Upset if u can not make to a comapny and instead of doing excuses about the company or HR's question, U should work hard on yourself gathering previous mistakes and make to the better comapny

5.And always follow the laws and well prepare your responsibilities.
Thats all Advice i can gave.
locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

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

(2 Questions)

  • Q1. What is the difference between Continuous Integration (CI) and Continuous Deployment (CD) ?
  • Q2. CI is the automated merging the code changes, while CD automatically deploys the changes to production after testing.
locked

Unlock now! Rate your last interview experience

If you are a fresher, click here to continue

Contribute & help others!
anonymous
You can choose to be anonymous

Actiknow Interview FAQs

How many rounds are there in Actiknow interview?
Actiknow interview process usually has 2 rounds. The most common rounds in the Actiknow interview process are Aptitude Test and Technical.
What are the top questions asked in Actiknow interview?

Some of the top questions asked at the Actiknow interview -

  1. How to make dashboar...read more
  2. What is table...read more
  3. What is pyt...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Actiknow interviews
WalkIn
Referral
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 90 Interviews
NexTurn Interview Questions
4.2
 • 25 Interviews
View all

Actiknow Reviews and Ratings

based on 22 reviews

4.2/5

Rating in categories

4.1

Skill development

4.1

Work-Life balance

3.5

Salary & Benefits

4.3

Job Security

4.2

Company culture

3.7

Promotions/Appraisal

4.2

Work Satisfaction

Explore 22 Reviews and Ratings
Software Engineer
18 salaries
unlock blur

₹2.8 L/yr - ₹6.8 L/yr

Data Analyst
17 salaries
unlock blur

₹2.4 L/yr - ₹7.4 L/yr

Senior Business Analyst
17 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Business Analyst
10 salaries
unlock blur

₹3.4 L/yr - ₹6 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Explore more salaries
Compare Actiknow with

Accel Frontline

3.9
Compare

Northcorp Software

4.4
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

4.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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent