Divided attention

VOCABULARY

  • Blanket:


    A heavy cloth to keep you warm in bed.

  • Duvet:

    A big, thick quilt filled with feathers.

  • Fall asleep:

    To start sleeping.

  • Fast asleep:

    Sleeping very deeply.

  • Insomnia:

    The problem of not being able to sleep.

  • Nap:

    A very short sleep during the day.

  • Nightmares:

    Bad or scary dreams.

  • Oversleep:

    To sleep too much and wake up late.

  • Pillow:

    The soft object where you put your head in bed.

  • Sheets:

    Thin pieces of cloth that cover the bed.

  • Sleep:

    To rest your body and mind at night.

  • Sleep like a log:

    To
Read More

Hydroelectric and Nuclear Power Plant Engineering

Classification of Hydroelectric Power Plants

Based on Water Availability

Hydroelectric plants are classified as run-of-river, storage, and pumped-storage plants:

  • Run-of-river plant: It uses the natural flow of a river with little or no water storage.
  • Storage plant: A dam is constructed to store a large quantity of water in a reservoir for continuous power generation.
  • Pumped-storage plant: Water is pumped to an upper reservoir during low-load periods and released to generate power during peak-load periods.
Read More

Imperialism and the Industrial Revolution: Key Concepts

Age of Imperialism and the Industrial Revolution

1. Reading Comprehension

Read the excerpt below and answer the questions.

“By the late nineteenth century, European powers had developed technologies that made large-scale overseas expansion possible in ways it had never been before. Steamships allowed goods and soldiers to cross oceans quickly and reliably. The telegraph let colonial officials communicate with home governments in minutes rather than months. New weapons, such as the repeating rifle

Read More

DBMS Fundamentals and Relational Database Design

DDL vs DML: Definitions and Examples

Q1. Differentiate between DDL and DML Languages with example. [5 Marks]

Answer:

DDL (Data Definition Language) is used to define, create, and modify the structure of database objects such as tables, databases, and schemas. It mainly deals with the structure of the database.

  • Commands: CREATE, ALTER, DROP, TRUNCATE.
  • Example: CREATE TABLE Student(Roll_No INT, Name VARCHAR(20), Age INT);

DML (Data Manipulation Language) is used to insert, modify, delete, and retrieve data

Read More

Essential Science Concepts: Atoms, Tissues, and Physics

1. Journey Inside the Atom

What is an atom?

The smallest basic unit of matter that makes up every element and chemical substance.

What are subatomic particles?

Particles smaller than an atom that form its internal structure. The three main particles are:

  • Electrons
  • Protons
  • Neutrons

Define an electron

A negatively charged subatomic particle found outside the nucleus. Its relative charge is -1, and its mass is negligible (1/1836 of a proton).

Define a proton

A positively charged subatomic particle located inside

Read More

Java Object-Oriented Programming Concepts and Solutions

Core Concepts of Object-Oriented Programming

False. An abstract class cannot be instantiated directly. You cannot create an object of an abstract class using new. You must create an object of a concrete subclass.

False. Java does not allow a class to extend more than one class. However, a class can implement multiple interfaces.

False. Method overloading means having the same method name but different parameter lists. A different return type alone is not enough.

True. The reference type determines which

Read More

Java Object-Oriented Programming Concepts and Best Practices

Java OOP Fundamentals

  • True: If a class contains an abstract method, the class must be declared abstract.
  • True: A class can implement multiple interfaces in Java.
  • True: With a parent reference pointing to a child object, an overridden instance method is selected based on the actual object at runtime.
  • False: A subclass cannot reduce the visibility of an overridden method.
  • True: A final method cannot be overridden by a subclass.

Abstraction and Interfaces

Both interfaces and abstract classes support abstraction.

Read More

It used to define the member functions of a class outside

 15 Demonstrate nesting of member function.

Class


Student { int marks;
void showMarks() { cout
<< "Marks = " << marks << endl;       } public: Void getMarks() { marks = 85; ShowMarks(); // Calling another member function } }; Int main() { Student s; S.GetMarks(); Return 0; }

4 Write a short note on defining member functions.1. Defining the function inside the class 

class Student
{   int age;

public:
    void display()
    {   cout << “Age = ” << age;

Read More

Essential Business Management and Marketing Concepts

Q1. What is the BCG Matrix?

The BCG (Boston Consulting Group) Matrix is a corporate planning tool used to evaluate a firm’s portfolio of business units or product lines based on market growth rate and relative market share.

  • Stars: High market growth, high market share. Require heavy investment to finance rapid growth.
  • Cash Cows: Low market growth, high market share. Require less investment; generate cash used to support other units.
  • Question Marks: High market growth, low market share. Require heavy
Read More

Android App Development and Kotlin Programming Essentials

1. Android Application Design Essentials

  • Core Concept: Creating user interfaces and experiences optimized for mobile devices using XML layouts and Material Design principles.
  • Key Applications: Implementing responsive UI design, managing resources efficiently, and adhering to platform guidelines for usability and accessibility.
  • Example: Designing a weather app interface that adapts seamlessly to different screen sizes and orientations while maintaining intuitive navigation.

2. Anatomy of an Android Application

  • Core
Read More