Upload Button Icon Add office photos
Engaged Employer

i

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

HashCash Consultants Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

HashCash Consultants Digital Marketing Executive Interview Questions and Answers

Updated 14 Sep 2022

HashCash Consultants Digital Marketing Executive Interview Experiences

1 interview found

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. Mention 5 main key point of SEO
  • Ans. 

    The 5 main key points of SEO are keyword research, on-page optimization, link building, content creation, and analytics.

    • Keyword research helps identify the most relevant and profitable keywords for a website.

    • On-page optimization involves optimizing website content and HTML source code to improve search engine rankings.

    • Link building involves acquiring high-quality backlinks from other websites to improve website authori...

  • Answered by AI
  • Q2. How to post an article on WordPress
  • Ans. 

    To post an article on WordPress, go to the dashboard and click on 'Posts' then 'Add New'. Write the article and click 'Publish'.

    • Go to the WordPress dashboard

    • Click on 'Posts'

    • Click on 'Add New'

    • Write the article

    • Click on 'Publish'

  • Answered by AI
  • Q3. Do you have any experience on video content idea

Interview Preparation Tips

Interview preparation tips for other job seekers - Be your self..........................................................................

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about HashCash Consultants?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: It consists of quant, reasoning, C/C++, Englisg and Unix.
Tips: Go through basics and practice well
Duration: 1:30 hrs minute
Total Questions: 60-70

Round: Technical Interview
Experience: Have thorough knowledge about your project.

Round: HR Interview
Experience: Just a casual talk like about your personal details, hobbies etc.

General Tips: Be confident.
Skills:
College Name: NIT Durgapur

Digital Marketing Executive Interview Questions Asked at Other Companies

Q1. What is the difference between dofollow and nofollow links?
Q2. What is the first approach you consider when a business's marketi ... read more
Q3. Describe your experience working with analytics platforms and dat ... read more
asked in Accely
Q4. What is LCP, and which main factors affect website speed accordin ... read more
Q5. How to grow traffics through different social media platforms. Wh ... read more

I applied via Referral

Interview Preparation Tips

Round: Test
Experience: I appeared for Amdocs through Campus Recruitment Process. Section 1,2,3 was not tough, if you have practiced RD Sharma then don't worry about these sections as it was the easiest part of the written test. After that there were two coding questions in which you can choose any language(C/C++/Java) to write your code. The code were easy, I mean it wasn't like Codechef problems. If you have ever made the programming assignments by yourself then you would definitely be able to crack this section. Even if you didn't make it then you can practice coding questions like finding H.C.F, L.C.M, Removing redundant number from array, finding whether the string is palindrome or not, finding whether the number is Armstrong number or not,etc,. Now comes the technical section that was little bit tough for those who haven't studied about UNIX ever. It was consisting of C, DBMS and Unix. C questions can easily be attempt by completing "Test your C Skills by Yashwant Kanedtkar", In DBMS most of the questions were query based, some PL/SQL questions were also there, in Unix most of the questions were from VI editor commands and some linux commands like sed, uniq, fdisk and very few questions were from shell scripting like, what will be the output of echo*. Overall the test was easy, since it is easy for everyone so you need to do lots of practice because out of more than 200 students only 39 cleared the written test in our campus.
Duration: 2:30 minutes
Total Questions: 82

Skills: Implementation Of Code Using OOPS, Coding Skills, Database Management, Ability To Think, Ability To Cope Up With Stress, Ability To Deal Diplomatically, 1)communication
College Name: NIT Sikkim

I appeared for an interview in Nov 2016.

Interview Questionnaire 

11 Questions

  • Q1. General technical questions.
  • Q2. Java string class
  • Q3. Java singleton pattern
  • Q4. LinkedIn list loop
  • Q5. Array list operations and search
  • Q6. Tomcat server related
  • Q7. Situations based
  • Q8. Salary negotiation
  • Q9. Location based
  • Q10. Reason for leaving
  • Ans. 

    Seeking better growth opportunities and challenges

    • Limited growth potential in current role

    • Desire to work on more challenging projects

    • Looking for a company with a better cultural fit

    • Relocating to a new area

  • Answered by AI
  • Q11. Expectation

Interview Preparation Tips

Round: Test
Experience: Online test for basic knowledge Check on SQL, UNIX, oops.
Apptitude, reasoning and English.
Tips: Learn UNIX basic commands and vi editor.
SQL query for index, update, delete and stored procedure.
Java exception and oops.
Duration: 2 hours 30 minutes
Total Questions: 90

Round: Technical Interview
Experience: General questions search any interview site.
Tips: Please share your thoughts before answering any question.

Round: HR Interview
Experience: NA
Tips: NA

Skills: Java Programming

