Posts

Showing posts from February, 2025

Virtual Herbal Garden

  Problem Statement ID 1555 Problem Statement Title Create a Virtual Herbal Garden that provides an interactive, educational, and immersive experience to users, showcasing the diverse range of medicinal plants used in AYUSH (Ayurveda, Yoga & Naturopathy, Unani, Siddha, and Homeopathy). Description Background: The AYUSH sector relies heavily on medicinal plants and herbs, which form the backbone of traditional healing practices. However, physical gardens that are not accessible to everyone. A Virtual Herbal Garden will bridge this gap by offering a digital platform where users can explore, learn, and understand the significance of various medicinal plants from the comfort of their homes. Description: Participants are tasked with developing a Virtual Herbal Garden that is engaging, informative, and user-friendly. This virtual garden should include: Interactive 3D Models: Realistic 3D models of medicinal plants that users can rotate, zoom, and explore from different angles. Detail...

C++ PROGRAME USING LINKED LIST

STORE DATA SEE AND ADRESS  #include <iostream> using namespace std; class Node { public:     int data;     Node* next;     Node(int data) {         this->data = data;         this->next =NULL ;      } }; int main() {     Node* node1 = new Node(10);     cout << node1->data << endl;     cout << node1->next << endl;     return 0; } INSERTHEAD HEAD  #include <iostream> using namespace std; class Node { public:     int data;     Node* next;     Node(int data) {         this->data = data;         this->next = nullptr;     } }; void insertathead(Node* &head, int d) {     Node* temp = new Node(d);     temp->next = head;     head = temp; } void print(Node* head) {      Node* temp ...

Week 1 : Assignment 1 nptl

1 = b 2=b 3=c 4=d 5=b 6=c 7=b 8=c 9=a 10=d