Posts

toasmaster speech1

  🟡 CENTER — Opening (Stillness) (Feet planted. Calm.) Have you ever lied… and felt proud about it? (Pause.) Have you ever escaped trouble… and thought, “That was smart.” I have. And I was excellent at it. 🔵 LEFT — Childhood I was five when I attended my first masterclass in strategy. The teacher? My sister. She fell one evening. Not badly. But the performance? Oscar-level. (Quick dramatic slow fall gesture.) She cried. My parents ran in. Chocolate appeared. Rules disappeared. And I stood there… Learning. (Pause.) The next day, I tested the system. I fell. I cried louder. Chocolate arrived. Scientific conclusion: Crying increases chocolate supply by 200 percent. (Pause for laugh.) That day… I didn’t just fall. I evolved. 🔵 SMALL STEP — School In school, the strategy improved. “Dad, we need money for an activity.” There was no activity. Just desire. It worked. Why be honest… when acting wo...

Day1 English

  cant help సహాయం చేయలేను I can't help eating sweets నేను స్వీట్లు తినకుండా ఉండలేకపోతున్నాను I can't help worrying about kids What if  Nearby near home పిల్లల గురించి చింతిస్తూ ఉండలేకపోతున్నాను good for nothing ఏమీ మంచిది కాదు book is పుస్తకం అంటే friends are స్నేహితులు somehow or other ఏదో ఒక విధంగా లేదా మరొక విధంగా Somehow or other we have to convince మనం ఎలాగో ఒప్పించాలి Somehow or other he managed the situation ఏదో ఒక విధంగా లేదా మరొక విధంగా అతను పరిస్థితిని చక్కదిద్దాడు Somehow or other he reached the home safely ఏదో ఒక విధంగా అతను ఇంటికి సురక్షితంగా చేరుకున్నాడు Somehow or other I will pay the money ఏదో ఒక విధంగా లేదా మరొక విధంగా నేను డబ్బు చెల్లిస్తాను near by దగ్గరగా ...

frontend-backend-database

  How it works (step by step) Frontend sends a request GET /api/animals Node.js backend receives the request router.get('/', (req, res) => { ... }); Node.js executes an SQL query SELECT * FROM animals; Database returns data Node.js sends JSON back to frontend Example: Node.js SQL Query (READ) router.get('/animals', (req, res) => {   const sql = 'SELECT * FROM animals';     db.query(sql, (err, results) => {     if (err) {       return res.status(500).json({ error: err.message });     }     res.json(results);   }); }); What’s happening here? Part Meaning router.get() REST API endpoint SELECT * FROM animals SQL query db.query() Node.js sends SQL to MySQL res.json(results) Data return...

npm_1

 Absolutely 👍 Below are viva / exam questions with clear, concise model answers . These are written in exam-safe language , easy to memorize, and strong enough to score full marks. 🔹 Section A: Basic Viva Questions (with Model Answers) 1. What is npm and why is it used in Node.js? Answer: npm (Node Package Manager) is used to install, manage, and share external libraries required for Node.js applications. 2. What does npm init -y do? Answer: It initializes a Node.js project and automatically creates a package.json file with default values. 3. Which file is created when npm init -y is executed? Answer: A package.json file is created. 4. What information is stored in the package.json file? Answer: It stores project metadata such as name, version, scripts, dependencies, and entry file. 5. What is the purpose of the dependencies section in package.json ? Answer: It lists all external packages required for the application to run. 6. Why do we use npm install ? Answer: To download...

Database_1

DATABASE & TABLE CONCEPTS MCQ 1: Purpose of CREATE DATABASE What is the purpose of the following command? CREATE DATABASE IF NOT EXISTS animaldb; A. Creates a new database named animaldb only if it does not already exist B. Deletes the existing database named animaldb ✅ Correct Answer: A MCQ 2: Purpose of USE What does the USE animaldb; command do? A. Deletes the animaldb database B. Selects animaldb as the active database for subsequent queries ✅ Correct Answer: B MCQ 3: Purpose of DROP TABLE IF EXISTS Why is this command used before creating a table? DROP TABLE IF EXISTS animals; A. To remove the table if it already exists and avoid errors B. To permanently lock the table for editing ✅ Correct Answer: A MCQ 4: AUTO_INCREMENT and PRIMARY KEY What is the role of id INT AUTO_INCREMENT PRIMARY KEY? A. Automatically generates a unique identifier for each record B. Allows duplicate values in the id column ✅ Correct Answer: A MCQ 5: NOT NULL Constraint What...