Your complete study hub for Communication Skills, Constitution of India, Soft Skills, Universal Human Values & Basic Human Rights — curated by an expert educator.
Click any article to start learning — vocabulary, phrases & practice drills included.
Login with your email to access all study materials for free.
Loading...
Type or paste your chapter-wise MCQs below using the simple format shown. The system will automatically parse them and save to Firestore for students to practice.
Q1. What is communication? A) Exchange of information B) Writing letters only C) Speaking only D) Reading books ANS: A Explanation: Communication is the process of exchanging information... Q2. The 7 Cs include: A) Clarity B) Creativity C) Criticism D) Calculation ANS: A Explanation: Clarity is one of the 7 Cs of effective communication.
✅ Start each question with Q1. Q2. etc | Options as A) B) C) D) | Answer as ANS: A | Explanation optional
Click "View Uploaded MCQs" to load.
Add chapter-wise Q&A flashcards for quick revision before exams. Students tap each question to reveal the answer.
Q: What is communication? A: Communication is the process of exchanging information, ideas and feelings between a sender and receiver. Q: List the 7 Cs of effective communication. A: Clarity, Conciseness, Concreteness, Correctness, Coherence, Completeness, Courtesy.
✅ Each entry starts with Q: on its own line, followed by A: on the next line. Blank line between entries.
Click "View Uploaded Notes" to load.
kulkarnisir.in → Savewww.kulkarnisir.in📍 Firebase Console → Firestore Database → Rules tab → Replace everything with the code below → Click Publish
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// OTPs — anyone can write (for login), only owner can read
match /otps/{email} {
allow read, write: if true;
}
// Students — can read/write own record only
match /students/{userId} {
allow read, write: if request.auth != null
&& request.auth.uid == userId;
}
// MCQ sets — any logged-in student can read
match /mcq_sets/{docId} {
allow read: if request.auth != null;
allow write: if false; // Admin writes via Firebase Console
}
// Quick Revision sets — any logged-in student can read
match /qr_sets/{docId} {
allow read: if request.auth != null;
allow write: if false; // Admin writes via Firebase Console
}
// Materials — any logged-in student can read
match /materials/{docId} {
allow read: if request.auth != null;
allow write: if false; // Admin writes via Firebase Console
}
// Results — any logged-in student can read
match /results/{docId} {
allow read: if request.auth != null;
allow write: if false;
}
}
}
allow read, write: if true on students collection — it exposes all student data publicly.