Posts

GTU Study material SEM 6

  GTU Study Material Semester:6: WEB TECHNOLOGY(2160708) PowerPoint Presentation for learning Web Technology as per GTU Syllabus:  Unit 1 Unit 2 Unit 3 Unit 4 Unit 5 Unit 6 Unit 7 Unit 8   Practical solutions for the subject Web Technology of semester 6 GTU syllabus: WT Lab Manual Solution: WT Practicals         GTU Study Material Semester:6: ADVANCED JAVA(2160707) Pdf for studying Advanced Java as per GTU syllabus: JAVA PDF JSP Tutorial JDBC Tutorial Servlets Tutorial Java the Complete Reference PDF   PowerPoint Presentation for learning Advanced Java as per GTU Syllabus: Unit 1 and 2 Unit 3 Unit 4 Unit 5 Unit 6 Unit 7     Practical solutions for the subject Advanced Java of semester 6 GTU syllabus:    Solution: AJ Practicals   

GATE NOTES

COMPUTER SCIENCE Links to Handwritten notes for GATE ( The Graduate Aptitude Test in Engineering )     *COMPUTER NETWORKS *DATABASE MANAGEMENT SYSTEM * COMPILER *THEORY OF COMPUTATION *DIGITAL ELECTRONICS *DATA STRUCTURES *COMPUTER ORGANIZATION AND ARCHITECTURE *OPERATING SYSTEM *DISCRETE MATHEMATICS AND GRAPH THEORY  

GTU Study Material Sem 7

GTU Study Material Semester:7: INFORMATION AND NETWORK SECURITY (2170709) Pdf for studying Information and Network Security as per GTU Syllabus: INS.pdf PowerPoint Presentation for learning Information and Network Security as per GTU Syllabus: Unit 1 Unit 2 Unit 3 Unit 4 Unit 5 Unit 6 Unit 7 Unit 8 Unit 9 Unit 10 Practical solutions for the subject Information and Network security of semester 7 GTU syllabus: GTU INS Lab Manual  Solution: INS Practicals    GTU Material Semester:7: BIG DATA ANALYTICS ( 2171607 ) Pdf for studying Information and Network Security as per GTU Syllabus: BDA PDF Introduction to Hadoop   Introduction to Hive  Introduction to Map Reduce Practical solutions for the subject Big Data Analytics of semester 7 GTU syllabus: GTU BDA Practical List  Solution: BDA Practicals   GTU Material Semester:7: DATA MINING AND BUSINESS INTELLIGENCE ( 2170715 ) Pdf for studyi...

SQL SYNTAX

SQL Create Database :  MySQL: CREATE DATABASE database_name; Oracle: In oracle database one can create the tables directly.  SQL Drop Database : MySQL: DROP DATABASE database_name; SQL Rename Database : MySQL: RENAME  DATABASE  old_db_name  TO  new_db_name; SQL server using T-SQL: ALTER   DATABASE  old_name  MODIFY   NAME  = new_name;  SQL Select Database : MySQL: USE  DATABASE  database_name;  SQL Create Table : create   table   "tablename"   ( "column1"   "data type" ,  "column2"   "data type" ,  "column3"   "data type" ,  ...  "columnN"   "data type" );    NOTE: The datatype for MySQL is 'int' while for Oracle and SQLServer keyword used is 'number'.  Example: CREATE   TABLE  Employee (EmployeeID  int ,  FirstName  varchar (255), LastName ...

Data Structures

Image
INTRODUCTION: Data Structures is a representation of the logical relationship existing between the individual elements of data. It is the way of organizing all data items that considers not only the elements stored but also their relationship to each other. It specifies: Organization of data Accessing Methods Degree of associativity  Processing alternatives for information ALGORITHM + DATA STRUCTURE = PROGRAM     PRIMITIVE DATA STRUCTURES: Directly operated by machine instructions. Different representations on different computers. Examples include int, float, char, pointer, etc.  NON-PRIMITIVE DATA STRUCTURES: Derived from primitive data structures. Forms a group of Homogeneous or Heterogeneous data structures. LINEAR DATA STRUCTURES: Elements are connected in a linear fashion in sequence memory locations. Can be traverses in a single run. There are two ways to represent linear data structure in memory:  Static Memory Al...