Posts
NeW oNe To YoU
Popular Posts
ML unit-1 Notes
https://drive.google.com/file/d/1obrf_HXRtfAfP8rO4qP9Ztnk47fndgSG/view?usp=sharing The field of Machine Learning (ML) is fundamentally concerned with constructing computer programs that automatically improve their performance at some task through experience. A well-posed learning problem requires identifying three key features: the class of tasks, the measure of performance to be improved, and the source of experience. The document illustrates the design of a learning system through a checkers-playing program, detailing steps like choosing the training experience, the target function (such as an evaluation function $V: B \rightarrow R$), its representation (e.g., a linear function of board features), and a function approximation algorithm like the LMS weight update rule. The design is conceptually divided into a Performance System, Critic, Generalizer, and Experiment Generator. A core topic is Concept Learning , which involves acquiring general concepts from specific, labeled train...
ITE Question Bank
https://drive.google.com/file/d/1HoO2V_eX_TceoZ74mdw0iS_ZQoHJkwHy/view?usp=sharing This blog post provides an overview of the Information Technology Essentials (ITE) question bank, a comprehensive academic resource designed for students. What is this PDF About? This document is a specialised Question Bank for the subject Information Technology Essentials (Subject Code: R22INF3235). Prepared for the 2025-26 academic year by the Department of Computer Science & Information Technology at Sri Indu College of Engineering & Technology, it follows the R22 regulation. The bank is structured around Bloom’s Taxonomy , categorizing questions based on cognitive levels such as Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Topics Covered Inside The PDF is organized into five distinct units, covering the core pillars of modern information technology: Unit I: Web Essentials – Focuses on front-end technologies like HTML, CSS, and JavaScript, as well as backen...
DDB Units:2 Notes
https://drive.google.com/file/d/1uMepNKxfuQb3YtWFlGu4q5mdY9qzeTRZ/view?usp=sharing Query processing in a Distributed Database Management System (D-DBMS) is the process of transforming a high-level user query (like SQL) into an efficient, low-level execution strategy across multiple sites. This complex process is broken down into three main steps: Parsing and Translation, Optimisation, and Evaluation. The objective is to minimise a cost function, typically the total cost or response time, by efficiently managing local processing (CPU and I/O costs) and inter-site communication costs. Query processing is layered, beginning with Query Decomposition to translate the query into relational algebra. Next, Data Localisation maps the algebraic query to a query on physical fragments, using data distribution information. Finally, Global Query Optimisation selects the best execution strategy, considering the ordering of relational algebra operators and communication primitives ...
DM unit 4 notes
https://drive.google.com/file/d/1ktkfEyM6WTEDskh8cLjXqf7uHlRqd57-/view?usp=sharing This document provides an introduction to elementary combinatorics, focusing on fundamental counting principles, permutations, combinations, and theorem applications. The basic rules of counting, the Sum Rule and the Product Rule, are defined and illustrated with examples. Permutations are introduced as arrangements of elements in a sequence, with formulas for both arrangements of distinct objects ($n P_r$) and permutations with repetition. Combinations are defined as unordered selections, and the formula for selecting $r$ elements from $n$ distinct elements ($n C_r$) is provided. The document also covers the Binomial Theorem and the Multinomial Theorem, which generalize binomial expansions to expressions with more than two variables. Finally, the Principle of Inclusion-Exclusion for two and three sets is presented as a method for counting the size of a union of sets. Here are 5 key bullet points of t...