Answer:
101110010 is 370 in decimal (base 10, what we usually do math in) and 111001101 is 461 in decimal. The sum of 370 and 461 is 831, and 831 is binary is 1100111111. So, if you want the answer in decimal it is
and if you want the answer in binary, it is
.
Well brainly.com of course! Welcome.
For your answer, i would go with: Websites with primary source information that is verifiable and has a good reputation.
To promote a product we need marketing. So marketing plays an important role, moreover, the demand process also is required.
<u>Explanation:</u>
Marketing for any specified product can be done by visual aid presentation. Visual Aid presentation should have a cached message to the audience and the importance of promoting’s the product and it should impact the customer to purchase products and demand for availability should increase.
Once the demand for the product increased then sales and manufacture of the product are increased. So the growth of the company is increased. So, in other words, it is called chain management in the growth process.
Answer:
import java.util.*;
public class Create_set
{
public static void main(String args[])
{
Set<Integer> hset = new HashSet<Integer>(); //creating set using hashset of Integer type
hset.add(10); //add method add members to set
hset.add(20);
hset.add(30);
hset.add(40);
System.out.println(hset); //printing the set
}
}
OUTPUT :
[20,40,10,30]
Explanation:
The above code is implemented through java language. First a collection object is created using Set interface. Then that interface is implemented using Hashset class. As they are of generic datatype, Integer type is declared for this object. Then using add() method elements of the set are added and at last they are printed.
Set is an unordered collection which means elements can't be accessed through their particular position and no duplicate values are stored in sets.