Cn Get link Facebook X Pinterest Email Other Apps - September 22, 2026 https://drive.google.com/drive/folders/1AvnauE7hKqjZu0reyvTreJYoxqRGU3ah Get link Facebook X Pinterest Email Other Apps Comments
BANKING SYSYTEM DATABASE WITH RECORDS - February 11, 2026 Creation of the Database RED COLOUR : DEFALUT COMMAND mysql> create database 05D8; GREEN COLOUR : OUTPUT Query OK, 1 row affected (0.12 sec) useing if the database mysql> use 05D8; Database changed CREATING THE TABLE mysql> CREATE TABLE Bank(Bank_ID varchar(20) primary key,Bank_Name VARCHAR(255),Bank_Address VARCHAR(255),Bank_Phone VARCHAR(15)); Query OK, 0 rows affected (0.58 sec) mysql> CREATE TABLE Branch(Branch_ID varchar(25) PRIMARY KEY,Branch_Name VARCHAR(255),Branch_Address VARCHAR(255),Branch_Phone VARCHAR(15),Bank_ID varchar(25),FOREIGN KEY(Bank_ID)REFERENCES Bank(Bank_id)); Query OK, 0 rows affected (0.80 sec) ad more mysql> CREATE TABLE Customer(Customer_ID varchar(25... Read more
SINGLE LINKED LIST by smd - September 02, 2025 #include <stdio.h> #include <stdlib.h> int count = 0; struct node { int data; struct node *next; } *head = NULL, *newnode, *trav; void create_list() { int value; struct node *temp; newnode = (struct node *)malloc(sizeof(struct node)); printf("Enter the value to be inserted: "); scanf("%d", &value); newnode->data = value; newnode->next = NULL; if (head == NULL) { head = newnode; } else { temp = head; while (temp->next != NULL) temp = temp->next; temp->next = newnode; } count++; } void insert_at_beg... Read more
Traffic lights - October 14, 2025 file name :Traffic program : import java.awt.*; import javax.swing.*; import java.awt.event.*; class Traffic extends JFrame implements ActionListener { JLabel l1, l2, l3; JRadioButton r1, r2, r3; ButtonGroup bg; Traffic() { l1 = new JLabel(" "); l1.setBounds(50, 200, 200, 30); add(l1); l2 = new JLabel(" "); l2.setBounds(50, 240, 200, 30); add(l2); l3 = new JLabel(" "); l3.setBounds(50, 260, 200, 30); add(l3); r1 = new JRadioButton("RED"); r1.setBounds(100, 60, 100, 30); r1.setBackground(Color.RED); r2 = new JRadioButton("YELLOW"); r2.s... Read more
Comments
Post a Comment