Posts

Showing posts with the label SMAC - $1 Trillion Industry By 2020

Featured Post

Python Logic to Find All Unique Pairs in an Array

Image
 Here's the Python logic for finding all unique pairs in an array that sum up to a target value. Python Unique Pair Problem Write a Python function that finds all unique pairs in an array whose sum equals a target value. Avoid duplicates in the result. For example: Input: arr = [2, 4, 3, 5, 7, 8, 9] , target = 9 Output: [(2, 7), (4, 5)] Hints Use a set for tracking seen numbers. Check for complements efficiently. Example def find_unique_pairs(arr, target):     """     Finds all unique pairs in the array that sum up to the target value.     Parameters:     arr (list): The input array of integers.     target (int): The target sum value.     Returns:     list: A list of unique pairs that sum to the target value.     """     seen = set()     pairs = set()     for num in arr:         complement = target - num         if complement in seen:...

SMAC - $1 Trillion Industry By 2020

Image
At least 5-6 lakh people will soon be employed in the space, according to Ganesh Natarajan, CEO, Zensar Technologies The size of the overall SMAC industry globally will be close to $1 trillion by 2020. From the Indian software exporters’ point of view, it will be $15 billion within the next three years, and over $ 225 Billion by 2020. Translating that to people it would mean at least 5-6 lakh people employed in this space by that time. Zensar Technologies has a Digital Enterprise group focusing on digital transformation solutions, where we work with clients in the US, Europe and India to understand what applications can be taken to the Cloud, which is almost 30 per cent of the SMAC opportunity. The second area is Social Listening involving analysis of information on the social media. Zensar provides a service that will enable our clients, especially those who are interacting with consumers directly and often, like insurance companies, retail banks, etc. on how to improve ...