DFDeveloper For College Studentintarunjoc.hashnode.dev·2h ago · 6 min readArrays Q1. Write a program in 'C' language that accepts two matrices as input and prints their product Input: Two matrices A and B in two-dimensional arrays Output: Matrix C' which is result of AXB in the fo00
DFDeveloper For College Studentintarunjoc.hashnode.dev·4h ago · 3 min readData Structure & Alogrithm LabWhat is an Array? Array ek aisa data structure hai jisme same data type ke multiple elements ko ek hi naam ke under store kiya jata hai. Example: int a[5]; Iska matlab hai: a → array ka naam int →00
DFDeveloper For College Studentintarunjoc.hashnode.dev·Oct 9, 2024 · 8 min readAndroid Studio Practical Code for StudentsPRACTICAL-1 Create an android application that display the message “Welcome to Graphic Era University MCA” on the screen. <!-- res/layout/activity_main.xml --> <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout ...00
DFDeveloper For College Studentintarunjoc.hashnode.dev·Oct 8, 2024 · 1 min readMachine Learning with PythonMachine Learning is the Field of study that Gives Computers the ability to learn without being Explicitly Programmed. It is the subset of AI, which enables the Machine to Automatically Learn from data, improve performance from past experience and ma...00
DFDeveloper For College Studentintarunjoc.hashnode.dev·Oct 7, 2024 · 9 min readMACHINE LEARNING College ProgramPractical 1:Build a model to classify emails as spam or not spam using a small, labelled dataset Link: https://colab.research.google.com/drive/1jLB6TDtXbHwfnsE1-R9HscxFz8uoRDSJ?usp=sharing import pandas as pd data= { 'email': [ 'Free money!!!!' , '...00