Upload Button Icon Add office photos

Filter interviews by

Accely Interview Questions and Answers

Updated 23 Nov 2023

Accely Interview Experiences

Popular Designations

2 interviews found

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

I applied via Indeed and was interviewed in Jul 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 - Telephonic Call 

(8 Questions)

  • Q1. What is Href Lang tag?
  • Ans. 

    Href Lang tag is an HTML attribute that tells search engines which language is used on a specific page.

    • Href Lang tag helps search engines understand the language and regional targeting of a webpage.

    • It is used to avoid duplicate content issues for pages with similar content in different languages.

    • It is important for international SEO and helps in improving search engine rankings.

    • Example:

    • Ans. 

      Sitemap and robots.txt are important files for website optimization and search engine crawling.

      • Sitemap is an XML file that lists all the pages on a website and helps search engines to crawl and index them.

      • Robots.txt is a text file that tells search engine crawlers which pages or sections of a website should not be crawled or indexed.

      • Sitemap helps to improve website visibility and search engine rankings.

      • Robots.txt helps...

    • Answered by AI
  • Q3. What is difference between html sitemap and XML sitemap.
  • Ans. 

    HTML sitemap is for users to navigate a website, while XML sitemap is for search engines to crawl and index the site.

    • HTML sitemap is designed for human users to easily navigate a website by providing a structured list of links.

    • XML sitemap is specifically created for search engines to crawl and index the website's pages, helping with SEO.

    • HTML sitemap is typically visible and accessible to website visitors, often linked ...

  • Answered by AI
  • Q4. Is it Sitemap necessary to add in robots.txt?
  • Ans. 

    Yes, it is recommended to add sitemap in robots.txt for better crawling and indexing of website.

    • Sitemap helps search engines to understand the structure of website

    • Robots.txt file tells search engines which pages to crawl and which not to

    • Adding sitemap in robots.txt helps search engines to easily find and crawl all pages

    • Example: Sitemap: https://www.example.com/sitemap.xml

    • Example: User-agent: * Disallow: /admin/ Sitemap

  • Answered by AI
  • Q5. What is DA DR Trust flow Citation flow.
  • Ans. 

    DA, DR, Trust flow and Citation flow are metrics used to measure the authority and credibility of a website.

    • DA (Domain Authority) is a metric developed by Moz that predicts how well a website will rank on search engine result pages (SERPs).

    • DR (Domain Rating) is a metric developed by Ahrefs that measures the strength of a website's backlink profile.

    • Trust flow is a metric developed by Majestic that measures the quality o...

  • Answered by AI
  • Q6. What is sessions, pageviews, bounce rate,
  • Ans. 

    Sessions, pageviews, and bounce rate are important metrics in web analytics.

    • Sessions refer to the number of visits to a website within a specific time period.

    • Pageviews refer to the number of pages viewed by visitors during a session.

    • Bounce rate is the percentage of visitors who leave a website after viewing only one page.

    • A high bounce rate may indicate that the website is not engaging or relevant to the visitor.

    • These m...

  • Answered by AI
  • Q7. What is LCP, and which main factors affecting on website speed according to page speed insight
  • Ans. 

    LCP stands for Largest Contentful Paint. Main factors affecting website speed are server response time, render-blocking resources, and image optimization.

    • LCP is a metric that measures loading performance. It marks the point in the page load timeline when the main content has loaded.

    • Server response time is the time it takes for the server to respond to a request. A slow server can significantly affect website speed.

    • Rend...

  • Answered by AI
  • Q8. About off page activities

Interview Preparation Tips

Topics to prepare for Accely Digital Marketing Executive interview:
  • On-page SEO
  • Off-page SEO
  • Technical SEO
  • Link Building
Interview preparation tips for other job seekers - Prepare for interview by checking proper JD. Be confident during interview. All the best.

Skills evaluated in this interview

Top Accely Digital Marketing Executive Interview Questions and Answers

Q1. What is LCP, and which main factors affecting on website speed according to page speed insight
View answer (1)

Digital Marketing Executive Interview Questions asked at other Companies

Q1. What is the difference between do follow and no follow links?
View answer (5)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 3 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 - HR 

(2 Questions)

  • Q1. Describe me yourself in few words
  • Ans. 

    Experienced sales executive with a proven track record of exceeding targets and building strong client relationships.

    • Proven track record of exceeding sales targets

    • Strong ability to build and maintain client relationships

    • Excellent communication and negotiation skills

    • Strategic thinker with the ability to identify and capitalize on market opportunities

    • Proficient in sales techniques and CRM software

    • Team player with the abi...

  • Answered by AI
  • Q2. Role in your pervious company
  • Ans. 

    I was responsible for managing a team of sales representatives and achieving sales targets.

    • Managed a team of sales representatives

    • Set and achieved sales targets

    • Developed and implemented sales strategies

    • Built and maintained relationships with key clients

    • Analyzed market trends and competitor activities

    • Provided training and guidance to sales team members

  • Answered by AI
