Answer: Business analysis
Explanation:
Business analysis is the review of the sales, costs, and profit projections for a new product to find out whether these factors satisfy the company's objectives.
Based on the business analysis a company is able to set a marketing strategy for a better promotion of its products. So this step is particularly very important.
Answer:
The answer is "Spyware".
Explanation:
Spyware is a supplementary program that is mounted on your customer computer and it transmits the data without authorization via the Internet. Its business includes ads, private data, and improvements in the user interface, which is why it has become recognized as the special adware class that collects and transmits user information over the web without the user's permission.
Task one; Immersion and Interaction are most important for virtual reality to provide a smooth and enjoyable experience for the user
For task two the multiple choice on slide 5 has the answers to the quiz
Good question. When one Endorces or "Hires/ payes" someone again for a job/thing they did. I think. :)
Answer:
Here is the program for the given question
Explanation:
class StringSet
{
ArrayList<String> arraylist; //a reference variable of ArrayList of generic type String
//A no argument constructor.
public StringSet()
{
arraylist=new ArrayList<String>(); //instantiating the ArrayList object
}
//A mutator that adds a String newStr to the StringSet object.
void add(String newStr)
{
arraylist.add(newStr); // add(String) method to add string to the arraylist
}
//An accessor that returns the number of String objects that have been added to this StringSet object.
int size()
{
return arraylist.size(); // size() method which gives the number of elements in the list
}
//An accessor that returns the total number of characters in all of the Strings that have been added to this StringSet object.
int numChars()
{
int sum = 0;
for(String str:arraylist) //for-each loop; can be read as for each string in arraylist
{
sum+=str.length();
}
return sum;
}
//An accessor that returns the number of Strings in the StringSet object that have exactly len characters.
int countStrings(int len)
{
int count = 0;
for(String str:arraylist)
{
if(str.length() == len)
count++;
}
return count;
}
}