Arpit SinghforAI, the futureai-the-future.hashnode.dev·Nov 17, 2024Feature EngineeringFeature engineering is a critical process in machine learning that involves transforming raw data into a format that enhances the performance of predictive models. This transformation includes selecting, creating, and manipulating features—individual...Discuss7daystreak
Arpit SinghforAI, the futureai-the-future.hashnode.dev·Nov 16, 2024Instance based vs Model based ML.In machine learning, instance-based learning and model-based learning are two fundamental approaches for making predictions. Let's explore and understand the differences between them. Instance-Based Learning Instance-based learning, often referred to...DiscussAI
rohit manthapractical-web-dev.hashnode.dev·Oct 26, 2024My 7-Day Journey with React: An In-Depth Look at Key Concepts, Hooks, and Best PracticesReact has revolutionized how developers build user interfaces by simplifying DOM manipulation and optimizing state management. In this article, I’ll walk you through my day-by-day experience, covering everything from fundamental concepts to complex s...DiscussReact
priyanka chaudharipriyankachaudhari.hashnode.dev·Jul 30, 2024Everyone's path is unique, and sometimes the journey itself can lead to unexpected and rewarding destinations.In Angular, understanding relative and absolute paths is crucial for correctly importing modules and assets. Here's a simple explanation: Relative Path👨🏽🤝👨🏽 A relative path specifies the location of a file or folder relative to the current fil...Discuss·10 likesMagic of Angular✨2Articles1Week
priyanka chaudharipriyankachaudhari.hashnode.dev·Jul 27, 2024Pipes In Angular 🧨|✨What are Angular Pipes? Angular Pipes are a way to transform the format of output data for display. The data can be strings, currency amounts, dates, etc. Pipes are simple functions that accept an input and return a transformed value in a more techni...Discuss·10 likesMagic of Angular✨2Articles1Week
Gagan G Saralayagagang.hashnode.dev·Mar 10, 2024C program to input a matrix from the user and find the row sum and the column sum.This program inputs a matrix from the user and then uses the "i" and "j" value from the for loop to choose the element from the matrix and add them. for(int i=0;i<m;i++) { int csum=0; for(int j=0;j<n;j++) { csum=csum+arr[j][i]; } printf("\nSum of al...Discuss7daystreak
Gagan G Saralayagagang.hashnode.dev·Mar 9, 2024C program to display employee details.Here is a C program to input employee details from the user and display the said employee based on the employee number. #include <stdio.h> // Define a structure for employee details struct Employee { char name[100]; int salary; char addr...DiscussC
Gagan G Saralayagagang.hashnode.dev·Mar 8, 2024Showing String Functions in CThere are many uses of strings in C. There are many useful built in string functions in C. Some are used to find the length of the string and some are used to copy one string to another. #include <stdio.h> #include <string.h> int main() { char str1...Discuss7daystreak
Gagan G Saralayagagang.hashnode.dev·Mar 7, 2024C program to input a matrix and change the diagonal elements to zero.Here is a program to convert the diagonal elements to zero. It cheaks if the element i==j and converts it to zero. And it cheaks if the element i+j+1 == to the number of rows and converts to zero. Here is the code. #include<stdio.h> #include<math.h>...Discuss7daystreak
Gagan G Saralayagagang.hashnode.dev·Mar 6, 2024C program to find the factorial of a number.Here is a program to find the factorial of a number. #include<stdio.h> int fac(int n); int main() { printf("Here is a program to find the factorial of a number using functions\n"); printf("Enter a num to find the factorial:"); int n = 0...Discusscrazyblogger