Tuesday, 3 July 2018

Final Course for Semester 8th

ATTENTION EVERYONE,
                                             THE FINAL COURSE HAS BEEN UPLOADED COMPLETELY.

IAP Final SAMBUCA
STI
D.M FINAL CHIVAS RIGAL

THANKS AND REGARDS
IBRAHIM FARID

Wednesday, 16 May 2018

Assignment # 3

Assignment # 3

Run your Data set into this code and portray your clustering dendogram.

Clustering demo code
Source: Dr Syed M.Zubair Rehman Gillani.

Friday, 4 May 2018

Mids Funda

Asalamalaikum,

                             The hyperlink below contain all lectures before mids.

A little bit of work is left it will be uploaded on these hyperlink mentioned below

STI

Thanks and Regards

Ibrahim Farid.

Monday, 9 April 2018

Agglomerative Clustering Lecture

Attention All

The Agglomerative Clustering Problem has been solved by Touseef International (H)
Click on the Below Hyper Link
Agglomerative Clustering Lecture

Source: Dr Syed Muhammad Zubair Rehman Gillani.

Thanks And Regards

Ibrahim Farid

Tuesday, 27 March 2018

KNN CLASSIFICATION LECTURE

Attention All,

The hyperlink below contains the lec of data Mining KNN CLASSIFICATIon.

KNN CLASSIFICATION LECTURE

Source: Dr Syed Muhammad Zubair Rehman Gillani.

Thanks and Regards

M.Ahad Jahanzeb Bajwa Singh






Tuesday, 20 March 2018

Assignment # 1 and 2 Data Mining

Assignment # 1

Q1) APPLY MAD NORMALIZATION ON HEART DISEASE CLASSIFICATION DATA SETS.
NOTE: DOWNLOAD DATASETS FROM UCI MACHINE LEARNING REPOSITORY.

Q2) WHAT ARE OUTLIERS IN A DATASETS NORMALIZATION. HOW WE AVOID OUTLIERS AND WHICH NORMALIZATION METHOD IS BEST FOR AVOIDING OUTLIERS.

ASSIGNMENT # 2

Q1) IDENTIFY AND USE BUILTIN NORMALIZATION METHODS FOR DETAILS IN MATLAB?

Q2) HOW TO ADD MISSING VALUES IN A DATASETS. ALSO ELABORATE THE METHOD FOR REPLACING MISSING VALUES IN A DATA SETS?

DEADLINE: 03/04/2018.
SOURCE: DR. SYED MUHAMMAD ZUBAIR REHMAN GILLANI.

THANKS AND REGARDS

M.AHAD JAHANZEB BAJWA SINGH





Thursday, 8 March 2018

Sunday, 21 January 2018

DATESHEET FINALS


AOA

THIS IS THE FINALIZED DATE SHEET OF THE FINAL EXAMINATIONS BSCS








THANKS AND REGARDS


Wednesday, 17 January 2018

SRS FORMAT

AOA

Submission of SRS before FINAL EXAMS is pertinent.
AS STATED OSTENSIVELY BY ARSHAD ALI KHAN

THANKS AND REGARDS










THE FOLLOWING BELOW HYPER LINK CONTAINS THE REQUIRED  FORMAT AND DETAILS FOR SRS

REPORT 1
SRS DOC

Saturday, 2 December 2017

Friday, 20 October 2017

// C++ program to print DFS traversal from
// a given vertex in a given graph
#include<iostream>
#include<list>
using namespace std;

// Graph class represents a directed graph
// using adjacency list representation
class Graph
{
int V; // No. of vertices

// Pointer to an array containing
// adjacency lists
list<int> *adj;

// A recursive function used by DFS
void DFSUtil(int v, bool visited[]);
public:
Graph(int V); // Constructor

// function to add an edge to graph
void addEdge(int v, int w);

// DFS traversal of the vertices
// reachable from v
void DFS(int v);
};

Graph::Graph(int V)
{
this->V = V;
adj = new list<int>[V];
}

void Graph::addEdge(int v, int w)
{
adj[v].push_back(w); // Add w to v’s list.
}

void Graph::DFSUtil(int v, bool visited[])
{
// Mark the current node as visited and
// print it
visited[v] = true;
cout << v << " ";

// Recur for all the vertices adjacent
// to this vertex
list<int>::iterator i;
for (i = adj[v].begin(); i != adj[v].end(); ++i)
if (!visited[*i])
DFSUtil(*i, visited);
}

// DFS traversal of the vertices reachable from v.
// It uses recursive DFSUtil()
void Graph::DFS(int v)
{
// Mark all the vertices as not visited
bool *visited = new bool[V];
for (int i = 0; i < V; i++)
visited[i] = false;

// Call the recursive helper function
// to print DFS traversal
DFSUtil(v, visited);
}

int main()
{
// Create a graph given in the above diagram
Graph g(4);
g.addEdge(0, 1);
g.addEdge(0, 2);
g.addEdge(1, 2);
g.addEdge(2, 0);
g.addEdge(2, 3);
g.addEdge(3, 3);

cout << "Following is Depth First Traversal"
" (starting from vertex 2) \n";
g.DFS(2);

return 0;
}

Saturday, 14 October 2017

Wednesday, 7 June 2017

Numerical Computing Notes

Numerical Computing All notes For final papers

Attention All
The course of Numerical for Final Examination is

Question 1: LU factroization
Question 2: sidel
Questiin 3: interpolation
Q 4: Simpson nd trapozidal .. to find exact solution for one eq by both methods
Numerical Computing All notes For final papers

Thanks And Regards
Ahad Bajwa

Saturday, 3 June 2017

ANN ALL LEC's

AOA
The below Mentioned hyperlink contains all lectures of ANN

ALL LECTURES OF ANN

Paper will be conducted from all these topics Don't miss Pseudocodes from After Mid Lectures
Source: Dr Syed Muhammad Zubair Rehman Gillani.

Thanks And Regards
Ahad Bajwa

Sunday, 28 May 2017

Assignment # 4 Entrepreneurship

Aoa
The.below. mentioned Hyper link contains Assignment # 4

Assignment # 4

Thanks And Regards
M. Ahad J. Bajwa.

Saturday, 27 May 2017

SPM ALL NOTES

All Spm Lectures
https://drive.google.com/folderview?id=0Bx3Vz96j5gpDd2hQbmVPX05KcWc

Entrepreneurship all SLIDES


Asalamalaikum
The below mentioned Hyperlink contains all the Slides of Entrepreneurship
A Quiz 'll Be conducted on Monday


Entrepreneurship all Slides

Assignment # 3
Innovative Business Plan

Thanks And Regards

DESIGN and analysis of Algorithms AFTER Mids

Asalamalaikum

A Quiz will be conducted in the approaching class
The below mentioned hyperlink contains all the Lectures After Mids

DESIGN and analysis of Algorithms AFTER Mids

Thanks And Regards