Answer:
D customer relations
Explanation:
A sales process is a term that describes a set of predetermined undertakings in which a salesperson perform in order to engage and put up with prospective buyer right from the first stage which is pre-approach to a closed sale.
The sale process involves the following steps:
1. Pre-approach
2. Approaching the customer
3. Determining the needs of customers
4. Introducing the product
5. Handling questions and objections
6. Closing the sale
7. Recommendation selling
8. Encouraging and follow up.
Hence, all the steps involved in the sales process deals with CUSTOMER RELATIONS. Therefore, the right answer is option D.
Answer:
B is the best answer.
Explanation:
All other options listed are related to a program but B beast answers the question.
Answer:
The most direct effect that the internet has had on retail sales is THE DEVELOPMENT OF E-COMMERCE.
E- Commerce refers to the commercial transactions that are conducted via the internet. The advance in technology has makes it possible for the retailers to advertise their products and get across to the consumers via the internet. Buying and selling on the internet is now more preferable to most people than the traditional buying and selling because of its convenience.
Answer: Constructors can specify parameters but not return types.
Explanation:
public class Student {
int roll_no;
public Student(int a) {
roll_no = a;
}
public static void main(String[] args) {
Student abs = new Student(10);
System.out.println(abc.roll_no);
}
}
In the above code we have illustrated the working of constructors. We have a class with the name Student. then a constructor is created of the class called as the class constructor. In the main we create an object of the class and with this object we invoke the constructor and also pass a parameter. Here in the code we are passing the roll no of the student.
So we can say that constructor is called during the runtime when the object created invokes the constructor so a constructor can have many arguments but it does not have a return type.