Posts

DWDM 2024 question paper with solution

Image
  Question paper DWDM  2024.    https://www.abesit.in/wp-content/uploads/2024/11/KOE093-DATA-WAREHOUSING-DATA-MINING.pdf Solution DWDM 2024  Solution of DWDM paper 2024 SECTION A – Attempt all questions in brief (2 marks each) a. Define Data Warehousing. A data warehouse is a centralized repository that stores integrated data from multiple sources, enabling analysis, reporting, and decision-making. b. Discuss the Fact Constellation. Fact Constellation is a schema that contains multiple fact tables sharing dimension tables, also known as galaxy schema, suitable for complex databases. c. Explain Distributed DBMS implementation. A Distributed DBMS manages a database distributed across multiple locations, ensuring transparency, consistency, and coordination of data across sites. d. Define Warehousing Software. Warehousing software is a tool or application used to construct, manage, and access a data warehouse for efficient data integration, analysis, and reporting....

B.tech 5th Sem Machin learning lab practical

 Program 1:   Implement and demonstrate the FIND-S algorithm for finding the most specific hypothesis   based on a  given set of training data samples. Read the training data from a .CSV file. import random import csv import pandas as pd att= [['Sunny','Rainy'],               ['Warm','Cold'],               ['Normal','High'],               ['Strong','Weak'],               ['Warm','Cool'],               ['Same','Change']] attribute=len(att) print("attribute length=",attribute) print("\n Most general hypothesis:['?','?','?','?,'?','?']") print("\n Most specific hypothesis:['0','0','0','0','0','0']") a=[] print("\n Given training data set") with open('C:\\Users\pc1\\Desktop\\machine\\ws.csv') as file:     reader=csv.reader(file)     for r in reader:       ...

BCA 3rd year Web Technology(code 304) Web Site development using ASP.NET AND C#

Image
  Web Site development using ASP.NET AND C# UNIT – I Overview of ASP.NET framework, Understanding ASP.NET Controls, Applications, Web servers, installation of IIS. Web forms, web form controls -server controls, client controls, web forms & HTML, Adding controls to a web form ,Buttons, Text Box , Labels, Checkbox, Radio Buttons, List Box, etc. Running a web Application, creating a multiform web project. UNIT- II Form Validation: Client side validation, server Side validation, Validation Controls : Required Field Comparison Range. Calendar control, Ad rotator Control, Internet Explorer Control. State management- View state, Session state, Application state, UNIT- III Architecture of ADO.NET, Connected and Disconnected Database, Create Connection using ADO.NET Object Model, Connection Class, Command Class, DataAdapter Class, Dataset Class. Display data on data bound Controls and Data Grid. Database Accessing on web applications: Data Bind...