Posts

Gredient_Flip_Profile_Card

Image
CSZONE  Gredient_Flip_Profile_Card index.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>MissionEd | Team</title> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> </head> <body> <center> <div class="container-fluid"> <br><br><br> <h1 style="color: white;">Profile Flip Card</h1> <!------------------------Row---------------------------------------> <ul class="team"> <li> <!-------------Flip Card----------------->

Linked List | Data Structure With C

Image
CSZONE Linked List | Data Structure With C #include <stdio.h> #include <stdlib.h> // A Single Linked List Node struct Node{ int data; struct Node* next; }; void Display_Linked_List(struct Node* list){ while(list!=NULL){ printf("%d->",list->data ); list = list->next; } // For Avoiding last -> while printing in last printf("\b\b"); } int main(){ //Creating Nodes struct Node* head = NULL; struct Node* second = NULL; struct Node* third = NULL; //Allocate three Nodes head = (struct Node*)malloc(sizeof(struct Node)); second = (struct Node*)malloc(sizeof(struct Node)); third = (struct Node*)malloc(sizeof(struct Node)); //Assigning The Values head->data = 1; head->next = second; second->data = 2; second->next = third; third->data = 3; third->next = NULL; Display_Linked_List(head); return 0; }

Change Emoji Reacttion using Javascript

Image
CSZONE Change Emoji Reacttion using Javascript <!DOCTYPE html> <html> <head> <title>Emoji</title> <style> body{ background-color: black; } button{ width: 100px; height: 43px; color: green; border-radius: 10px; } button:hover{ background-color: yellow; } </style> </head> <body> <center> <p id="demo" style="font-size: 100px;">&#128528;</p> <button onclick="document.getElementById('demo').innerHTML='&#128528;'">Sad</button> <button onclick="document.getElementById('demo').innerHTML='&#128512;'">Smile</button> </center> </body> </html> Source Code : Download

Lab_Ass_Python

Image
Q.1 What is python? Ans: Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Created by Guido van Rossum and first released in 1991, Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Q.2 Explain some key features of python.? Ans: Some key features of python are as follows: 1) Easy to Learn and Use. 2) More expressive means that it is more understandable and readable. 3) interpreted language means interpreter executes the code line by line, makes debugging easy. 4) Free and Open Source. 5) Object-Oriented Language. 6) Extensible and Large Standard Library. 7) GUI Programming Support and Cross-platform Language. Q.3 Is python keywords are case sensitive or not? Ans: Keywords are the reserved words in Python. In Python, keywords are case sensitive. There are 33 keywords in Python 3.7. This number can vary slightly over the course