Answer:
Option b the development of one or a few related analytics applications.
Explanation:
Data silo is the isolated information in an organization which is not shared across different departments. Data silo could exist because one department in an organization may not see the necessity to share information to other department. Or the information is deemed as unique data which is dedicated to develop one or a few very specific analytics applications. Data silos should be minimized if an organization intends to develop a data analytics system that support in enterprise wide level.
Answer:CRM stands for Customer Relationship Management. It is a system for managing customers and their needs.
Collaborative CRM
Explanation:
The system described here involves communication between different departments and exchange of customers data and information. This is typical of collaborative CRM software
Answer:
def scramble(s):
if len(s) % 2 == 1:
index = int(len(s)//2)
else:
index = int(len(s)/2)
return s[index:] + s[:index]
Explanation:
Create a function called scramble that takes one parameter, s
Check the length of the s using len function. If the length is odd, set the index as the floor of the length/2. Otherwise, set the index as length/2. Use index value to slice the s as two halves
Return the second half of the s and the second half of the s using slice notation (s[index:] represents the characters from half of the s to the end, s[:index] represents the characters from begining to the half of the s)
Answer:
The number of characters to shift each letter in the alphabet.
Explanation:
Caeser Cipher is the technique of encryption of data, to make it secure by adding characters between alphabets. These are the special characters that make the message secure while transmitting.
According to the standards, For Decryption, we remove these special characters between alphabets to make message understandable.
<em>So, we can say that,to de-crypt the message, the number of characters to shift each letter in the alphabet.</em>
Answer:
Development & implementation phase
Explanation:
There are mainly six stages of SDLC, which are as follows:
1. Planning: Planning is the first step in app development, where the developer preplans every aspect of the software.
2. Analysis: After planning, the developer analyzes further requirements to develop the software as per planning.
3. Design: After planning and analysis, the developer makes the design which is the main architecture of the software.
4. Development & implementation: When the developer completes the design, the development phase comes in where the data is coded and recorded as per requirement and after development, implementation takes place to see if software functions properly or not.
5. Testing: Testing mainly tests the programs to check for any errors or bugs.
6. Maintenance: When the software is developed successfully, then time to time maintenance and updation of the software takes place to maintain and upgrade its working.
Hence according to the scenario, development & implementation phase is the right answer.