Round 3 - Assignment 

Given an assignment to prepare presentation on company profile

Sales Executive Interview Questions asked at other Companies

Q1. Do you know what is selling and how you can sell it?
View answer (52)

Jobs at Accely

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basics of Java ,MySQL
  • Q2. For java do all object oriented programming (oops) concept very deeply
  • Q3. For mysql do all basics commands and query

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basic theoretical and practical knowledge required

I applied via Campus Placement and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Difference between sets and list in java
  • Ans. 

    Sets are unordered collections of unique elements while lists are ordered collections of elements.

    • Sets do not allow duplicate elements while lists do.

    • Sets do not maintain the insertion order while lists do.

    • Sets have faster lookup time for specific elements while lists have faster iteration time.

    • Examples of sets in Java include HashSet and TreeSet while examples of lists include ArrayList and LinkedList.

  • Answered by AI
  • Q2. Exceptional handling. What does finally block do?
  • Ans. 

    Finally block is used to execute code after try-catch block, regardless of whether an exception is thrown or not.

    • Finally block is optional and follows the catch block.

    • It is used to clean up resources like closing files, database connections, etc.

    • Finally block is executed even if an exception is not caught.

    • It is used to ensure that a certain piece of code is always executed.

    • Example: try { //code } catch (Exception e) { ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviews are simple. They'll ask basic question and some personal questions

Skills evaluated in this interview

I appeared for an interview in Feb 2021.

Interview Questionnaire 

1 Question

  • Q1. Project, thesis, sql joins, rank function, palindrome.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and confident. Prepare your cv.
Good projects help.

I applied via Company Website and was interviewed in Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Round 1,2,3,4: written TEST based on 10th and 12th math, apptitude, reasoning then after f2f java questions, oops, string manipulation code, algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Well peapered on java, da, algo, math

I applied via Campus Placement and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Coding cum aptitude test on Hackerrank

Round 2 - One-on-one 

(1 Question)

  • Q1. First round interview . Consisted questions based on projects , dsa
Round 3 - One-on-one 

(1 Question)

  • Q1. Round 2 . Question based from core technology. Micro services , etc
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions . Why are you fit for this role kind of things

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium level interview rounds. Basic knowledge in dsa will be of a great help

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. SQL, Cloud, Power BI,

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was very nice.
Interview experience
3
Average
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 

Basic array and string based questions.

Round 3 - Technical 

(2 Questions)

  • Q1. Basics of OOPS and resume.
  • Q2. Reverse a string without using new variable
  • Ans. 

    Reverse a string without using new variable

    • Use two pointers, one at the beginning and one at the end of the string

    • Swap the characters at the two pointers and move the pointers towards each other until they meet in the middle

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOPS, DS, and one programming language. Deep understanding of any programming language will better.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

Online assignment questions was easy

Round 2 - Technical 

(1 Question)

  • Q1. Java MySQL spring questions asked

Accely Interview FAQs

How many rounds are there in Accely interview?
Accely interview process usually has 2-3 rounds. The most common rounds in the Accely interview process are Resume Shortlist, Telephonic Call and HR.
How to prepare for Accely 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 Accely. The most common topics and skills that interviewers at Accely expect are SAP CO, Troubleshooting, CCTV Monitoring, Continuous Improvement and System Testing.
What are the top questions asked in Accely interview?

Some of the top questions asked at the Accely interview -

  1. What is LCP, and which main factors affecting on website speed according to pag...read more
  2. What is sitemap and robot.txt? Tell me it's functio...read more
  3. What is difference between html sitemap and XML sitem...read more

Tell us how to improve this page.

Accely Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 100 Interviews
Apisero Interview Questions
4.3
 • 65 Interviews
Webkul Software Interview Questions
3.8
 • 59 Interviews
View all

Accely Reviews and Ratings

based on 37 reviews

4.6/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

4.2

Salary

3.8

Job security

4.0

Company culture

3.9

Promotions

4.0

Work satisfaction

Explore 37 Reviews and Ratings
Growth Marketing

Kolkata,

Mumbai

+5

1-3 Yrs

Not Disclosed

AI Engineer

Kolkata,

Mumbai

+5

1-3 Yrs

Not Disclosed

SAP MM IS Retail Consultant

Kolkata,

Mumbai

+5

2-3 Yrs

Not Disclosed

Explore more jobs
SAP Abap Consultant
8 salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Senior SAP Abap Consultant
8 salaries
unlock blur

₹12.3 L/yr - ₹20 L/yr

SAP MM Consultant
8 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

SAP Fico Consultant
6 salaries
unlock blur

₹7.3 L/yr - ₹18 L/yr

SAP SD Consultant
6 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Explore more salaries
Compare Accely with

Tekwissen

4.8
Compare

Softenger

4.1
Compare

XcelServ Solutions

4.5
Compare

Damco Solutions

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