Free Essay

Personal Dairy Managment System

In: Computers and Technology

Submitted By Shivangjoshi
Words 1268
Pages 6
Term paper of programming in C On the topic of personal diary Management system (CAP502):-

SUBMITTED TO: - LOVELY SCHOOL OF COMPUTER SCIENCE

INTRODUCTIONA diary is a record set (originally in handwritten format) with some type entries arranged with date, what has happened over the day or other period. A personal diary may include a person's experiences, which is hiding from others and thoughts or feelings, including comment on current events outside the writer's direct experience. Diaries undertaken for institutional purposes play a role in many aspects of human civilization, including government records. The term diary is some time called personal diaries, normally intended to remain private or to have a limited circulation amongst friends or relative. The word journal may be sometimes used for diary but generally diaries have daily entries, whereas journal-writing can be less frequent.
CODING’s
#include #include #include #include int password(); void addrecord(); void viewrecord(); void editrecord(); void editpassword(); void deleterecord();

struct record { char time[6]; char name[30]; char place[25]; char duration[10]; char note[500]; };

int main() { int ch; printf("\n\n\t***********************************\n"); printf("\t*PASSWORD PROTECTED PERSONAL DIARY*\n"); printf("\t***********************************"); while(1) { printf("\n\n\t\tMAIN MENU:"); printf("\n\n\tADD RECORD\t[1]"); printf("\n\tVIEW RECORD\t[2]"); printf("\n\tEDIT RECORD\t[3]"); printf("\n\tDELETE RECORD\t[4]"); printf("\n\tEDIT PASSWORD\t[5]"); printf("\n\tEXIT\t\t[6]"); printf("\n\n\tENTER YOUR CHOICE:"); scanf("%d",&ch);

switch(ch) {

case 1: addrecord(); break; case 2: viewrecord(); break; case 3: editrecord(); break; case 4: deleterecord( ); break; case 5: editpassword(); break; case 6: printf("\n\n\t\tTHANK YOU FOR USING THE SOFTWARE BY:\n\n KULDEEP SINGH BISTH"); getch(); exit(0);

default: printf("\nYOU ENTERED WRONG CHOICE.."); printf("\nPRESS ANY KEY TO TRY AGAIN");

getch(); break; } system("cls"); } } void addrecord() { FILE *fp ; char another = 'Y',time[10]; struct record e ; char filename[15]; int choice; { system("cls"); printf("\n\n\t\t***************************\n"); printf("\t\t* WELCOME TO THE ADD MENU *"); printf("\n\t\t***************************\n\n"); printf("\n\n\tENTER DATE OF YOUR RECORD:[yyyy-mm-dd]:"); fflush(stdin); gets(filename); fp = fopen (filename, "ab+" ); if ( fp == NULL ) { fp=fopen(filename,"wb+"); if(fp==NULL)

{ printf("\nSYSTEM ERROR..."); printf("\nPRESS ANY KEY TO EXIT"); getch(); return ; } } while ( another == 'Y'|| another=='y' ) { choice=0; fflush(stdin); printf ( "\n\tENTER TIME:[hh:mm]:"); scanf("%s",time); rewind(fp); while(fread(&e,sizeof(e),1,fp)==1) { if(strcmp(e.time,time)==0) { printf("\n\tTHE RECORD ALREADY EXISTS.\n"); choice=1; } } if(choice==0) { strcpy(e.time,time); printf("\tENTER NAME:");

fflush(stdin); gets(e.name); fflush(stdin); printf("\tENTER PLACE:"); gets(e.place); fflush(stdin); printf("\tENTER DURATION:"); gets(e.duration); fflush(stdin); printf("\tNOTE:"); gets(e.note); fwrite ( &e, sizeof ( e ), 1, fp ) ; printf("\nYOUR RECORD IS ADDED...\n"); } printf ( "\n\tADD ANOTHER RECORD...(Y/N) " ) ; fflush ( stdin ) ; another = getchar( ) ; } fclose ( fp ) ; printf("\n\n\tPRESS ANY KEY TO EXIT..."); getch(); } } void viewrecord( ) { FILE *fpte ;

struct record customer ; char time[6],choice,filename[14]; int ch; system("cls"); printf("\n\n\t\t*******************************\n"); printf("\t\t* HERE IS THE VIEWING MENU *"); printf("\n\t\t*******************************\n\n"); choice=password(); if(choice!=0) { return ; } do

{ printf("\n\tENTER THE DATE OF RECORD TO BE VIEWED:[yyyy-mm-dd]:"); fflush(stdin); gets(filename); fpte = fopen ( filename, "rb" ) ; if ( fpte == NULL ) { puts ( "\nTHE RECORD DOES NOT EXIST...\n" ) ; printf("PRESS ANY KEY TO EXIT..."); getch(); return ; }

system("cls"); printf("\n\tHOW WOULD YOU LIKE TO VIEW:\n"); printf("\n\t1.WHOLE RECORD OF THE DAY."); printf("\n\t2.RECORD OF FIX TIME."); printf("\n\t\tENTER YOUR CHOICE:"); scanf("%d",&ch); switch(ch) { case 1: printf("\nTHE WHOLE RECORD FOR %s IS:",filename); while ( fread ( &customer, sizeof ( customer ), 1, fpte ) == 1 )

{ printf("\n"); printf("\nTIME: %s",customer.time); printf("\nMEETING WITH: %s",customer.name); printf("\nMEETING AT: %s",customer.place); printf("\nDURATION: %s",customer.duration); printf("\nNOTE: %s",customer.note); printf("\n"); } break; case 2: fflush(stdin); printf("\nENTER TIME:[hh:mm]:"); gets(time);

while ( fread ( &customer, sizeof ( customer ), 1, fpte ) == 1 ) { if(strcmp(customer.time,time)==0) { printf("\nYOUR RECORD IS:"); printf("\nTIME: %s",customer.time); printf("\nMEETING WITH: %s",customer.name); printf("\nMEETING AT: %s",customer.place); printf("\nDUARATION: %s",customer.duration); printf("\nNOTE: %s",customer.note); } } break;

default: printf("\nYOU TYPED SOMETHING ELSE...\n"); break; } printf("\n\nWOULD YOU LIKE TO CONTINUE VIEWING...(Y/N):"); fflush(stdin); scanf("%c",&choice); } while(choice=='Y'||choice=='y'); fclose ( fpte ) ; return ; } void editrecord()

