Skip to main content

Chakra Vyuh Bhedna, the only answer to how to crack group discussions!

 

Chakra Vyuh Bhedna, the only answer to how to crack group discussions!


Chakra Vyuh Bhedna, the only answer to how to crack group discussions!

Because of the pandemic, the placement drive was conducted virtually. And to add to the difficulty level, more than 200 students participated in the drive. The selection process consisted of an online test that included the aptitude and technical questions, which was followed by a group discussion. Both were elimination rounds. The shortlisted students were then called for the final round, the personal interview.

All about cracking group discussions and interviews

My strategy was to be attentive in the pre-placement talks by asking questions to them and even trying to answer their questions. This helped me to boost my self-confidence and made me perform well during the Group Discussion. For cracking group discussion, I practiced a simple and powerful technique called Chakra Vyuh Bhedna. It's a complete weapon to crack any GD. This technique has 4 parts. 

  1. Awareness of the topic
  2. Understanding PESTLE (Political, Economical, Social, Technical, Legal and Environmental) factors related to the topic
  3. Listening to what others are saying 
  4. Making a garland of flowers and beautifully concluding the topic 

Also, for GD, I downloaded and studied more than 50 reports including monthly reports of KPMG, McKinsey, Deloitte, CBRE, etc. related to infrastructure, crisis, and the economy.

For the interview, believe me, mocks and self-preparation helped me a lot. Moreover, self-awareness played a key role in nailing personal interviews apart from learning everything about the profile and the company. Because of this, I not only cleared the interview but even topped the merit list.

Making it into the Expressway company

APCO Infratech is a mid-sized company that recently bagged 8 Expressway projects. It's also known as Expressway company. My dream profile has always been Project Management. And I am lucky enough to fetch the profile of Management Trainee which will be followed by the profile of Assistant Manager in Contracts, Planning and Project Management at APCO Infratech. The team here is really good in management, knowledge, resources, and focus on learning aspects. The senior management has strong character and expertise in the infrastructure field.

Comments

Popular posts from this blog

Write a C program to find number is Abundant number or not

  Write a C program to find the number is an Abundant number or not:- In this program to find a number is an Abundant number or not. A number n is said to be an Abundant Number to follow these condition the sum of its proper di visors is greater than the number itself. And the difference between these two values is called abundance. Ex:-  Abundant number  12 having a proper divisor is 1,2,3,4,6 the sum of these factors is 16 it is greater than 12 so it is an Abundant number. Some other abundant numbers     18, 20, 24, 30, 36, 66, 70, 72, 78, 80, 84, 88, 90, 96, 100, 102, 104, 108, 112, 114, 120.. ALGORITHMS:- Step 1 - Enter the number, to find the Abundant number. Step 2 - Initialize the loop with c=1 to c<=number and follow the following calculation      (i) check if whether the number is divisible with c and c got a result zero.      (ii) now sum=sum+c, add a digit into a sum and store it in the sum. Step 3 . then the...

Data Structure Multiple Choice Questions and Answers

  Data Structure Multiple Choice Questions and Answers Our 1000+ multiple choice questions and answers (MCQs) on "Data Structure - I" (along with 1000+ MCQs on "Data Structure - II (Algorithms)") focus on all areas of Data Structure covering 200+ topics. One can read MCQs on Data Structure - II (Algorithms)                 Array and Array Operations This set of Data Structure Multiple Choice Questions & Answers (MCQs) focuses on “Array and Array Operations”. 1. Which of these best describes an array? a) A data structure that shows a hierarchical behavior b) Container of objects of similar types c) Arrays are immutable once initialised d) Array is not a data structure View Answer Answer: b Explanation: Array contains elements only of the same type. 2. How do you initialize an array in C? a) int arr[3] = (1,2,3); b) int arr(3) = {1,2,3}; c) int arr[3] = {1,2,3}; d) int arr(3) = (1,2,3); View Answer Answer: c Explanation: This is the syntax ...

A simple way to Understand how you get attack from Phishing (Emails, Messaging Apps etc.)

  A simple way to Understand how you get attacks from Phishing (Emails, Messaging Apps etc ) What is Phishing? Phishing is the fraudulent attempt to obtain sensitive information or data, such as usernames, passwords, and credit card details, by disguising oneself as a trustworthy entity in electronic communication such as (Email, SMS, Text messages, Mobile app messages, and social media posts.) So how does phishing attacks work- A malicious link will be sent, once clicked, It begins the process to Steal data, financial card information, login credentials, and also infect your device, phones with malware(Virus) when you download the attached document. Phishing links don’t just come in emails alone. several malicious links that lead to stolen data and infected devices can be found in SMS text messages, Mobile app messages, Social media posts . How I received these compromised messages.- The phishing emails and text may usually look like a message from a company you know or trust. The...