Mash-up, I believe, is the correct answer.
Answer:
Explanation:
From the given information;
We will like you to understand that the source port numbers and destination port number can be any number. For that reason, the ones being used here will just be examples.
NOTE:
That the destination port numbers sent from A to S and B to S are the same in their segments.
That the destination port numbers sent from S to A and S to B are the same in their segments.
From A to S, the segment sent possibly could have the source port number 467 and destination port number as 23(Telnet)
From B to S, the segment sent possibly could have the source port number 513 and destination port number as 23(Telnet).
From S to A, the segment sent possibly could have the source port number as 23(Telnet) and destination port number as 467.
From S to B, the segment sent possibly could have the source port number as 23(Telnet) and destination port number as 513.
Yes, it is possible. This is because the inclusion of IP in the segments is to recognize the host.
No, the source ports will be different. Because source port number from A to S can't be the same from B to S at the time they are in the same host.
Answer: False
Explanation:Customer relationship management (CRM) is the management system for improving of the business ethics like relationship with customers and interactions etc.Analytical CRM is the analysis system for the customer data.Operational CRM consist of the business process in the front office phase and thus taking care of the customer.
Both the CRM system are considered equal in their operation. Generally, operational CRM helps in contributing to the analytical CRM as the input .So, the statement given is false.
Answer: Digital Video
Explanation: So basically, online content videos on the internet are in the form of encoded digital data displayed in rapid succession. Such kind of data therefore can be streamed in a digital video.
Answer:
Check the explanation
Explanation:
As per requirement submitted above kindly find below solution.
This demonstration is using SQL Server.
Table Names used as
department
project
works_on
SQL query :
select proj_name,dept_name,count(emp_no) as 'most employees ' from
project,department,works_on
where
project.proj_no=works_on. proj_no and
department. dept_no=works_on. dept_no
group by proj_name,dept_name
having count(emp_no)=(
select max(empCount) from (
select proj_name,dept_name,count(emp_no) empCount from project,department,works_on where project. proj_no=works_on. proj_no and department. dept_no=works_on. dept_no
group by proj_name,dept_name) as emp);