Posts

#class 11 chemistry ch 1 .

Here are the full notes for Class 11 Chemistry Chapter 1: Some Basic Concepts of Chemistry: 1.1 Importance of Chemistry 1. *Understanding the World*: Chemistry helps us understand the world around us. 2. *Improving Quality of Life*: Chemistry contributes to advancements in various fields, such as medicine, agriculture, and technology. 1.2 Branches of Chemistry 1. *Inorganic Chemistry*: Study of inorganic compounds. 2. *Organic Chemistry*: Study of organic compounds. 3. *Physical Chemistry*: Study of physical principles underlying chemical reactions. 4. *Analytical Chemistry*: Analysis and identification of substances. 1.3 Basic Concepts 1. *Matter*: Anything with mass and occupying space. 2. *Elements*: Substances with only one type of atom. 3. *Compounds*: Substances formed by chemical combination of elements. 4. *Mixtures*: Physical combinations of substances. 1.4 Laws of Chemical Combination 1. *Law of Conservation of Mass*: Matter can't be created or destroyed. 2. *Law of Defin...

Object: To print the table of first 10 numbers.

} #include <stdio.h> #include <conio.h> int main() int table[10][10]; int ij: for (i=0; i<10; i++) { for (j=0; j<10; j++) table[i][j]=(i+1)*(1+1); } Printf("The table of first 10 numbers as follows :........"); for (i=0; i<10; i++) { for (j=0; j<10; j++) { Printf("%\n", table [i][j]); } return 0; }

Object: To print the following

#include <stdio.h> #include <conio.h> main() { int i,j; for (i=0; i<5; i++) { for (j=0; j<=i; j++) { printf("*"); printf("\n"); } } getch(); }

switch LED on/off using touch switch

 void setup() {  Serial.begin(9600);  delay(1000);  Serial.println("ESP32 Touch Test");  pinMode(onboard_led, OUTPUT); ) void loop() {  Serial.println(touchRead(TO)); // get value using TO if(touchRead(TO)<=20) { digitalWrite(onboard_led,HIGH); Serial.println("LED is activated as Touch is detected"); } else {  digitalWrite(onboard_led,LOW); } delay(1000);                     // check for touch value after every 1 second. }

LED blink

 void setup() {  Serial.begin(9600);  pinMode(LED, OUTPUT);  } void loop() { digitalWrite(LED, HIGH); Serial.println("LED_STATUS--> ON"); delay(1000); digitalWrite(LED, LOW); Serial.println("LED_STATUS--> OFF"); delay(1000); }

Ritik Chaudhary

Image

Ritik Chaudhary

Image