{ FILE *fpte ; struct record customer ; char time[6],choice,filename[14]; int num,count=0; system("cls"); printf("\n\n\t\t*******************************\n"); printf("\t\t* WELCOME TO THE EDITING MENU *"); printf("\n\t\t*******************************\n\n"); choice=password(); if(choice!=0) { return ; }

do { printf("\n\tENTER THE DATE OF RECORD TO BE EDITED:[yyyy-mm-dd]:"); fflush(stdin); gets(filename); printf("\n\tENTER TIME:[hh:mm]:"); gets(time); fpte = fopen ( filename, "rb+" ) ; if ( fpte == NULL ) { printf( "\nRECORD DOES NOT EXISTS:" ) ;

printf("\nPRESS ANY KEY TO GO BACK"); getch(); return; } while ( fread ( &customer, sizeof ( customer ), 1, fpte ) == 1 ) { if(strcmp(customer.time,time)==0) { printf("\nYOUR OLD RECORD WAS AS:"); printf("\nTIME: %s",customer.time); printf("\nMEETING WITH: %s",customer.name); printf("\nMEETING AT: %s",customer.place); printf("\nDURATION: %s",customer.duration); printf("\nNOTE: %s",customer.note); printf("\n\n\t\tWHAT WOULD YOU LIKE TO EDIT.."); printf("\n1.TIME."); printf("\n2.MEETING PERSON."); printf("\n3.MEETING PLACE."); printf("\n4.DURATION."); printf("\n5.NOTE."); printf("\n6.WHOLE RECORD."); printf("\n7.GO BACK TO MAIN MENU."); do { printf("\n\tENTER YOUR CHOICE:"); fflush(stdin);

scanf("%d",&num); fflush(stdin); switch(num) { case 1: printf("\nENTER THE NEW DATA:"); printf("\nNEW TIME:[hh:mm]:"); gets(customer.time); break; case 2: printf("\nENTER THE NEW DATA:"); printf("\nNEW MEETING PERSON:"); gets(customer.name); break; case 3: printf("\nENTER THE NEW DATA:"); printf("\nNEW MEETING PLACE:"); gets(customer.place); break; case 4: printf("\nENTER THE NEW DATA:"); printf("\nDURATION:"); gets(customer.duration); break; case 5: printf("ENTER THE NEW DATA:"); printf("\nNOTE:"); gets(customer.note); break; case 6: printf("\nENTER THE NEW DATA:"); printf("\nNEW TIME:[hh:mm]:");

gets(customer.time); printf("\nNEW MEETING PERSON:"); gets(customer.name); printf("\nNEW MEETING PLACE:"); gets(customer.place); printf("\nDURATION:"); gets(customer.duration); printf("\nNOTE:"); gets(customer.note); break; case 7: printf("\nPRESS ANY KEY TO GO BACK...\n"); break;

default: printf("\nYOU TYPED SOMETHING ELSE...TRY AGAIN\n"); break; } } while(num8); fseek(fpte,-sizeof(customer),SEEK_CUR); fwrite(&customer,sizeof(customer),1,fpte); fseek(fpte,-sizeof(customer),SEEK_CUR); fread(&customer,sizeof(customer),1,fpte); choice=5; break; } }

if(choice==5) {

system("cls"); printf("\n\t\tEDITING COMPLETED...\n"); printf("--------------------\n"); printf("THE NEW RECORD IS:\n"); printf("--------------------\n"); printf("\nTIME: %s",customer.time); printf("\nMEETING WITH: %s",customer.name); printf("\nMEETING AT: %s",customer.place); printf("\nDURATION: %s",customer.duration); printf("\nNOTE: %s",customer.note); fclose(fpte); printf("\n\n\tWOULD YOU LIKE TO EDIT ANOTHER RECORD.(Y/N)"); scanf("%c",&choice); count++; } else { printf("\nTHE RECORD DOES NOT EXIST::\n"); printf("\nWOULD YOU LIKE TO TRY AGAIN...(Y/N)"); scanf("%c",&choice); } }

while(choice=='Y'||choice=='y'); fclose ( fpte ) ; if(count==1) printf("\n%d FILE IS EDITED...\n",count); else if(count>1) printf("\n%d FILES ARE EDITED..\n",count); else printf("\nNO FILES EDITED...\n"); printf("\tPRESS ENTER TO EXIT EDITING MENU."); getch(); } int password() { char pass[15]={0},check[15]={0},ch; FILE *fpp; int i=0,j; printf("::FOR SECURITY PURPOSE::"); printf("::ONLY THREE TRIALS ARE ALLOWED::"); for(j=0;j

Similar Documents

Premium Essay

Business Project About Danone Company

...going to analyze the Danone Company’s structure. Firstly, we will briefly describe the current situation of the company. Then, will show the corporate governance, namely top managers and boards of directors. This paper consists on analyzing the business structure of Danone, one of the largest yogurt and other dairy products in the world. In the first part of this paper, we study which is the main activity of the company, we identify external and internal environment, main competitors and industry analysis. We also pay attention to the main stakeholders of the company, suppliers and customers. Current situation Danone Company is a global company, which represented in 120 countries all over the world. Also it takes stable position in the market. The Danone plant watches the most noteworthy natural principles: its creation offices utilize the most recent environmentally propelled advances for capacity and transforming of the crude materials; the plant has its own particular cleaning offices, an autonomous heater house, a blaze quenching framework, refrigeration supplies and significantly more. By the end of 2014, the Danone plant has been producing 58 varieties of dairy products of Activia, Rastishka, Danone, Prostokvashino, and Bio Balance brands. Danone's objective is to lessen its carbon foot shaped impression by 30% from 2010 to 2014, as far as power, over the whole esteem chain for which the gathering holds direct obligation (modern destinations, logistics, bundling and...

Words: 3917 - Pages: 16

Premium Essay

Management Information System

...http://www.scribd.com/doc/39376533/The-Performance-Appraisal-System-of-Rahimafrooz Letter of Transmittal Mrs. Kamrun Ahmed Course Coordinator Management Information System Department of Business Administration Southeast University. Subject: Submission of Transmittal Dear Mrs. Kamrun Ahmed With a great respect, we are informing you that we have prepared a project report on “The Information System use in a Superstore”. For the project completion, we have selected the superstore “Agora”.We feel great pleasure for submitting this report to you, which will definitely help us to complete the MBA. During the preparation of this report, we have experienced a lot that will greatly help us in our further studies and carrier life. It has enlightened our practical knowledge about the information system use in the practical world of business, the strategies they follow to maintain the problem in the superstore although the experience we got from here will help us to contribute these techniques in our practical life. We tried our level best to develop a good report. We would like to thank you for giving us such an opportunity to do this report on this topic. Thank you Sincerely yours Name Student ID. Md. Hafizullah 2011110004011 Sayeed 20111100040 Rukhsana Akter Rumi 2011110004015 Umma...

Words: 4222 - Pages: 17

Free Essay

Around the Corner Business Plan

...Around The Corner A. Project Scope Statement We aim to provide consumers in the Buckhead area with a healthy, delicious and convenient breakfast meal. We will give people the ability to eat their breakfast foods. This project will span over one year. This one-year will include planning, assessing, gathering materials, execution, control and evaluation, and finally, modification. Our coffee shop Around the Corner already has a standing presence in Buckhead as a popular go-to spot for customers to get satisfy their caffeine cravings and socialize. We want to integrate a breakfast menu into already established coffee shop to attract more customers and expand our business. B. Time, Cost, Performance Trade-off Assessment 1. Cost Estimates Direct costs: Materials, Labor & Equipment a) Increased store hours (morning hours) = additional labor Payroll: Two Shifts: 7-3 & 3-11. Total 8 employees:  4 cooks @ $12.00/hr. and 4 waitresses @ $9.00/hr. = $3360/week b)    Cost of new kitchen equipment: 1)    Griddle- $700 2)    Toaster Ovens: $500 3)    Bread Steamer: $800 4)    Cook Top: $800 5)    Cold Well: $2000 6)    Panini Grill: $300 7)    Waffle Maker: $500 8)    Small wares: $700 c) Weekly Breakfast Food Costs: $2,100 Indirect Costs: Advertising, Cleaning supplies, Utilities, Office equipment a)    Advertising expense to promote breakfast - (Paper menu’s, weekly ads in local...

Words: 3084 - Pages: 13

Premium Essay

Indian Banking Sector

...Table Of Content TOPICS | REMARK | Acknowledgement | | Objective | | Executive Summary | | Introduction | | ICICI Bank | | Yes Bank | | HSBC | | SBI Bank | | HRIS | | ICT | | Role of Banks in India | | Recommendations | | Conclusion | | Bibliography | | Objective: The objective of this report is to study the banking sector in the Indian Economy on a global perspective. In this we have tried to study the different aspects of the banks. Here in we have considered 4 banks, namely SBI, ICICI, HSBC, Yes Bank. Research Methodology: The research methodology that we adopted was a dual one:- Primary Research Under Primary research we visited the banks, collected data directly from the respected persons and analysed it. Secondary Research Under Secondary Research we took information from the Internet, Books. INTRODUCTION Banking in India originated in the last decades of the 18th century. The first banks were The General Bank of India, which started in 1786, and Bank of Hindustan, which started in 1790; both are now defunct. The oldest bank in existence in India is the State Bank of India, which originated in the Bank of Calcutta in June 1806, which almost immediately became the Bank of Bengal. This was one of the three presidency banks, the other two being the Bank of ombay and the Bank of Madras, all three of which were established under charters from the British East ndia Company. For many years the Presidency banks acted...

Words: 18580 - Pages: 75

Free Essay

Godrej

...Evolution of a Family Business - Godrej Group Case Study Submitted by (Section C- Group 4): Abhishek Kumar(PGP11/129) Balaji Manohar(PGP11/140) Karthik Kumar(PGP11/151) Prashant Gangwal (PGP11/162) Santosh(PGP11/173) Supriya(PGP11/184) Group Assignment – Organizational Behavior II – IIMK Introduction ........................................................................................................................................................................ 4 Executive Summary ......................................................................................................................................................... 5 Overview of the Godrej Group ................................................................................................................................... 7 Organizational Structure .............................................................................................................................................. 7 Godrej Group Companies ........................................................................................................................................ 8 Competition .................................................................................................................................................................... 9 Family Business Model .......................................................................................................................................... 10 Key Success...

Words: 8874 - Pages: 36

Free Essay

Scm Project

...INDIAN SCHOOL OF BUSINESS MANAGEMENT & ADMINISTRATION PROJECT REPORT On A FRAMEWORK OF “SUPPLY CHAIN MANAGEMENT” Submitted for the Partial fulfillment towards the award of the degree in MASTER OF BUSINESS ADMINISTRATION Submitted By Under the Guidance of SHARATH HS Roll Number: Session – 2013-14 PREFACE This report has been written in response to a comprehensive study, conducted on the “SUPPLY CHAIN MANAGEMENT” of “HINDALCO INDUSTRIES LIMITED”. The report mentions and evaluates the various aspects, pertaining to the distribution channel of the company. ACKNOWLEDGEMENT At the onset I must bow down in reverence to the almighty that blessed us with the understanding & prevalence that is needed in this kind of project report. With great pleasure I express my heartiest thanks to Dr. Diwakar Shetty without whose unrelated support and guidance, this project would just not have been possible. I am very thankful for his invaluable guidance, support, and affable & friendly nature. He/She guided me at each and every stage of project. I am equally indebted to my friends who always inspired and motivated me to do something better through...

Words: 10328 - Pages: 42

Premium Essay

Project Management

...Project Management Project Management Assembled by Carter McNamara, MBA, PhD | Applies to nonprofits and for-profits unless noted Leaders Circles peer-training/coaching groups (nonprofits) | Authenticity Circles peertraining/coaching (for-profits) First-timers | Library home page | Library index of topics | Contact us Project management is a carefully planned and organized effort to accomplish a specific (and usually) one-time effort, for example, construct a building or implement a new computer system. Project management includes developing a project plan, which includes defining project goals and objectives, specifying tasks or how goals will be achieved, what resources are need, and associating budgets and timelines for completion. It also includes implementing the project plan, along with careful controls to stay on the "critical path", that is, to ensure the plan is being managed according to plan. Project management usually follows major phases (with various titles for these phases), including feasibility study, project planning, implementation, evaluation and support/maintenance. (Program planning is usually of a broader scope than project planning, but not always.) Categories of information include Overviews of Project Management Useful Skills -- Team Building and Group Leadership General Resources Related Library Links (including many other types of planning) On-Line Discussion Groups Various Perspectives What is Project Management? Overview...

Words: 46068 - Pages: 185

Free Essay

International Business

...This text was adapted by The Saylor Foundation under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License without attribution as requested by the work’s original creator or licensee. Organization The overarching logic of the book is intuitive—organized around answers to the what, where, why, and how of international business. WHAT? Section one introduces what is international business and who has an interest in it. Students will sift through the globalization debate and understanding the impact of ethics on global businesses. Additionally, students will explore the evolution of international trade from past to present, with a focus on how firms and professionals can better understand today’s complex global business arena by understanding the impact of political and legal factors. The section concludes with a chapter on understanding how cultures are defined and the impact on business interactions and practices with tangible tips for negotiating across cultures. WHERE? Section two develops student knowledge about key facets of the global business environment and the key elements of trade and cooperation between nations and global organizations. Today, with increasing numbers of companies of all sizes operating internationally, no business or country can remain an island. Rather, the interconnections between countries, businesses, and institutions are inextricable. Even how we define the world is changing. No longer classified into simple and neat...

Words: 239764 - Pages: 960

Free Essay

Positioning the Battle for Your Mind

...redirecting... | |cover |next page > | | | | | | | | | | | | | | | | | | | | ...

Words: 30800 - Pages: 124

Premium Essay

Fundamental of Strategy

...gerry JoHnson KeVan sCHoles rICHard WHIttIngton Fundamentals oF strategy ACCESS CODE INSIDE unlock valuable online learning resources Once opened this pack cannot be returned for a refund Welcome to FUNDAMENTALS OF STRATEGY Strategy is a fascinating subject. It’s about the overall direction of all kinds of organisations, from multinationals to entrepreneurial start-ups, from charities to government agencies, and many more. Strategy raises the big questions about these organisations – how they grow, how they innovate and how they change. As a manager of today or of tomorrow, you will be involved in influencing, implementing or communicating these strategies. Our aim in writing Fundamentals of Strategy is to give you a clear understanding of the fundamental issues and techniques of strategy, and to help you get a great final result in your course. Here’s how you might make the most of the text: ● Focus your time and attention on the fundamental areas of strategy in just 10 carefully selected chapters. Read the illustrations and the case examples to clarify your understanding of how the concepts of strategy translate into an easily recognisable, real-world context. Follow up on the recommended readings at the end of each chapter. They’re specially selected as accessible and valuable sources that will enhance your learning and give you an extra edge in your course work. KEY CONCEPT AUDIO SUMMARY ● ● Also, look out for the Key Concepts and Audio Summary icons...

Words: 129967 - Pages: 520

Free Essay

Gati Financial Statement Analysis

...IT TAKES A LEADER TO TAKE YOU PLACES. A n n u A l r e p o r t 2 0 1 2 2 0 1 3 Growth is… movinG from strenGth to strenGth Flamingos, known for their undeniable beauty, are also recognised as a species that stays strong by sticking together, no matter how trying the circumstances are. But for a flock to be strong, it needs an equally resilient leader to take them in the right direction. Just like Gati, the leader of the logistics industry in India. Gati Limited is India’s leader in providing Express Distribution services, Supply Chain Solutions, Cold Chain Transportation Solutions, Warehousing, International Freight Forwarding, Custom Clearance and e-Commerce Solutions. Founded in 1989 as a cargo management company, Gati pioneered Express Distribution Services in India. With a track record of 24 years, Gati is one of India’s most coveted companies, employing 3500 people, and serving over 5000 customers – including the top 10 brands in the Automotive, Healthcare, Engineering and Consumer Durables industry. Gati has a strong market presence in the Asia Pacific region and SAARC countries, with offices in China, Singapore, Hong Kong, Thailand and Nepal, and has plans to foray into other markets. In a Company where every employee demonstrates dedication and commitment to succeed, its little wonder that Gati is the leader, taking the industry places. values are… a force to be reckoned with Flamingos, as is ingrained in their DNAs for centuries, instinctively have values that...

Words: 43055 - Pages: 173

Premium Essay

Palm Oil Sector

...11 March 2011 Food Producers Palm Oil – Extracting Value Rachel Galvez +44 20 7444 0679 rachel.galvez@religarecm.com Palm Tree Nursery Palm Oil Sector – Extracting Value We launch coverage on the London listed Palm Oil sector with a positive view as we believe the industry will continue to grow and current production will struggle to meet global demand. In our view, companies (such as the ones under our coverage) that have; agricultural land rights in equatorial regions (where oil palms thrive), industry expertise, experienced management teams, and access to capital, have defensible competitive advantages and are likely to experience earnings growth and margin expansion going forward. New Britain Palm Oil (NBPO LN, BUY, 1,197p price target, 23% upside) NBPO produces sustainable and traceable Palm Oil in Papua New Guinea (PNG), which it sells to European markets. We believe the company’s competitive advantages, (the traceability and sustainability of its oil, above industry average yields, land and other assets, management team and industry relationships) will enable it to increase sales, expand margins and maintain a market leading position going forward. Asian Plantations (PALM LN, BUY, 345p price target, 29% upside) Source: MP Evans Palm Tree Plantation Asian Plantations is involved in the acquisition and development of Palm Oil plantation land in Sarawak, Malaysia. We believe the company will be able to execute on its strategy (acquiring undeveloped land...

Words: 26936 - Pages: 108

Free Essay

Gd-Pi

...Hundreds(of(real(personal(accounts(of Group'Discussions'&'Personal'Interviews during(MBA(admissions(to(India’s(best(B9schools Written'by Compiled'by Loads'of'MBA'Aspirants The'PaGaLGuY'MadCapz'Group PaGaLGuY.com Antholo gy Hundreds of real personal accounts of Group Discussions and Personal Interviews during MBA admissions to India’s best business schools. In this edition: The IIMs at Ahmedabad, Bangalore, Calcutta, Lucknow, Indore & Kozhikode. Written by Loads of MBA aspirants Compiled by The PaGaLGuY MadCapz Team PaGaLGuY GD-PI Anthology Copyright © 2011, PaGaLGuY.com All text and content in this document is solely owned by PaGaLGuY.com. Reproduction without permission in any form or means is illegal. Special copy prepared exclusively for mustafa rokerya Get your own Free personalized copy (with your name on it) of this book from http://www.pagalguy.com/books/ What this book is about What is a real IIM interview like? What kind of questions do they ask and what judgments do applicants have to make while answering them? Since 2003, those with real Group Discussion and Personal Interview calls from India’s top bschools have been posting entire and detailed transcripts of their admission interviews immediately after they happen, so that others slotted for later interviews can learn what GDPI is going to be like this year. This book is a collection of dozens of handpicked GDPI experiences from the country’s top bschools during the admission...

Words: 178933 - Pages: 716