Skip to main content

test 1

 welcome 1

Comments

Popular posts from this blog

HTML-Unit-1

Unit-I: Introduction to Web Programming Introduction 1.       What is Web Programming? Briefly define web programming as the process of creating dynamic web applications. Differentiate between front-end (what users see and interact with) and back-end (server-side logic, databases) development. 2.       The Role of HTML, CSS, and JavaScript: Introduce these as the core languages of the web.       HTML (HyperText Markup Language): The structure and content of a webpage.       CSS (Cascading Style Sheets): The presentation and styling of a webpage.       JavaScript: The interactivity and dynamic behavior of a webpage. 3.       How the Web Works (Simplified): Briefly explain the client-server model, web browsers, web servers, and URLs. Creating a Website: Planning: Briefly touch upon planning the website's purpose, tar...

DBMS lab record Degree

  SQL EXPERIMENTS:- 1. Aim: The marketing company wishes to computerize its operations by using the following tables. producers:- 1.1. Create Table: `CLIENT_MASTER` and Insert Values CREATE TABLE CLIENT_MASTER (     CLIENT_NO VARCHAR2(6) PRIMARY KEY,     NAME VARCHAR2(20) NOT NULL,     ADDRESS1 VARCHAR2(30),     ADDRESSS VARCHAR2(30),     CITY VARCHAR2(15),     PINCODE VARCHAR2(8),     STATE VARCHAR2(15),     BAL_DUE NUMBER(10,2) ); INSERT INTO CLIENT_MASTER VALUES ('C001', 'Rajesh', 'Street 1', 'Apartment 10', 'Mumbai', '400001', 'Maharashtra', 1500.50); INSERT INTO CLIENT_MASTER VALUES ('C002', 'Amit', 'Sector 9', 'Block A', 'Bangalore', '560001', 'Karnataka', 500.00); INSERT INTO CLIENT_MASTER VALUES ('C003', 'Priya', 'Main Road', 'House 22', 'Chennai', '600001', 'Tamil Nadu', 1200.75...

Computer Operations and Performing - D L Unit-1-1

  unit-1-1  download   unit-1-2  download   unit-1-3  download  unit-1-1 download  DIGITAL LITERACY syllabus :    Computer      A computer is a programmable electronic device that processes data to perform various tasks. It can store, retrieve, and process information and it is capable of executing a wide range of operations based on instructions provided to it. Computers come in various forms, including personal computers, laptops, servers, and embedded systems. 1.        Central Processing Unit (CPU):  Often referred to as the brain of the computer, the CPU performs calculations and executes instructions.   2.        Memory (RAM):  Random Access Memory is used to temporarily store data that the CPU needs to access quickly. It is volatile memory, meaning it loses its contents when the power is turned off.   3.      ...