Upload Button Icon Add office photos

Filter interviews by

Botree Software International Content Marketing Specialist Interview Questions and Answers

Updated 6 Dec 2023

Botree Software International Content Marketing Specialist Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Nov 2023. 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 - One-on-one 

(1 Question)

  • Q1. It was a general round to understand my experience and role for Content Marketing.
Round 3 - HR 

(1 Question)

  • Q1. Job expectations and company goals were clearly mentioned. HR were quite transparent and open about the procedures and further growth in the company. Onboarding process was very smooth and standard. Lookin...

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Questions on Logical Reasoning, Electronics subjects MCQ, C coding questions.

Round 2 - Technical 

(9 Questions)

  • Q1. Introduce yourself
  • Q2. Final year project deep with block diagram
  • Ans. 

    Designed a final year project involving a deep learning model with a block diagram.

    • Researched various deep learning algorithms and techniques

    • Implemented the chosen algorithm using Python and TensorFlow

    • Created a detailed block diagram to illustrate the project workflow

    • Tested and evaluated the performance of the deep learning model

    • Presented the project findings and results to faculty and peers

  • Answered by AI
  • Q3. Difference between Embedded C and Embedded C++.
  • Ans. 

    Embedded C is a subset of C language used for programming embedded systems, while Embedded C++ is a subset of C++ language with additional features for embedded systems.

    • Embedded C is a subset of C language, with limited features and libraries compared to standard C.

    • Embedded C++ is a subset of C++ language, with additional features like classes, inheritance, and polymorphism.

    • Embedded C is commonly used for low-level pro...

  • Answered by AI
  • Q4. Difference between Microcontroller and microprocessor, 8051 microcontroller.
  • Ans. 

    Microcontrollers are integrated circuits designed for specific tasks, while microprocessors are general-purpose CPUs. 8051 is a popular microcontroller.

    • Microcontrollers are self-contained systems with memory, I/O ports, and timers, designed for specific tasks.

    • Microprocessors are general-purpose CPUs that require external components for memory, I/O, and timers.

    • 8051 microcontroller is a popular 8-bit microcontroller know

  • Answered by AI
  • Q5. Datatype in C++,range and size, Real life example of of Embedded system.
  • Ans. 

    In C++, datatypes have specific ranges and sizes. Embedded systems are real-life examples of using datatypes effectively.

    • Datatypes in C++ have specific ranges and sizes to store different types of data efficiently.

    • For example, 'int' datatype in C++ typically has a range of -2,147,483,648 to 2,147,483,647.

    • Embedded systems use datatypes like 'uint8_t' to efficiently store data in limited memory space.

    • Real-life example of...

  • Answered by AI
  • Q6. Pointer in C++,types of pointer.
  • Ans. 

    Pointers in C++ are variables that store memory addresses. They can be used to access and manipulate data directly.

    • Types of pointers: Null pointer, Void pointer, Wild pointer, Dangling pointer

    • Example: int *ptr; // pointer to an integer variable

  • Answered by AI
  • Q7. Write program for number is prime or not prime
  • Ans. 

    Program to determine if a number is prime or not prime

    • Create a function to check if a number is prime or not

    • Iterate from 2 to the square root of the number and check for divisibility

    • If the number is divisible by any number other than 1 and itself, it is not prime

    • Return true if the number is prime, false otherwise

  • Answered by AI
  • Q8. Write code for fibonacci series
  • Ans. 

    Code to generate Fibonacci series using iterative approach

    • Initialize an array to store the Fibonacci series

    • Start with the first two numbers in the series (0 and 1)

    • Use a loop to calculate the next number by adding the previous two numbers

    • Continue this process until the desired number of terms is reached

  • Answered by AI
  • Q9. What is constructor, destructor, polymorphism, Static function, volatile keyword
  • Ans. 

    Constructor initializes an object, destructor cleans up resources. Polymorphism allows objects to be treated as instances of their parent class. Static function belongs to the class, not instances. Volatile keyword indicates a variable may be changed unexpectedly.

    • Constructor initializes an object when it is created. Example: 'Car c = new Car();'

    • Destructor cleans up resources when an object is destroyed. Example: 'delet...

  • Answered by AI
Round 3 - Group Discussion 

Work from home is better or work from office

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on last semester project, basic knowledge of coding, core subject knowledge, OOP concepts, focus on Embedded system for ECE candidate

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Programming questions in python
  • Q2. Selenium and API Testing interview questions
Round 2 - Technical 

(2 Questions)

  • Q1. Deeper Product-related question
  • Q2. Programming using python
  • Ans. 

    Python is a versatile programming language known for its simplicity and readability.

    • Python is an interpreted language, making it easy to write and test code quickly.

    • It supports multiple programming paradigms, including object-oriented, imperative, and functional programming.

    • Python has a large standard library with built-in modules for various tasks, reducing the need for external libraries.

    • Python uses indentation to de...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I am damn sure I cleared the interview, but no call back from the HR, no rejection emails. When I called the HR, she cut the call. Worst interview experience ever
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Hacker Rank SQL Questions 2 . and 10 MCQ based

Round 2 - Technical 

