Posts

Showing posts with the label Software Engineering

Top Software Houses in Pakistan 2014

Image
Which one is the best Software Company in Pakistan? NetSol Technologies Ovex Technologies TRG Tech System Pvt Ltd Elixir Tech Ibds Tera Data Enterprise DB (Fusion Itech.) Kalsoft Si3 System Innovations Mentor Graphics Xavor Corporation CureMD Datum Square Macrosoft Pakistan i2c Inc Techlogix Mindstorm Studios Gameview Studios   

Applications of Artificial Inteligence

http://www.mediafire.com/?7dbd7gi27efg6qh Download Slides

sql sever connectivity with c# code

In C#: public static class Dac {   public static DataTable ExecuteDataTable(string sqlStatement,                                       params SqlParameter[] arrParam) {     DataTable dt = new DataTable();     // Open the connection     using (SqlConnection cnn = new SqlConnection(            "Data Source=.\sqlexpress;Initial Catalog=AcmeRentals;                                     Integrated Security=True"))     {         cnn.Open();         ...

Simple code to connect sql server 2008 with c#

 After wandering over the internet i got the most simplest code to connect c# with SQL server and get data in datatable or dataset.     string connString = "Data Source=\SQLEXPRESS;Initial Catalog=dbname; User ID=urID; Password=urPAss";         string sql = @"select * from table";         SqlConnection conn = new SqlConnection(connString);         try         {             conn.Open();             SqlDataAdapter da = new SqlDataAdapter(sql, conn);             da.Fill(dt);         }         catch (Exception e)         {             Console.WriteLine("Error: " + e);         }         finally         {           ...

Introduction To Algorithms 2Nd Edition Solutions (Incl Manual)

Image
McGraw-Hill Science/Engineering/Math; 2 edition | ISBN: 0070131511 | 1056 pages | July 16, 2001 | CHM The updated new edition of the classic Introduction to Algorithms is intended primarily for use in undergraduate or graduate courses in algorithms or data structures. Like the first edition, this text can also be used for self-study by technical professionals since it discusses engineering issues in algorithm design as well as the mathematical aspects. In its new edition, Introduction to Algorithms continues to provide a comprehensive introduction to the modern study of algorithms. The revision has been updated to reflect changes in the years since the book's original publication. New chapters on the role of algorithms in computing and on probabilistic analysis and randomized algorithms have been included. Sections throughout the book have been rewritten for increased clarity, and material has been added wherever a fuller explanation has seemed useful or new information ...

Approximation Algorithms for NP-Hard Problems

Image
Slides Inside..   Numerous practical problems are integer optimization problems that are intractable. Such problems are commonly addressed with heuristics that provide a solution, but not information on the solution's quality. The approximation algorithms' framework provides a guarantee on the quality of the solution obtained. This framework has been used as a guide to developing algorithms in specific problem areas with increasingly improved performance. The book describes the state-of-the-art algorithms in each specialized area and reviews the most effective technical tools used. The thirteen chapters of the book are written by leading researchers that have contributed to the state of the art of approximation algorithms. Download: http://www.mediafire.com/?lq24ojjcmgavwvp

Software Testing

Image
  Software testing is any activity aimed at evaluating an attribute or capability of a program or system and determining that it meets its required results. Download: http://www.mediafire.com/?j536ta3bmqf1ond