Upload Button Icon Add office photos

Filter interviews by

Vishv Books Salesforce Developer Interview Questions and Answers

Updated 20 Apr 2024

Vishv Books Salesforce Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Walk-in

Round 1 - One-on-one 

(1 Question)

  • Q1. How you progress your company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good management.

Interview questions from similar companies

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Strength
  • Q3. Weaknesses
  • Q4. Hobbies
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find the number of red fishes.

    • Subtract the number of red fishes from 200 to find the number of non-red fishes.

    • Calculate 2% of the total number of fishes to find the desired number of red fishes.

    • Subtract the desired number of red fishes from the current number of red fishes to find the number of fishes to be removed.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Weaknesses
  • Q3. Strength
  • Q4. Hobby
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find out how many fishes represent 1%.

    • Multiply the result by 2 to find out how many fishes represent 2%.

    • Subtract the result from 200 to find out how many fishes represent 98%.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I was interviewed in Feb 2017.

Interview Preparation Tips

Round: Test
Experience: It was a simple aptitude test in which around 150 students cleared the test.
Duration: 1 hour
Total Questions: 40

Round: Test
Experience: Three programs were given and we had to write the code in either java ,c or c++ and get the required output.Around 90 students cleared this round.
Duration: 1 hour 30 minutes
Total Questions: 3

College Name: VIT Vellore

I was interviewed before May 2016.

Interview Preparation Tips

Round: Test
Experience: The test was conducted through Cocubes. It was moderately difficult. Some of the questions are time taking. We need to be decisive in attempting such questions.
Tips: Need to manage time properly. Should assess and choose which questions to attempt and which ones to leave.
Duration: 1 hour
Total Questions: 30

Round: Test
Experience: The three questions are of three different levels.

1. You will be given two numbers. The first one is the starting point and the second one is the ending point of a range of integers. You have to count the number of integers in that range which are divisible by the first number.

Ex : INPUT : 3 18
OUTPUT : 6

2. You will be given a number. You have to find the sum of the digits. If the sum exceeds 9, you have to add the digits of the sum recursively until you a get a single digit sum.

EX : INPUT : 9999
OUTPUT : 9

Explanation: 9999 => 9 +9+9+9=36 => 3+6 =9

3. You will be given an array of characters which include ( L, R , or a number in the range '0' to '9'). A ball is kept on a line of integers initially kept at zero. The ball has to execute the instructions sequentially as follows:
(i) If an 'L' character is encountered, the ;position of the ball has to be decremented.
(ii) If an 'R' character is encountered, the position of the ball has to be incremented.
(iii) If an integer (in the range '0' to '9) is encountered , we have to go to that index in the array and execute the instruction present in that index.

Finally, after all the instructions are executed, you have to print the final position of the ball.

EX : INPUT :
Number of instruction : 5
Instructions: LR1R2

OUTPUT : 3

Explanation :
(i) Initially, the ball is at 0. Since the 0th index in the array is 'L' , the ball moves to 0-1= -1 position.
(ii) The 1st index is 'R' hence, the position of the ball is -1 +1 = 0 position.
(iii) The 2nd index is '1', hence we have to go to index 1 in the array which is 'R', hence the new position is 0+1 =1.
(iv) The 3rd index is 'R', hence the new position is 1 +1 =2.
(v) The 4th index is '2' , hence we have to go to 2nd index is '1' , hence we have to go again to 1st index , which is 'R' hence the final position is 2+1 =3.

Tips: We need to solve all the three the problems to have better chances of clearing this round.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: The interview was focussed majorly on coding. It went for about 45min with around 10 coding problems given to solve. Some basics of Computer networking are also tested in this round.
Tips: Be prepared with some basics of networking. As the company's main focus is on Telecom, good knowledge in telecom and networking would be a big advantage.

Round: Technical Interview
Experience: This round was focused on the aptitude and reasoning skills. Some puzzles were given in this round. These puzzles are of moderately complex and are more common ones in interviews. Like the (find the heavier ball among three balls using a balance in min no. of attempts).
Tips: Sometimes the interviewer tries to confuse. You need to be confident with your answers and explaination.

Round: HR Interview
Experience: The interview was more of a traditional HR round. Majorly concentrated on the final year project, personal strengths and weaknesses.

Skills: Coding Skills, Computer Networking, C Language Basics
College Name: G Pulla Reddy College of Engineering & Technology

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Strength
  • Q3. Weaknesses
  • Q4. Hobby
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes, which is 2 fishes.

    • To make the red fishes 98%, subtract 1% (2 fishes) from 99% (198 fishes).

    • To find the number of fishes to be removed, divide the difference by 1% (2 fishes).

    • Therefore, 50 fishes have to be removed to make the red fishes 98%.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skills, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I applied via Campus Placement

Interview Questionnaire 

1 Question

  • Q1. Task Scheduling

Interview Preparation Tips

Round: Test
Experience: Questions are very basic and easy to answer .Algorithms should be implemented on spot but they are also standard ones
Tips: read Richie and kernigan
Duration: 60 minutes

Round: Technical Interview
Experience: Nice question and very hard to solve .Though it is a standard problem but requires spontaneous thinking because there are some restrictions for it
Tips: Read cormen

General Tips: Learn all basic algorithms and be confident.
Skill Tips: Solve some puzzles
Skills: Problem Solving Skills, Approaching A Problem
Duration: 2
College Name: IIT Madras
Motivation: i like data engineering profile

I was interviewed before May 2016.

Interview Preparation Tips

College Name: GPREC kurnool
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is ptyhon how to use this what is data types
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability. It supports multiple programming paradigms.

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

    • To use Python, you need to install the Python interpreter on your system and write code in a text editor or an IDE.

    • Python has various data types such as integers, floats, strings, lists,

  • Answered by AI
  • Q2. What is c what is python what is data types what is tuple program
  • Ans. 

    C is a programming language, Python is a high-level programming language, data types are classifications of data items, tuple is a data structure in Python.

    • C is a general-purpose programming language known for its efficiency and flexibility.

    • Python is a high-level programming language with a focus on readability and simplicity.

    • Data types are classifications of data items that specify the type of data that can be stored ...

  • Answered by AI
Round 3 - Coding Test 

What is tuple program
what is list program
what is set program

Round 4 - Coding Test 

Python,c
what is c
what is python

Interview Preparation Tips

Topics to prepare for AmbitionBox Software Engineer interview:
  • c,python
  • pyhon topics
Interview preparation tips for other job seekers - no idea

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be honest with your years of experience. All information you share will be verified at the time of joining.
View all tips
Round 2 - Aptitude Test 

45 min, Quantitative aptitude topics, speed and distance

Round 3 - Coding Test 

Variable declarations, basic syntax, data type and structures

Vishv Books Interview FAQs

How many rounds are there in Vishv Books Salesforce Developer interview?
Vishv Books interview process usually has 1 rounds. The most common rounds in the Vishv Books interview process are One-on-one Round.

Tell us how to improve this page.

Vishv Books Salesforce Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.9
 • 149 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
Data Entry Interview Questions
4.1
 • 97 Interviews
HyScaler Interview Questions
4.5
 • 91 Interviews
CapitalOne Interview Questions
3.7
 • 78 Interviews
3 Minds Digital Interview Questions
4.4
 • 65 Interviews
View all

Vishv Books Salesforce Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Compare Vishv Books with

Huawei Technologies

4.0
Compare

Z X Learning

4.5
Compare

Evision Technoserve

4.8
Compare

Cogoport

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