I applied via Campus Placement and was interviewed before Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Online test on Amcat website ( English + Aptitude + 2 Programming Problem and some basic question from OS and Networking ) All question is very basic.
  • Q2. Technical Round : string palindrome problem
  • Ans. 

    A string palindrome is a sequence that reads the same backward as forward, like 'racecar' or 'level'.

    • A palindrome can be checked by comparing characters from both ends towards the center.

    • Example: 'madam' is a palindrome because 'm' == 'm', 'a' == 'a'.

    • Ignoring spaces and punctuation: 'A man, a plan, a canal, Panama!' is a palindrome.

    • Case sensitivity can be ignored: 'No 'x' in Nixon' is a palindrome.

  • Answered by AI
  • Q3. Swaping of number using call by value , address and reference
  • Ans. 

    Swapping of numbers can be done using call by value, address and reference.

    • Call by value: Pass the values of variables as arguments to the function. Swap the values inside the function.

    • Call by address: Pass the addresses of variables as arguments to the function. Swap the values using pointers inside the function.

    • Call by reference: Pass the references of variables as arguments to the function. Swap the values using ref...

  • Answered by AI
  • Q4. Reverse the string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the string and append each character to a new string in reverse order

    • Alternatively, use built-in string functions like reverse() or slice()

    • Remember to handle edge cases like empty strings or strings with only one character

  • Answered by AI
  • Q5. Some basic command of unix and linux like use of pipe command , grep , head and tail command , some basic knowledge of vi editor.
  • Q6. Write multi-threading program to print 1 2 1 2 using 2 thread.
  • Ans. 

    A multi-threading program to print 1 2 1 2 using 2 threads.

    • Create two threads and pass a flag to each thread to print either 1 or 2.

    • Use a synchronization mechanism like mutex or semaphore to ensure alternate printing.

    • Join the threads to wait for their completion.

  • Answered by AI
  • Q7. Write a code for binary search
  • Ans. 

    Code for binary search algorithm

    • Binary search is a divide and conquer algorithm

    • It works by repeatedly dividing the search interval in half

    • If the value is found, return the index. Else, repeat on the appropriate half

    • The array must be sorted beforehand

  • Answered by AI
  • Q8. Design class diagram for Flower shop
  • Q9. Some question from socket programming

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Prepare basic Aptitude and English (Actually no need to prepare just try to solve some some basic problem from indiabix or any website , just for speed)
2. Coding problem prepare Array , String and linked list some basic question.
3. Basic knowledge of programming + some basic command of unix.

Skills evaluated in this interview

I applied via Job Portal and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Explain the rating process from com to Bip
  • Ans. 

    The rating process from com to Bip involves evaluating a company's creditworthiness and assigning a rating based on various factors.

    • The process starts with gathering information about the company's financials, operations, and industry.

    • The information is analyzed to assess the company's credit risk and financial stability.

    • Based on the analysis, a rating is assigned to the company, which ranges from AAA to D.

    • The rating a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific to ur answer. Don't bluff dont be over smart like u know better then the interviewer it will hurt his ego..

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

