SU-Sastra University
C++
KEC-Kuppam Engineering College
Power BI is a Data Visualization and Business Intelligence tool that converts data from different data sources to interactive dashboards and BI reports. Power BI suite provides multiple software, connector, and services - Power BI desktop, Power BI service based on Saas, and mobile Power BI apps available for different platforms. These set of services are used by business users to consume data and build BI reports.
PEC-Panimalar Engineering College
CS6601 DISTRIBUTED SYSTEMS, 6th semester notes
DSEC-Dhanalakshmi Srinivasan Engineering College
lecturer hand out
GWEC-Government Women Engineering College
Way to Hack
BIT-Birla Institute of Technology Mesra
Here’s <strong>Insertion Sort</strong>, in Ruby, Java and C. It has a Worst and Average Case Scenario Complexity of <strong>Theta(n^2)</strong> (or <strong>Theta n-squared</strong>). It is efficient for smaller data sets while larger data sets would require a lot of time for sorting.<br /><br />Without further delay, here’s the algorithm;<br /><u>INSERTION SORT (PSEUDO-CODE)</u><br />A = [1,5,3,7,6,2,8,9,10,4]<br />print “Initial Array Order ” + A<br />for j = 1 to A.length<br />{<br />i = j-1<br />key = A[j]<br />while i>=0 && A[i]>key<br />{<br />A[i+1] = A[i]<br />i = i-1<br />}<br />A[i+1] = key<br />}<br />print “Sorted Array Order “+ A<br /><br />OUTPUT>> [1,2,3,4,5,6,7,8,9,10]<br />Note: The above algorithm assumes a Zero indexing for the Array. For One indexed Arrays, alter the for loop to -<br />“for j = 2 to A.length”<br />and alter the while loop to -<br />“while i>0 && A[i]>key”<br /><br />Now, Insertion Sort in Ruby;<br /><u>INSERTION SORT (RUBY)</u><br />A = [1,5,3,7,6,2,8,9,10,4]<br />p “Initial Array Order”<br />p A<br />for j in 1…A.length<br />i = j-1;<br />key = A[j];<br />while i>=0 && A[i]>key<br />A[i+1] = A[i];<br />i = i-1;<br />end<br />A[i+1] = key;<br />end<br />p “Sorted Array Order”<br />p A<br /><br /><u>InsertionSort (Java)</u><br />public class InsertionSorting<br />{<br />public static void main( String[] args )<br />{<br />int A[] = { 10, 9, 5, 7, 3, 1 };<br />System.out.printf(“\nInitial Array:\n”);<br />for( int k=0; k{<br />System.out.printf( “%d, “, A[k]);<br />}<br />for( int j=1; j{<br />int i = j-1;<br />int key = A[j];<br />while((i>=0)&&(A[i]>key))<br />{<br />A[i+1] = A[i];<br />i=i-1;<br />}<br />A[i+1] = key;<br />}<br />System.out.println(“\nFinal Array:”);<br />for( int k=0; k{<br />System.out.printf(“%d, “,A[k]);<br />}<br />}<br />}<br /><br /><u>INSERTION SORT (C)</u><br />//Insertion Sort<br />void main()<br />{<br />int A[6] = { 10, 5, 7, 3, 4, 1 };<br />printf(“\nInitial Array\n”);<br />for ( int l=0; l<6; l++)<br />{<br />printf(“%d\n”, A[l]);<br />}<br />int j =0;<br />for( j=1; j<6; j++)<br />{<br />int i = j-1;<br />int key = A[j];<br />while((i>=0)&&(A[i]>key))<br />{<br />A[i+1] = A[i];<br />i=i-1;<br />}<br />A[i+1] = key;<br />}<br />printf(“\nFinal Array\n”);<br />for (int k=0; k<6; k++)<br />{<br />printf(“%d\n”, A[k]);<br />}<br />getch();<br />}
SPCETM-Swami Parmanand College of Engineering and Technology Mohali
This is a PDF version of an on-line book that is available at<br />http://math.hws.edu/javanotes/. The PDF does not include<br />source code files, solutions to exercises, or answers to quizzes, but<br />it does have external links to these resources, shown in blue.<br />In addition, each section has a link to the on-line version.<br />The PDF also has internal links, shown in red. These links can<br />be used in Acrobat Reader and some other PDF reader programs.
SSCMS-Sri Sri Centre for Media Studies
This lecture is a technical terminology specific for the Interlocking block system which is a preliminary topic when you start with the subject. It is very important to get every detail about this topic correctly since this works as the backbone for many of the additional topics in the overall syllabus. To cover the entire topic in just one book and to make it easier to understand a document has been attached for the convenience of students.
SMU-Sikkim Manipal University
With the help of this lecture you can closely understand the deeper knowledge of Highway alignment and survey. This topic serves as the major milestone for the basic knowledge of the entire subject. This lecture is especially designed to assist the eager mind of an engineering scholar to answer all the little details about the topic. To know better about this topic download the following attached document that consists the lecture details.
SMU-Sikkim Manipal University
All the branches of Engineering are connected to each other in one manner or another; you just cannot ignore a branch completely. The following topic on Concrete Admixtures is a similar case since the topic itself is a very important part of a number of engineering Disciplines and most students have to go through at some time in their course duration. The attached document consists of complete syllabus data with great closure.
SMU-Sikkim Manipal University
When you go through this lecture about Total Quality Management, there is a fine need for high concentration due to the high importance of this topic and the level of understanding that you require to get the subject precisely. The subject is very important for all branches of engineering since it is quite closely related to a number of other syllabus topics. A document has been attached that is complete in all means for the help of students.
CU-Christ University
MySQL is (as of 2008) the world's most used open source relational database management system (RDBMS) that runs as a server providing multi-user access to a number of databases.<br /> <br /> It is named after co-founder Michael Widenius' daughter, My The SQL phrase stands for Structured Query Language.
CU-Christ University
MySQL Administrator is a program for performing administrative operations, such as configuring, monitoring and starting and<br /> stopping a MySQL server, managing users and connections, performing backups, and a number of other administrative tasks.<br /> Most tasks can be performed using a command-line client such as mysqladmin, or mysql, but MySQL Administrator has the<br /> following advantages:<br /> • Its graphical user interface makes it more intuitive.<br /> • It provides a better overview of the settings that are crucial for the performance, reliability, and security of your MySQL serv-<br /> ers.<br /> • It displays performance indicators graphically, thus making it easier to determine and tune server settings.
SSCMS-Sri Sri Centre for Media Studies
All the branches of Engineering are connected to each other in one manner or another; you just<br /> cannot ignore a branch completely. The following topic on Numerical Methods Aeronautical Engineering B. Tech Semester Examination Papers is a similar case since the topic itself is a very important part of a number of engineering Disciplines and most students have to go through at some time in their course duration. The attached document consists of complete syllabus data with great closure.
SMU-Sikkim Manipal University
This lecture is a technical terminology specific for the Heat transfer which is a preliminary topic when you start with the subject. It is very important to get every detail about this topic correctly since this works as the backbone for many of the additional topics in the overall syllabus. To cover the entire topic in just one book and to make it easier to understand a document has been attached for the convenience of students.
SSCMS-Sri Sri Centre for Media Studies
When you go through this lecture about Computer Fundamentals , there is a fine need for high concentration due to the high importance of this topic and the level of understanding that you require to get the subject precisely. The subject is very important for all branches of engineering since it is quite closely related to a number of other syllabus topics. A document has been attached that is complete in all means for the help of students.
SSCMS-Sri Sri Centre for Media Studies
This lecture is a technical terminology specific for the Computer Fundamentals which is a preliminary topic when you start with the subject. It is very important to get every detail about this topic correctly since this works as the backbone for many of the additional topics in the overall syllabus. To cover the entire topic in just one book and to make it easier to understand a document has been attached for the convenience of students.
HMRITM-HMR Institute of Technology and Management
A powerpoint presentation on Subtitution Ciphers. GGSIPU.
HMRITM-HMR Institute of Technology and Management
A powerpoint presentation on IP addresses: Classful addressing. GGSIPU.
HMRITM-HMR Institute of Technology and Management
A powerpoint presentation on basics of JAVASCRIPT. GGSIPU
Colleges are sharing lecture notes, study material, file, assignment etc.
Ask any study related doubt and get answered by college students and faculty.
College student sharing a great video to help peers study.
Access previous year papers for various courses.
Info. update by students of the respective college only.