kmdskfmsdpf

  1. Objasniti na primjeru marieDB DD?

Data Dictionary (DD) u MariaDB-u je sustav koji pohranjuje meta podatke o bazama podataka, tablicama, kolonama, indeksima, ključevima, ograničenjima i drugim objektima baze podataka. Meta podaci su informacije koje opisuju strukturu i karakteristike podataka u bazi. Data Dictionary omogućuje lakše upravljanje bazom podataka, transparentnost i dosljednost u radu s podacima.

Kao primjer upotrebe možemo iskoristiti SELECT upit:

 SELECT table_name

...

See on Wikiteka »

Sheet

Bubble Sort

import java.util.Scanner;

class program {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter number of elements: ");
        int n = sc.nextInt();
        int arr[] = new int[n];

        System.out.println("Enter " + n + " elements:");
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt(); }

        // The sorting logic
        for (int i = 0; i < n - 1; i+...

See on Student Notes »

Aiml

Computer Security refers to the protection of computer systems and networks from theft, damage, unauthorized access, misuse, or disruption of services. It ensures confidentiality, integrity, and availability of data. The need for security arises because of increasing cyber threats, sensitive data storage (e.g., financial records, medical data), online transactions, and dependence on cloud services. Without security, systems are vulnerable to data breaches, identity theft, and financial losses. Security

...

See on Student Notes »

chemistry

Estimation of Hardness of Water by EDTA Method

B.Tech. Unit-VI-Water Chemistry

Principle:

  • Hardness in water is due to Ca²⁺ and Mg²⁺ ions.

  • It is determined by complexometric titration using EDTA (Ethylenediaminetetraacetic acid).

  • EDTA forms a stable, soluble complex with Ca²⁺ and Mg²⁺ ions.

  • Indicator used: Eriochrome Black-T (EBT).

  • At pH ≈ 10 (buffered with NH₄OH–NH₄Cl buffer), EBT forms a wine-red complex with Ca²⁺/Mg²⁺.

  • During titration, EDTA replaces EBT,

...

See on Student Notes »

Copy cheat

Q.1 (a) Explain the principle of Maximum Social Advantage.

The Principle of Maximum Social Advantage is one of the fundamental principles of public finance, introduced by Prof. Hugh Dalton. It provides guidance to governments on how to use taxation and public expenditure in such a way that social welfare is maximized.

Concept

Public finance involves two main activities:

a. Taxation which imposes a burden on the people.

b. Public Expenditure which provides benefits to society.

The government must...

See on Student Notes »

Q 1 hdusi

Q 10Explain about demineralization of brakish water by Electrodialysis.

Here’s a detailed explanation of Demineralization of Brackish Water by Electrodialysis from your PDF and standard water chemistry concepts:

🌊 Brackish Water

Brackish water contains dissolved salts (less than seawater, more than freshwater).

It tastes salty and is unsuitable for drinking or industrial use.

To make it potable, salts must be removed (desalination)

⚡ Electrodialysis – Principle

Electrodialysis is an electrochemical

...

See on Wikiteka »

asdasd

1. Dodatak za rezime rada osciloskopa
Slobodni režim rada nije mnogo praktičan zato što se u tom slučaju na ekranu umesto
jednog signala dobija veći broj sinusoidalnih delova tog signala, naslaganih jedan preko
drugog, što se može jasno uočiti sa Slike 11.8. Zbog toga se slobodni režim rada vremenske baze vrlo retko primenjuje, a najčešće su u primeni sinhronizovani ili okidni režim rada vremenske baze.


Kod sinhronizovanog režima rada početak nove periode signala vremenske baze se uvek

...

See on Wikiteka »

chemistry

1. Describe the estimation of hardness by EDTA method

Estimation of Hardness of Water by EDTA Method

Principle

  • Hardness of water is due to the presence of Ca²⁺ and Mg²⁺ ions.

  • In the EDTA method, a solution of Ethylenediamine Tetraacetic Acid (EDTA) is used as a titrant.

  • EDTA forms stable, soluble complexes with Ca²⁺ and Mg²⁺ ions.

  • At the end point, all Ca²⁺ and Mg²⁺ ions are complexed, and the indicator shows a color change.

Ca2++EDTA4−  →  [Ca−EDTA]2−Ca^

...

See on Student Notes »

HUGFHGG

Q.What R the key features of Java that make it platform independent?
Key Features of Java 4 Platform Independence
1. Bytecode: Java code is compiled into bytecode, which can run on any platform with a Java Virtual Machine (JVM).
2. Java Virtual Machine (JVM): The JVM interprets & executes bytecode, providing a layer of abstraction between the code & the underlying platform.
3. Write 1ce, Run Anywhere (WORA): Java's platform independence allows developers 2 write code on 1 platform &
...

See on Wikiteka »