The test included MCQ questions from SQL, Linux Commands, C/C++ programming, Logical Reasoning, Aptitude questions. The other section was the coding round, where 2 SQL queries and 2 coding questions were there.

  • Q1. 

    Subarray with Equal Occurrences Problem Statement

    You are provided with an array/list ARR of length N containing only 0s and 1s. Your goal is to determine the number of non-empty subarrays where the numbe...

  • Ans. 

    Count the number of subarrays where the number of 0s is equal to the number of 1s in a given array of 0s and 1s.

    • Iterate through the array and keep track of the count of 0s and 1s encountered so far.

    • Use a hashmap to store the count of 0s and 1s encountered at each index.

    • For each index, check if the count of 0s is equal to the count of 1s encountered so far and update the result accordingly.

  • Answered by AI
  • Q2. 

    Pythagorean Triplets Detection

    Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x2 + y2 = z2 within the array.

    Input:

    The first lin...
  • Ans. 

    Detect if an array contains a Pythagorean triplet by checking if there are three integers x, y, and z such that x^2 + y^2 = z^2.

    • Iterate through all possible triplets of numbers in the array and check if they form a Pythagorean triplet.

    • Use a nested loop to generate all possible combinations of three numbers from the array.

    • Check if the sum of squares of two numbers is equal to the square of the third number for each trip...

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was a standard DSA round where I was asked to solve 2 questions and also code it in a production ready manner . At the end I was also asked some questions related to Linux and SQL . I was tested on some basic commands of Linux .

  • Q1. 

    Palindromic Substrings Problem Statement

    Given a string S, your task is to return all distinct palindromic substrings of the given string in alphabetical order.

    Explanation:

    A string is considered a pal...

  • Ans. 

    Return all distinct palindromic substrings of a given string in alphabetical order.

    • Iterate through all possible substrings of the given string.

    • Check if each substring is a palindrome.

    • Store distinct palindromic substrings in alphabetical order.

  • Answered by AI
  • Q2. 

    Swap Two Numbers Problem Statement

    Given two integers a and b, your task is to swap these numbers and output the swapped values.

    Input:

    The first line contains a single integer 't', representing the num...
  • Ans. 

    Swap two integers 'a' and 'b' and output the swapped values.

    • Create a temporary variable to store one of the integers before swapping.

    • Swap the values of 'a' and 'b' using the temporary variable.

    • Output the swapped values of 'a' and 'b'.

  • Answered by AI
  • Q3. What is meant by normalization and denormalization?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity, while denormalization is the process of intentionally adding redundancy to improve query performance.

    • Normalization involves breaking down a table into smaller tables and defining relationships between them to reduce redundancy and dependency.

    • Denormalization involves combining tables or adding redundant data to...

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a DS/Algo + Core round where I was asked questions related to DBMS , SQL queries and Linux Commands . The first question was of DSA and I was able to code it preety fast . I was also asked to execute some SQL queries on my laptop.
Overall , this round went good according to my opinion.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Check if two strings are anagrams of each other by comparing their sorted characters.

    • Sort the characters of both strings and compare them.

    • Use a dictionary to count the frequency of characters in each string and compare the dictionaries.

    • Ensure both strings have the same length before proceeding with comparison.

    • Handle edge cases like empty strings or strings with different lengths.

  • Answered by AI
  • Q2. How would you delete duplicate emails from a database using SQL?
  • Ans. 

    Use SQL query with GROUP BY and HAVING clause to delete duplicate emails from a database.

    • Use GROUP BY clause to group emails together

    • Use HAVING clause to filter out groups with more than one email

    • Use DELETE statement to remove duplicate emails

  • Answered by AI
  • Q3. What is the difference between the DELETE and TRUNCATE commands in a DBMS?
  • Ans. 

    DELETE removes specific rows from a table, while TRUNCATE removes all rows and resets auto-increment values.

    • DELETE is a DML command, while TRUNCATE is a DDL command.

    • DELETE can be rolled back, while TRUNCATE cannot be rolled back.

    • DELETE triggers ON DELETE triggers, while TRUNCATE does not trigger any triggers.

    • DELETE is slower as it maintains logs, while TRUNCATE is faster as it does not maintain logs.

    • Example: DELETE FRO...

  • Answered by AI
Round 4 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions .

  • Q1. What is something about you that is not included in your resume?
  • Q2. Why do you want to work at Amdocs?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAmdocs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

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

Are these interview questions helpful?

I applied via Referral and was interviewed before Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About project

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round Apti +Tech is little easy mostly linux commands
2nd round Interview in Company
Just pray you are not last person to be interviewed from your group(if last you are already rejected)

I applied via Naukri.com and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Multithreading in java, data structures
  • Ans. 

    Multithreading and data structures are important concepts in Java programming.

    • Multithreading allows for concurrent execution of multiple threads within a single program.

    • Data structures are used to organize and manipulate data efficiently.

    • Examples of data structures include arrays, linked lists, stacks, and queues.

    • Java provides built-in support for multithreading through the Thread class and the Runnable interface.

    • Synch...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is the key

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. For java based profile, questions related to collections, usage of comparator, Class loading are asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics of computer science like data structure and algorithms. Have a detailed understanding of java basics

HashCash Consultants Interview FAQs

How many rounds are there in HashCash Consultants Digital Marketing Executive interview?
HashCash Consultants interview process usually has 2 rounds. The most common rounds in the HashCash Consultants interview process are Resume Shortlist and Technical.
What are the top questions asked in HashCash Consultants Digital Marketing Executive interview?

Some of the top questions asked at the HashCash Consultants Digital Marketing Executive interview -

  1. How to post an article on WordPr...read more
  2. Mention 5 main key point of ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Amdocs Interview Questions
3.7
 • 533 Interviews
Khoros Interview Questions
3.7
 • 20 Interviews
Cerence Interview Questions
3.2
 • 17 Interviews
Paras Cadd Interview Questions
2.3
 • 15 Interviews
Upland Software Interview Questions
4.6
 • 15 Interviews
View all

HashCash Consultants Digital Marketing Executive Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Java Developer
9 salaries
unlock blur

₹3.2 L/yr - ₹6.8 L/yr

Node JS Developer
7 salaries
unlock blur

₹4.3 L/yr - ₹8 L/yr

Operations Executive
6 salaries
unlock blur

₹2.8 L/yr - ₹3.1 L/yr

IOS Developer
6 salaries
unlock blur

₹5 L/yr - ₹6.8 L/yr

Software Engineer
5 salaries
unlock blur

₹6 L/yr - ₹8.3 L/yr

Explore more salaries
Compare HashCash Consultants with

Amdocs

3.7
Compare

Yalamanchili Software Exports

3.2
Compare

OnProcess Technology

3.8
Compare

Global Edge Software

3.5
Compare
write
Share an Interview