Posts

DBMS

 https://docs.google.com/spreadsheets/d/1pwujzrd3LeVNe3XLTFjhkRULSw_IwnIkQhCOtblw_Fk/edit?usp=sharing Drive link : DBMS pdf link 1. Q1 With the help of customer and order database, implement all types of  joins. create database vaishnavi; show databases; use vaishnavi; create table customer(cid int primary key,cname varchar(20) not null,mono double not null); show tables; insert into customer values (1,"akku ban",56767),(2,"vaishu hgdg",732383),(3,"pallun frer",675463); select * from customer; create table oorder(oid int primary key,odate int not null,oammount int not null,cid int not null); show tables; insert into oorder values (1,2019-05-05,55,1),(2,2019-05-06,56,2),(3,2019-05-07,78,1); select * from oorder; select * from customer JOIN oorder ON customer.cid=oorder.cid; select customer.cid,cname,odate from customer JOIN oorder ON customer.cid=oorder.cid; select * from customer LEFT JOIN oorder ON customer.cid=oorder.cid; select * from customer RIGHT JOI...

IOT WSN

Image
 IOT IOT MATERIAL experiment no.5 interfacing IR sensor with arduino and buzzer block dig and discription Block dig: code int irSensor = 12 ; int buzzer = 7 ; void setup () {   Serial . begin ( 9600 ) ;   pinMode ( irSensor, INPUT ) ;   pinMode ( buzzer, OUTPUT ) ; } void loop () {   int value = digitalRead ( irSensor ) ;   Serial . println ( "" ) ;   Serial . print ( "Sensor Value = " ) ;   Serial . print ( value ) ;     if ( value == 0 )   {     digitalWrite ( buzzer, HIGH ) ;   }   else   {     digitalWrite ( buzzer, LOW ) ;   }   delay ( 50 ) ; } Experiment no : 6 interfacing 16*2 lcd with arduino board for display message or informtion block dig : Code: //YWROBOT //Compatible with the Arduino IDE 1.0 //Library version:1.1 #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27,20,4);  // set the LCD address to 0x27 for a 16 chars and 2 line display void setup() { ...

CNES

  CNES experiments

"From Farm to Table: Exploring the True Value of Organic Produce"

Image
In today's fast-paced world, where convenience often takes precedence over quality, it's important to pause and reflect on the true value of the food we consume. Organic produce has gained significant popularity in recent years, with more people seeking healthier and more sustainable alternatives to conventionally grown fruits and vegetables. In this article, we will delve into the journey of organic produce from farm to table, highlighting the benefits and exploring why it has become a preferred choice for many individuals and families. Value of Organic Produce What Does Organic Produce Mean? Organic produce refers to fruits, vegetables, and other agricultural products that are grown and processed without the use of synthetic pesticides, chemical fertilizers, genetically modified organisms (GMOs), or irradiation. Instead, organic farming relies on natural methods that promote soil fertility, biodiversity, and ecological balance. The Importance of Soil Health One of the fun...

10 Simple Tips to Boost Your Productivity

Image
  In today's fast-paced world, productivity is key to achieving success and staying ahead of the competition. But with so many distractions and demands on our time, it can be challenging to stay focused and productive. Here are ten simple tips to help you boost your productivity and achieve your goals: Set Clear Goals: Before you begin any task, take a few minutes to clarify your goals and define what success looks like. This will help you stay focused and avoid getting sidetracked by irrelevant tasks. Prioritize Your Tasks: Make a to-do list and prioritize your tasks based on their importance and urgency. This will help you stay on track and ensure that you're focusing your time and energy on the most important tasks. Use Time Blocks: Divide your day into time blocks and assign specific tasks to each block. This will help you stay organized and focused, and ensure that you're making progress on your goals. Avoid Multitasking: While it may seem like multitasking is an effic...