Featured Post

15 Python Tips : How to Write Code Effectively

Image
 Here are some Python tips to keep in mind that will help you write clean, efficient, and bug-free code.     Python Tips for Effective Coding 1. Code Readability and PEP 8  Always aim for clean and readable code by following PEP 8 guidelines.  Use meaningful variable names, avoid excessively long lines (stick to 79 characters), and organize imports properly. 2. Use List Comprehensions List comprehensions are concise and often faster than regular for-loops. Example: squares = [x**2 for x in range(10)] instead of creating an empty list and appending each square value. 3. Take Advantage of Python’s Built-in Libraries  Libraries like itertools, collections, math, and datetime provide powerful functions and data structures that can simplify your code.   For example, collections.Counter can quickly count elements in a list, and itertools.chain can flatten nested lists. 4. Use enumerate Instead of Range     When you need both the index and the value in a loop, enumerate is a more Pyth

SMAC - $1 Trillion Industry By 2020

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 their marketing initiatives or service quality etc. This service involves a rich interweave of social media monitoring and applying analytics to it to help the client make informed decisions and very often in real time. A lot of marketing analytics is based on what is happening in the social media today. Increasing number of users are the Gen Y, and being digital natives their access to social media and their use of it for any transaction is immense, thus churning out a lot of data all the time. Big Data is about combining intelligence from your own measuring systems with what the world is talking about you.

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

SQL Query: 3 Methods for Calculating Cumulative SUM

Python placeholder '_' Perfect Way to Use it