Chaitu2112's picture
Add ICFAI Digital MBA Assistant application with React frontend
fbfb13b
// src/data/mbaData.js
// Courses to show first (MBA-only)
// src/data/mbaData.js
// 1. MBA Programs shown on MAIN MENU
export const mbaPrograms = [
{ id: "mba-online", name: "MBA Online" },
{ id: "mba-executive", name: "Executive MBA" },
{ id: "mba-regular", name: "Regular MBA" },
];
// 2. Semesters and Courses
// 2. Semesters and Courses
export const mbaSemesters = [
{
id: "sem1",
name: "Semester I",
courses: [
{ id: "accounting-managers", name: "Accounting for Managers" },
{ id: "managerial-economics", name: "Managerial Economics" },
{ id: "financial-mgmt-1", name: "Financial Management - I" },
{ id: "organizational-behaviour", name: "Organizational Behaviour" },
{ id: "business-analytics-1", name: "Business Analytics - I" },
{ id: "marketing-mgmt-1", name: "Marketing Management - I" },
// 🔥 ITM moved to Semester I
{ id: "itm", name: "Information Technology for Managers (ITM)" },
{ id: "personal-effectiveness-ws", name: "Personal Effectiveness Workshop" },
],
},
{
id: "sem2",
name: "Semester II",
courses: [
{ id: "macro-business-env", name: "Macroeconomics & Business Environment" },
{ id: "financial-mgmt-2", name: "Financial Management - II" },
{ id: "hrm", name: "Human Resource Management" },
{ id: "marketing-mgmt-2", name: "Marketing Management - II" },
{ id: "operations-mgmt", name: "Operations Management" },
{ id: "business-analytics-2", name: "Business Analytics - II" },
{ id: "emerging-tech-business", name: "Emerging Technologies in Business" },
],
},
{
id: "sem3",
name: "Semester III",
courses: [
{ id: "business-strategy", name: "Business Strategy" },
{ id: "business-process-integration", name: "Business Process Integration" },
{ id: "management-information-systems", name: "Management Information Systems" },
{ id: "business-communication", name: "Business Communication" },
// (❌ ITM removed from here)
{ id: "electives-3", name: "Electives (Semester III)" },
],
},
{
id: "sem4",
name: "Semester IV",
courses: [
{ id: "business-ethics", name: "Business Ethics and Corporate Governance" },
{ id: "management-control-systems", name: "Management Control Systems" },
{ id: "legal-environment", name: "Legal Environment of Business" },
{ id: "syndicated-learning", name: "Syndicated Learning Program" },
{ id: "electives-4", name: "Electives (Semester IV)" },
],
},
];
// 3. ITM FAQs – used when user selects ITM course
export const mbaFaqs = [
{
question:
"During which generation of computers were the Internet and the World Wide Web developed?",
answer:
"The Internet and the World Wide Web were developed during the fourth generation of computers (around 1971–1991). Fourth generation computers are smaller and more powerful than earlier generations and have the ability to form networks, which made the modern Internet possible.",
},
{
question: "What are the main characteristics of fifth generation computers?",
answer:
"Fifth generation computers are based on artificial intelligence and support features like voice recognition. They rely on parallel processing and advanced semiconductor technologies, can respond to natural language, and are capable of learning and self-organization.",
},
{
question: "Which component of a computer is responsible for the actual processing of data?",
answer:
'The Central Processing Unit (CPU) performs the actual processing of data, which is why it is often called the “brain” of the computer. It works closely with primary memory, such as RAM, where data and instructions are stored temporarily while processing.',
},
{
question: "What are channels in computer architecture?",
answer:
"In support processor design, channels are specialized microprocessors that control data movement between the CPU and input/output devices. They can handle tasks like I/O operations, memory management, arithmetic operations, multimedia processing, and telecommunication so that the main CPU is free for core processing.",
},
{
question: "Speedometers in vehicles use which category of computers?",
answer:
"Speedometers typically use analog computers. These work with changing physical quantities such as speed, temperature, and pressure, and they continuously process real-time data to update the displayed values.",
},
{
question:
"Which type of computers is appropriate for use in artificial intelligence applications?",
answer:
"Hybrid computers are suitable for artificial intelligence applications. They combine features of both analog and digital computers. Analog signals are converted to numbers and back using analog-to-digital and digital-to-analog converters, allowing the system to handle real-world signals while still doing precise digital processing.",
},
{
question:
"What technology is widely used in banks for processing cheques and demand drafts?",
answer:
"Banks make extensive use of Magnetic Ink Character Recognition (MICR) systems to process cheques and demand drafts efficiently. MICR is one of the earlier but still widely used scanning technologies in banking.",
},
{
question: "How do laser printers work and what are their advantages?",
answer:
"Laser printers work in a way similar to photocopy machines. A laser beam creates an electrostatic image on a rotating drum, which attracts toner particles. The toner is then transferred to paper and fused using heat. Laser printers are faster than many other printers and produce high-quality printouts, making them suitable for business environments.",
},
{
question: "Which optical disks can store large amounts of data?",
answer:
"Among commonly used optical disks, DVD-ROMs can store a large amount of data. Newer formats like Blu-ray discs and HD-DVDs offer even greater storage capacity, which is useful for high-definition video and large data sets.",
},
];