Skip to main content

Sitharaman's New Policy leaned towards industrial input

Apropos the News Report Taking Industry Inputs to Stoke Growth: FM ' ( Aug 6 ) of the Economic Times, the Financial Ministry elucidated that various inputs from leaders in "core" industries such as Auto, MSME's and Real Estate would be taken into consideration when drafting policies to counter economic slowdown. Integrating fiscal policy and industrial opinion is yet another addition to Sitharaman's blueprint. However. These industries have posed numbers which prove to be catastrophic for FPI's looking to expand trade with the Indian sectors. Regaining the trust of significant FPI's would be elemental for FM's new " leaned towards the private sector " outlook.
However, the FM must keep in mind the deteriorating domestic investments in these fields considering the current market behaviour. With the Rupee taking the biggest hit in the last 6 years against the dollar, outside nations can take advantage by stabilising their monetary values by taking interest in Indian business whilst the Indian currency exchange rates ( CER ) are thrown into an abyss.
With the economic environment stagnating, the FM has to take certain measures which have to be balanced, not leaning towards the private or towards the public. Some level of homogeneity would stabilise the depleting exchange rates. While Foreign Direct Investments should not be discouraged, they should be carefully regulated.

Comments

Popular posts from this blog

Recommender System using Python

Recommender systems are everywhere. Amazon recommends buys we like, google recommends searches, Youtube recommends systems and Facebook recommends people. All of these implementations describe Recommender Systems. There are 2 types of Recommender Systems. Collaborative Systems - Systems that recommend information based on what you like and what the others like. Content Based Systems- Based on what you have viewed This is a simple ML based recommender System in python. It uses the LightFM library as the dataset import numpy as np from lightfm import LightFM from fetch_lastfm import fetch_lastfm data = fetch_lastfm() model = LightFM( loss = ' warp ' ) model.fit(data[ ' matrix ' ], epochs = 30 , num_threads = 2 ) # Get recommendationns function def get_recommendations ( model , coo_mtrx , users_ids ): n_items = coo_mtrx.shape[ 1 ] for user in users_ids: # TODO create known positives # Artists the model pred...

Impact of Chatbots on Human Driven sectors of business

Chatbots are Machine Learning and Deep Learning powered programs that can conduct meaningful conversations. Most of them use technical attributes like Natural Language Processing and Context Analysis to converse with a human or another chatbot. The bot is programmed to self-learn as it is introduced to supplementary dialogues and words. In consequence, as a chatbot receives new voice or textual dialogues, the number of inquiries that it can reply and the accuracy of each response it gives increases. A Chabot can converse with the user through self-embedded messaging platforms like Facebook Messenger or through various flagship Assistants such as Google Assistant, Siri or Amazon Alexa. Nowadays, chatbots are being deployed in fields where their use clearly seemed to be obvious. Firms engaging in Financial Planning, Investment Management and Expense Tracking could reap a wide array of benefits when they make use of this technology. They can have a lasting impact on human-driven sec...

Tesla's Cybertruck : Ambitious or Appalling ( In about 200 words )

I'm pretty sure that this post breaks the nearly 2 month-long silence on this blog. CBSE in conjunction with me being in grade 10 has chained me in an ecosystem where school academics takes the cake. I'm also experimenting with a new type of writing style ( trying to be more ... me ) with this post. This post is about Elon Musk's latest addition to his "portfolio of the future", Tesla's  Cybertruck . ( PS. This intro is more of a message, not be counted in the word count, ... that's jarring :/) 23rd November was a rather special day for the Automobile Industry. Tesla has sort of been the pioneer of modern-day electrical and autonomous transport, but something so "out-there" ( Cybertruck ) was never anticipated by both enthusiasts and critics. Here's why: Tesla's Cybertruck is their entry into the Pickup Truck sector of the Automobile Industry, a pretty sizeable chunk of automobiles on the road, especially in the US. Franz vo...