Answer: PLC uses:
1. Decimal Number system
2. Binary Number system.
3. Octal Number system.
4. Hexadecimal Number system.
5. Binary Coded Decimal Number system.
6. Negative Number system.
7. Number Conversations.
Explanation: The other numbers the Programmable Logic Controller(PLC) uses aside the decimal number system are:
1. Binary Number system.
2. Octal Number system.
3. Hexadecimal Number system.
4. Binary Coded Decimal Number system.
5. Negative Number system.
6. Number Conversations.
Answer: demographics
Explanation:
Market segmentation refers to the process of dividing the consumers into sub-groups of consumers which are refered to as the segments based on the characteristics shared.
The examples of a customer's behavior or relationship with a product include user status, usage rate and loyalty status.
It should be noted that some examples of market segmentation are behavioral, demographic, geographic, and psychographic. From the options given, demographics is not an example of a customer's behavior with a product.
Answer:
Implementing on Python for the question, the following is the code.
Explanation:
def intialMatch(l):
word_dict={}
for word in l.split():
if word_dict.get(word)==None:
word_dict[word]=[]
for key in word_dict.keys():
if key[0]==word[0] and (word is not key) :
values = word_dict.get(key)
if word not in values:
values.append(word)
for key,values in word_dict.items():
for value in values:
if value==key:values.remove(value)
return word_dict
t='do what you can with what you have'
print(intialMatch(t))
Answer:
1. don't pass, will be
2. will get, eat
3. don't help, won't help
4. are meeting, will you go?
5. will stay, rains
Is
6.Will
Puts on
7.Will go
Asks
8.Will... tell
9.Tell
Will
10.Go... Will find out...
Explanation:
Answer: A. Multicast
Explanation:
Here we are given a situation where it is necessary for the device to stream media to all the PCs connected across the LAN. But as the they are unable to stream the media then it is a problem in the multicast TCP/Ip technology.
Multicasting enables to transfer information or messages from one to many or many to many. Here as a single device is responsible for streaming the content to other PCs across the LAN, therefore it is necessary that multicast has been properly implemented.
Option B is incorrect as it is not a scenario of broadcast as in broadcasting all the receivers must get the streaming however here if a PC does not want to receive the media stream it cannot receive for which multicasting is required.
Option C is incorrect as here we are not talking of one to one communication.
Option D is incorrect as here we cannot have more than one route to send the media content except the LAN.