Micro

Analytical techniques are methods used to identify, quantify, and understand the chemical composition and structure of substances. These techniques are broadly classified into qualitative (what is present) and quantitative (how much is present) methods. Common analytical techniques include:

1. Gravimetric Analysis

Involves measuring the mass of a substance to determine the amount of analyte.

Titrimetric (Volumetric) Analysis

Based on measuring the volume of a standard solution required to react...

See on Wikiteka »

DSA day-4

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <math.h>

#define max 100

// stack for characters (used in infix to postfix)
typedef struct {
    char data[max][max];
    int top;
} stackchar;

// stack for integers (used in postfix evaluation)
typedef struct {
    int data[max];
    int top;
} stackint;

// function declarations
int precedence(char op);
int isoperator(char *token);
void infixtopostfix(char *infix, char postfix[][max], int...

See on Student Notes »

chem test

QUESTION TYPE IDENTIFICATION

If the question... Then it's a...
Asks if a salt (like NaClO) is acidic, basic, or neutral Conjugate acid-base salt classification
Involves a weak acid concentration and asks for pH Weak acid equilibrium problem (ICE table + Ka)
Involves a salt of a weak acid (like NaC₆H₅CO₂) and asks for pH Basic salt hydrolysis problem (conjugate base + Kb)

🧪 CONCEPTUAL TOPICS

1. Acid-Base Properties of Salts

  • Strong acid + strong base → neutral salt

...

See on Student Notes »

asfadfasfddf

🔧 1. Software Maintenance & Evolution

Q1: Explain the four types of software maintenance with examples.
There are four primary types of software maintenance: Corrective, Adaptive, Perfective, and Preventive. Corrective maintenance focuses on fixing errors or bugs in the software, such as patching a login failure. Adaptive maintenance involves updating the software to accommodate changes in the environment, like upgrading compatibility for a new operating system. Perfective maintenance enhances...

See on Student Notes »

ttttttttt

#complete crud operation in sql server 

*Create sql server

CREATE DATABASE CrudDB;            GO            USE CrudDB;            GO

CREATE TABLE Students (           Id INT PRIMARY KEY IDENTITY(1,1),

Name NVARCHAR(100),           Age INT,              Email NVARCHAR(100)           );

using System;
using System.Data;
using System.Data.SqlClient;

class Program
{
    static string connectionString = "Server=localhost;Database=CrudDB;Trusted_Connection=True;...

See on Student Notes »

daffasdf

22

1. Explain the concept of Object-Oriented Programming (OOP) in Java.

Java is a fully object-oriented programming language that follows the core principles of Object-Oriented Programming (OOP): encapsulation, inheritance, polymorphism, and abstraction. In Java, everything is treated as an object, which makes it easy to model real-world scenarios. Encapsulation is achieved using access modifiers and getter/setter methods, ensuring that data is protected from unauthorized access. Inheritance allows...

See on Student Notes »

neeet

#Single Inheritance

using System;      class Vehicle     {
public void Start()     {
Console.WriteLine("Vehicle has started.");     }    }

class Car : Vehicle   {         public void Drive()    {
Console.WriteLine("Car is driving.");     }    }

class Program   {       static void Main(string[] args)     {
Car myCar = new Car();        myCar.Start();     myCar.Drive();      }     }

#Multilevel Inheritance

using System;      class Animal    {     

...

See on Student Notes »

AI/ML-Day1

🧠 Day 1 Summary – Python Basics for AI/ML

✅ Output Statements

  • print() – displays output.

  • end=" " – prevents new line after print.

  • sep="," – separates items with a character.

✅ Input & Type Casting

  • input() always returns a string.

  • Add strings = concatenation ("5" + "10" = "510").

  • Use int() for number input:
    num = int(input("Enter a number: "))

✅ Variables & Data Types

  • int, float, str, bool are common types.

  • Use type(variable) to check the type.

...

See on Wikiteka »

Xyz a

What is a Security Mechanism?

A security mechanism is a method, tool, or procedure used to protect systems, networks, software, and data from unauthorized access, damage, or theft. It enforces security policies and ensures confidentiality, integrity, and availability (often called the CIA triad) of information.
Common Types of Security Mechanisms:
1. Authentication
Verifies the identity of a user or system.
Examples: Passwords, biometric scans, two-factor authentication (2FA).
2. Authorization
Determines

...

See on Student Notes »