(3 Questions)

  • Q1. Select customer, sum(amt ) as total_amt from t1 group by customer how many no. of rows it will return and explain this table t1 column name-> dept customer item amt
  • Q2. Select * , sum(amt) over (partition by customer) as total_amt from t2
  • Ans. 

    The query selects all columns and calculates the total amount for each customer in table t2.

    • The query uses a window function to calculate the sum of 'amt' for each customer in the 't2' table.

    • The 'partition by customer' clause divides the result set into partitions based on the 'customer' column.

    • The 'select *' statement selects all columns from the table along with the calculated total amount.

    • The 'sum(amt) over (partiti...

  • Answered by AI
  • Q3. How many Customers has purchased same item on the Same day more than onnce
  • Ans. 

    To find customers who purchased the same item multiple times on the same day.

    • Identify unique customers who purchased the same item multiple times on the same day

    • Check for duplicate transactions by customer and item on the same day

    • Aggregate the data to count the number of customers who made multiple purchases of the same item on the same day

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic sql and solve questiosn without seeing answers
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to Java versions. System design, Kafka and rabbit mq
Round 2 - Technical 

(1 Question)

  • Q1. Some more questions on system design. Questions on Messaing system, EDA and Microservices architecture. AWS cloud.
Round 3 - Coding Test 

I am not sure about what this round about. After couple of simple management questions, The interviewer asking leet code questions which was not expected as it was mentioned that its a managerial round. As it was on 31st I was little not prepared and wanted to skip the question. The interviewer got offended and talking very rude. At this point I got the idea that interview is not.

Worst part is after every round they is no feedback cycle. they just ghost you. very bad attitude.

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Assignment 

Scenario based questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic Business Analyst questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Previous experience questions
Round 4 - HR 

(1 Question)

  • Q1. Company overview

Intern Interview Questions & Answers

CodeClouds user image dipnarayan sen

posted on 3 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General Computer Science Questions.

Round 2 - Technical 

(3 Questions)

  • Q1. 2NF and 3NF difference
  • Ans. 

    2NF eliminates partial dependencies, while 3NF eliminates transitive dependencies.

    • 2NF eliminates partial dependencies by ensuring all non-key attributes are fully functionally dependent on the primary key.

    • 3NF eliminates transitive dependencies by ensuring that non-key attributes are not dependent on other non-key attributes.

    • Example: In a table with columns A, B, and C where A is the primary key, if B depends on A and C...

  • Answered by AI
  • Q2. Alternative of using loop to print 1 to 100
  • Ans. 

    Using recursion to print numbers from 1 to 100 without a loop

    • Create a recursive function that takes a number as input and prints it

    • Call the function with 1 as the initial input and increment the input by 1 in each recursive call

    • Stop the recursion when the input reaches 100

  • Answered by AI
  • Q3. Delete and Truncate Difference
  • Ans. 

    Delete removes rows from a table while truncate removes all rows from a table.

    • Delete is a DML command while truncate is a DDL command.

    • Delete operation can be rolled back while truncate operation cannot be rolled back.

    • Delete operation fires triggers on each row deletion while truncate operation does not fire triggers.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic OOPs concept and coding
Round 2 - Technical 

(3 Questions)

  • Q1. Basic DSA question
  • Q2. 1 mySql query to fetch records
  • Q3. Design patterns

Interview Preparation Tips

Topics to prepare for Entrata PHP Developer interview:
  • php
  • mysql
  • oops
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. What is the code to determine the minimum number of dice throws required to reach 100 in a game of Snakes and Ladders?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Have you used fluient wait in selenium and why we are not using mostly
  • Ans. 

    Fluent wait in Selenium is used for handling dynamic elements and synchronization issues.

    • Fluent wait is used to wait for a condition to be true before proceeding with the next steps in Selenium automation scripts.

    • It provides more flexibility in defining wait conditions compared to implicit or explicit waits.

    • Fluent wait can be used to wait for a specific element to be visible, clickable, or any other custom condition.

    • It...

  • Answered by AI
  • Q2. How to get all the links available in the page
  • Ans. 

    To get all the links available on a page, you can use web scraping techniques.

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple we have to stick to basics well.

Skills evaluated in this interview

Botree Software International Interview FAQs

How many rounds are there in Botree Software International Content Marketing Specialist interview?
Botree Software International interview process usually has 3 rounds. The most common rounds in the Botree Software International interview process are Resume Shortlist, One-on-one Round and HR.

Tell us how to improve this page.

Botree Software International Content Marketing Specialist Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.7
 • 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
 • 797 Interviews
Ramco Systems Interview Questions
3.9
 • 64 Interviews
View all
Technical Associate
103 salaries
unlock blur

₹2.2 L/yr - ₹7.2 L/yr

Software Engineer
76 salaries
unlock blur

₹2.5 L/yr - ₹10 L/yr

Customer Support Associate
40 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Project Manager
36 salaries
unlock blur

₹7 L/yr - ₹19 L/yr

Senior Technical Associate
35 salaries
unlock blur

₹3.6 L/yr - ₹9 L/yr

Explore more salaries
Compare Botree Software International with

Ramco Systems

3.9
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

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