Effective Website Accessibility Through Optimization Using Knapsack Programming Model
|
|
|
- Lewis Greer
- 10 years ago
- Views:
Transcription
1 International Journal Of Engineering And Computer Science ISSN: Volume 4 Issue 4 April 2015, Page No Effective Website Accessibility Through Optimization Using Knapsack Programming Model BalaVignesh.P 1, SanthoshKumar.C *, Bhaanureaka.B 2, Gomathi.N 3, Nivedha.S.K 4 1,2,3,4 UG Scholar, CSE, Narasu s Sarathy Institute of Technology, Tamilnadu. * Assistant Professor, CSE, Narasu s Sarathy Institute of Technology, Tamilnadu. ABSTRACT - Designing high efficient websites to facilitate effective webpage access has long been a challenge. A primary reason is that the web developers understanding of how a website should be structured can be considerably different from that of the users. While various methods have been proposed to relink webpages to improve accessibility using user access data, the completely reorganized new structure can be highly unpredictable, and the cost of disorienting users after the changes remains unanalysed. This paper addresses how to improve a website without introducing substantial changes. Specifically, we propose a mathematical programming model to improve the user access on a website while minimizing alterations to its current structure. Our model not only significantly improves the user access with very few changes, but also can be effectively solved. In addition, we define two evaluation metrics and use them to assess the performance of the improved website using the real data set. Evaluation results confirm that the user access on the improved structure is indeed greatly enhanced. More interestingly, we find that heavily disoriented users are more likely to benefit from the improved structure than the less disoriented users. Keywords: Mathematical Programming Model, Website Web Services Problems and Future Directions by Optimization Hong bing Wang, Joshua Zhexue Huang, Yuzhong Qu, I. Introduction A primary cause of poor website design is that the web developers understanding of how a website should be structured can be considerably different from those of the users. Such differences result in cases where users cannot easily access the desired information in a website. [1] This problem is difficult to avoid because when creating a website, web developers may not have a clear understanding of users preferences and can only organize pages based on their own judgments. However, the measure of website effectiveness should be the satisfaction of the users rather than that of the developers. Thus, Web pages should be organized in a way that generally matches the user s model of how pages should be organized. II. Literature Survey Junyuan Xie[2008] briefs about the web services based on existing internet protocols and open standards provides a flexible solution to the problem of application integration. Elements of web services such as WSDL,UDDI and SOAP have made web services more popular in web applications.web service architecture faces various problems like security.this paper discusses about three aspects-service security,service compositions and Service semantics which makes the deployment of web services successful. A Survey on Web Service Discovery Approaches by Debajyoti Mukhopadhyay, Archana chougule [2010] briefs about the web service applications which are interoperable and can work on any platform. Finding a suitable web service is a very difficult task. This paper uses the keyword traditional web service discovery approach. It provides BalaVignesh.P 1 IJECS Volume 4 Issue 4 April, 2015 Page No Page 11379
2 various ways for finding the most suitable web service and uses them. Such ways includesearching using UDDI, Semantic based searching, syntax based searching and informational retrieval searching. Some approaches suggest that enhancement in web service request is based on metadata about web services generated by feedback of other users.efficiency, accuracy, security and considering QOS factors must be considered while providing discovery mechanism. Finally automatic discovery is found to be good while searching and choosing the required web service. Web Service Composition Methods-A Survey E.Pegman, Y.Rastegari, P.Majlesi Esfahani, A.Salajegheh[2012] briefs about the web service composition a challenge. It says that the number of service providers are increasing and they offer they request multiple services with the same functionality, so the problem of web service composition becomes complex. This paper presents web service composition methods. some methods were based on evolutionary algorithm (eg. Genetic algorithm) and some were based on nonevolutionary algorithm(eg. Dynamic programming, Heuristic approach).this paper focuses on web service composition is based on QOS. Non-evolutionary algorithms seem to be more efficient in small scale environment and business that are simple whereas evolutionary algorithms seems to be more efficient in large scale environment and business that are complex. III. Description We propose a mathematical programming model to optimize the web pages to improve the user access on a website while minimizing alterations to its current structure. Results from extensive tests conducted on a publicly available real data set indicate that our model not only significantly improves the user access with very few changes, but also can be effectively solved. In addition, we define two evaluation metrics and use them to assess the performance of the improved website using the real data set. Evaluation results confirm that the user access on the improved structure is indeed greatly enhanced. More interestingly, we find that heavily disoriented users are more likely to benefit from the improved structure than the less disoriented users.[2] Here we create an profile for the by user and we get the website link from the user as an input then in first step it checks the errors that are present in the given website then in next step we have a provision for user to choose which errors are to be optimized then the user selects them and then optimization starts. Then in last step a performance graph and optimized page is displayed. EG Algorithm KnapSack(u,w,n,W) BalaVignesh.P 1 IJECS Volume 4 Issue 4 April, 2015 Page No Page } { for(w=0 to W)V[0,w]=0; for(i=1 to n) for(w=0 to W) if(w[i]<=w) *V[I,w]=max{V[i-1,w],v[i],v[i- 1,w-w[i]]};/ else V[I,w]=V[i-1,w]; return V[n,W]; This problem deals with the given set of items having their mass and values, to determine that how many number of each given items to be selected such that the total weight selected is less than or equal to the given limit value such that the total value must be high.[8]from the various knapsack algorithms, we have chosen Greedy Algorithm for web optimization.*greedy Algorithm sorts the given set of items in the decreasing order of value,per unit of weight.insert the values onto the sack continuously,until there is no space in the sack to insert values.[3] If unlimited values are supplied to fit into the sack,then M is the maximum value that can fit into the sack,then this algorithm is used to achieve at least a value of M/2.From various algorithm under knapsack model,we have chosen greedy algorithm. This EG algorithm uses Explore-Exploit strategy.the URL of the website when optimized uses EG loop and checks whether to explore or to exploit.if the given condition is satisfied,then it explores and the corresponding optimization is performed.if the given condition is not satisfied,then it exploits and the next optimization is checked for EG condition.eg algorithm exits when the loop condition is not satisfied. Knapsack Loop In knapsack loop an algorithm is created such that the optimization proceeds and reaches to every one of the
3 associated links of the given web page. If a single page is optimize dynamic websites. It fails to produce an adaptive optimized as 70% and the associated webpages have environment to a website which is considered as true optimization value as 60%, 65%, 62% then they have optimization. When performance is considered MP model unequal optimization which is not an ideal and perfect is slow and the modern world requires faster optimizing optimization. If the webpage is to be truly optimized then algorithmic technique to work with the user system. the webpage and its associated links must have same ideal optimization value. This can be achieved using an average optimization value. [7] To get this value we must form a loop such that all webpages have same average optimization value. This loop is called Knapsack Loop. IV. Existing System The existing system is proposed of a MP model to improve website access while minimizing changes to its current structure. [4] This model is particularly appropriate for informational websites whose contents are relatively stable overtime. It improves website rather than reorganize it hence it is suitable for website maintenance on a FIG 2.1 Existing System Architecture progressive basis. V. Proposed System In Existing system we proposed a MP model to In Existing system we proposed a Knapsack Programming optimize the website characteristics while minimizing model which is equally called as Epsilon Greedy algorithm changes to its current structure. This model is particularly to optimize the website characteristics while minimizing appropriate for informational websites whose contents are changes to its current structure. This model is particularly relatively stable overtime [6]. This model has a constraint appropriate for both static websites and also dynamic for out degree threshold which is motivated by cognitive website making contents relatively stable overtime thus reasons. In this system we use MP model to remove null providing adaptive environment. [5] This utilizes explore declarations of markuplanguages, scripts, style sheets in and exploit strategyof E-G algorithm to bypass each of the order to improve performance of a website. This involves found errors and eliminate them to optimize the webpage. moving scripts to the bottom and moving CSS to the top of The explore feature is to proceed to the next optimization if the web page to attain optimum performance. and only if previous optimization is successful, it does not It also involves checking of errors in security level proceed to next optimization until previous one commits. such as Robo.txt and also errors in markup structures, java Whereas exploit feature is used to roll back the changes scripts, CSS, etc and also eliminate them to create an that done to the website if optimization fails it maintains optimized site. [9] It generally involves setting down a consistent website.in order to achieve true optimization it threshold value X and when the performance of an uses another feature of knapsack programming model that webpage associated with given website drops below, then is to create a knapsack loop to achieve optimization in each we optimize the current webpage and its associated links so of associated links of the webpage.[10] It involves setting that it is always greater than the threshold value to maintain out a threshold value say # and those websites which have performance. Optimization value greater than threshold value is Drawbacks considered as optimized. Finally Performance is truly The major drawback which the existing system faces is measured by generating a graph comparing before and after that, it does not differentiate the website from being static the website optimization process. like informative sites and dynamic sites like social media. Advantages It gives optimum results for only static websites and fails to BalaVignesh.P 1 IJECS Volume 4 Issue 4 April, 2015 Page No Page 11381
4 User friendly Interface. More Accurate Optimization. Performance Achievement is high. On site optimization can be achieved. Compatibility to Larger number of websites. Threshold based optimization leading to true Optimization. Fig 4.5 Optimizer Fig 4.6: Performance Graph VII. Conclusion FIG 3.1 Proposed System Architecture VI. Implementation Fig 4.4: Error Checker II In this paper, we have proposed a Knapsack programming model to improve the accessibility of a website while minimizing changes to its current structure, a critical issue that has not been examined in the literature. Our model is particularly appropriate for both static websites and also dynamic websites whose contents are relatively stable and changing over time. It improves a website rather than reorganizes it and hence is suitable for website maintenance on a progressive basis. Optimal solutions were quickly obtained, suggesting that the model is very effective to real world websites. The MP model was observed to scale up very well, optimally solving largesized problems in a few seconds in most cases on a desktop PC.To validate the performance of our model, we have defined two metrics. In addition, we found an appealing that heavily disoriented users, i.e., those with a higher probability to abandon the website, are more likely to benefit from the improved structure than the less disoriented users. Our paper also reveals that while using small path thresholds could result in better outcomes, it would also add significantly more new links. Thus, Webmasters need to carefully balance the trade-off between desired improvements to the user accessibility and the number of new links needed to accomplish the task when selecting appropriate path thresholds. Acknowledgement BalaVignesh.P 1 IJECS Volume 4 Issue 4 April, 2015 Page No Page 11382
5 We sincerely thank our Principal Dr.G.Venkatesan and our [ 9 ] en.wikipedia.org/wiki/knapsack_problem HOD Dr.S.Venkatesan for encouraging us and for [ 10 ] en.wikipedia.org/wiki/mathematical_optimizations providing facilities in order to map our idea into the AUTHORS research avenue. References [ 1 ] James L. Noyes, Professor Emeritus of Computer Science Wittenberg University, Optimization and Mathematical Programming: Modelling and Problem Solving, Instructor s Version [ 2 ] May Wang, Benjamin Yen, Faculty of Business and Economics in The University of Hong Kong, A Literature Study on Website Restructuring, 11 th Pacific Asia Conference on Information Systems. [ 3 ] Enrique Castillo, Antonio J. conejo, Pablo Pedregal, Florida Institute of Technology, Dept of Mathematical Science, BUILDING AND SOLVING MATHEMATICAL PROGRAMMING MODELS IN ENGINEERING AND SCIENCE. Revised version sep [ 4 ] Robert Fourer - Northwestern University, David M. Gay - AMPL Optimization LLC, Brian W. Kernighan - Princeton University. AMPLA Modeling Language for Mathematical Programming. Book Edition: second. [ 5 ] Pablo A. Parrilo - Massachusetts Institute of Technology Mathematical optimization techniques and their applications in the analysis of biological systems. Available at URL [ 6 ] Ms. Jissin Mary Kunjukutty, Ms. A.Priya, ME, Assistant Professor, Dept. of CSE, Sasurie College of Engineering, Vijayamangalam, Tamilnadu, Optimizing User Access with Pattern based Web Site Restructuring Scheme, Issue - Vol.2, Special Issue 1, March [ 7 ] Mohan Krishna D. V, N. Yedukondalu, D. Arun Kumar Reddy, Assistant Professor, CSE, Sir Vishveshwariah institute of science and technology India, Effective User Navigability through Website Structure ReorganizingUsing Mathematical Programming Model. Issue - International Journal of Computer Trends and Technology (IJCTT) volume 10 number 3 Apr [ 8 ] DebajyothiMukhopandhyay, ArchanaChougule, Department of Information Technology Maharastra C.Santhosh Kumar received the B.E. and M.E. degree in the branch of Computer Science and Engineering from Anna University, India and the MBA degree from Bharathiar University, India. Since 2012 he has been an Assistant Professor with the Department of Computer Science and Engineering, Narasu's Sarathy Institute of Technology, Tamilnadu. His area of interests include Semantic web, Theory of Computation. Balavignesh.P Pursuing the B.E degree in the branch of Computer Science and Engineering from Narasu s Sarathy Institute of Technology, And he is an active member of Computer Society of India. And his Area of Interests are to Create Computer Programs and Modules To solve Real World Problems. Bhaanureaka.B Pursuing B.E degree in the branch of Computer Science and Engineering from Narasu s Sarathy Institute of Technology. And her Area of Interests are to Create Web Applications. Nivedha S.K Pursuing B.E degree in the branch of Computer Science and Engineering from Narasu s Sarathy Institute of Technology. And her Area of Interests are to Design Websites, Webpages, Templates. University of Technology, A Survey on Webservice Discovery Approaches. BalaVignesh.P 1 IJECS Volume 4 Issue 4 April, 2015 Page No Page 11383
6 Gomathi.N Pursuing B.E degree in the branch of Computer Science and Engineering from Narasu s Sarathy Institute of Technology. And her Area of Interests are to Image Processing. BalaVignesh.P 1 IJECS Volume 4 Issue 4 April, 2015 Page No Page 11384
A UPS Framework for Providing Privacy Protection in Personalized Web Search
A UPS Framework for Providing Privacy Protection in Personalized Web Search V. Sai kumar 1, P.N.V.S. Pavan Kumar 2 PG Scholar, Dept. of CSE, G Pulla Reddy Engineering College, Kurnool, Andhra Pradesh,
A QoS-Aware Web Service Selection Based on Clustering
International Journal of Scientific and Research Publications, Volume 4, Issue 2, February 2014 1 A QoS-Aware Web Service Selection Based on Clustering R.Karthiban PG scholar, Computer Science and Engineering,
Improvised Software Testing Tool
Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 9, September 2014,
Load Balancing in Structured Peer to Peer Systems
Load Balancing in Structured Peer to Peer Systems Dr.K.P.Kaliyamurthie 1, D.Parameswari 2 1.Professor and Head, Dept. of IT, Bharath University, Chennai-600 073. 2.Asst. Prof.(SG), Dept. of Computer Applications,
Business Application Services Testing
Business Application Services Testing Curriculum Structure Course name Duration(days) Express 2 Testing Concept and methodologies 3 Introduction to Performance Testing 3 Web Testing 2 QTP 5 SQL 5 Load
ARTIFICIALLY INTELLIGENT COLLEGE ORIENTED VIRTUAL ASSISTANT
ARTIFICIALLY INTELLIGENT COLLEGE ORIENTED VIRTUAL ASSISTANT Vishmita Yashwant Shetty, Nikhil Uday Polekar, Sandipan Utpal Das, Prof. Suvarna Pansambal Department of Computer Engineering, Atharva College
A Framework for the Delivery of Personalized Adaptive Content
A Framework for the Delivery of Personalized Adaptive Content Colm Howlin CCKF Limited Dublin, Ireland [email protected] Danny Lynch CCKF Limited Dublin, Ireland [email protected] Abstract
REVIEW PAPER ON PERFORMANCE OF RESTFUL WEB SERVICES
REVIEW PAPER ON PERFORMANCE OF RESTFUL WEB SERVICES Miss.Monali K.Narse 1,Chaitali S.Suratkar 2, Isha M.Shirbhate 3 1 B.E, I.T, JDIET, Yavatmal, Maharashtra, India, [email protected] 2 Assistant
OCRP Implementation to Optimize Resource Provisioning Cost in Cloud Computing
OCRP Implementation to Optimize Resource Provisioning Cost in Cloud Computing K. Satheeshkumar PG Scholar K. Senthilkumar PG Scholar A. Selvakumar Assistant Professor Abstract- Cloud computing is a large-scale
GLOBAL JOURNAL OF ENGINEERING SCIENCE AND RESEARCHES
GLOBAL JOURNAL OF ENGINEERING SCIENCE AND RESEARCHES A LITERATURE SURVEY ON DESIGN AND ANALYSIS OF WEB AUTOMATION TESTING FRAMEWORK - SELENIUM Revathi. K *1 and Prof. Janani.V 2 PG Scholar, Dept of CSE,
MANAGING OF IMMENSE CLOUD DATA BY LOAD BALANCING STRATEGY. Sara Anjum 1, B.Manasa 2
INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING AND SCIENCE MANAGING OF IMMENSE CLOUD DATA BY LOAD BALANCING STRATEGY Sara Anjum 1, B.Manasa 2 1 M.Tech Student, Dept of CSE, A.M.R. Institute
Fair Scheduling Algorithm with Dynamic Load Balancing Using In Grid Computing
Research Inventy: International Journal Of Engineering And Science Vol.2, Issue 10 (April 2013), Pp 53-57 Issn(e): 2278-4721, Issn(p):2319-6483, Www.Researchinventy.Com Fair Scheduling Algorithm with Dynamic
Optimization and Ranking in Web Service Composition using Performance Index
Optimization and Ranking in Web Service Composition using Performance Index Pramodh N #1, Srinath V #2, Sri Krishna A #3 # Department of Computer Science and Engineering, SSN College of Engineering, Kalavakkam-
Load Balancing in Structured Peer to Peer Systems
Load Balancing in Structured Peer to Peer Systems DR.K.P.KALIYAMURTHIE 1, D.PARAMESWARI 2 Professor and Head, Dept. of IT, Bharath University, Chennai-600 073 1 Asst. Prof. (SG), Dept. of Computer Applications,
EFFECTIVE DATA RECOVERY FOR CONSTRUCTIVE CLOUD PLATFORM
INTERNATIONAL JOURNAL OF REVIEWS ON RECENT ELECTRONICS AND COMPUTER SCIENCE EFFECTIVE DATA RECOVERY FOR CONSTRUCTIVE CLOUD PLATFORM Macha Arun 1, B.Ravi Kumar 2 1 M.Tech Student, Dept of CSE, Holy Mary
SEARCH ENGINE WITH PARALLEL PROCESSING AND INCREMENTAL K-MEANS FOR FAST SEARCH AND RETRIEVAL
SEARCH ENGINE WITH PARALLEL PROCESSING AND INCREMENTAL K-MEANS FOR FAST SEARCH AND RETRIEVAL Krishna Kiran Kattamuri 1 and Rupa Chiramdasu 2 Department of Computer Science Engineering, VVIT, Guntur, India
Enhancing A Software Testing Tool to Validate the Web Services
Enhancing A Software Testing Tool to Validate the Web Services Tanuj Wala 1, Aman Kumar Sharma 2 1 Research Scholar, Department of Computer Science, Himachal Pradesh University Shimla, India 2 Associate
Database Optimizing Services
Database Systems Journal vol. I, no. 2/2010 55 Database Optimizing Services Adrian GHENCEA 1, Immo GIEGER 2 1 University Titu Maiorescu Bucharest, Romania 2 Bodenstedt-Wilhelmschule Peine, Deutschland
QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES
QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES SWATHI NANDURI * ZAHOOR-UL-HUQ * Master of Technology, Associate Professor, G. Pulla Reddy Engineering College, G. Pulla Reddy Engineering
Analysis on Virtualization Technologies in Cloud
Analysis on Virtualization Technologies in Cloud 1 V RaviTeja Kanakala, V.Krishna Reddy, K.Thirupathi Rao 1 Research Scholar, Department of CSE, KL University, Vaddeswaram, India I. Abstract Virtualization
How To Partition Cloud For Public Cloud
An Enhanced Load balancing model on cloud partitioning for public cloud Agidi.Vishnu vardhan*1, B.Aruna Kumari*2, G.Kiran Kumar*3 M.Tech Scholar, Dept of CSE, MLR Institute of Technology, Dundigal, Dt:
Email: [email protected]. 2 Prof, Dept of CSE, Institute of Aeronautical Engineering, Hyderabad, Andhrapradesh, India,
www.semargroup.org, www.ijsetr.com ISSN 2319-8885 Vol.03,Issue.06, May-2014, Pages:0963-0968 Improving Efficiency of Public Cloud Using Load Balancing Model SHRAVAN KUMAR 1, DR. N. CHANDRA SEKHAR REDDY
DESIGN AND STRUCTURE OF FUZZY LOGIC USING ADAPTIVE ONLINE LEARNING SYSTEMS
Abstract: Fuzzy logic has rapidly become one of the most successful of today s technologies for developing sophisticated control systems. The reason for which is very simple. Fuzzy logic addresses such
A Time Efficient Algorithm for Web Log Analysis
A Time Efficient Algorithm for Web Log Analysis Santosh Shakya Anju Singh Divakar Singh Student [M.Tech.6 th sem (CSE)] Asst.Proff, Dept. of CSE BU HOD (CSE), BUIT, BUIT,BU Bhopal Barkatullah University,
1 M.Tech, 2 HOD. Computer Engineering Department, Govt. Engineering College, Ajmer, Rajasthan, India
Volume 5, Issue 5, May 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Dynamic Performance
Administrator s Guide
SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide Rev: 2011-06-07 SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide How to use the Search Engine Optimization Toolkit to optimize your
Development of Resource-Driven Scheduling Model for Mass Housing Construction Projects
Development of Resource-Driven Scheduling Model for Mass Housing Construction Projects Ar. A. Cindrela Devi and K. Ananthanarayanan Abstract Resource continuity is a key issue for Mass housing construction
Review on Existing Load Balancing Techniques of Cloud Computing
Review on Existing Load Balancing Techniques of Cloud Computing #Suresh Kumar 1,M.Tech(CSE) #Ragavender 2, Associate Professor, CSE Department # Malla Reddy Engineering College, Hyderabad, TS State, INDIA
Web Accessibility Report
Web Accessibility Report AnnArborCIL.org Divye Bokdia Introduction AnnArborcil.org is an accessible website with AAA conformance. Team of four Michigan students (refer team section) and a staff member
How To Improve Cloud Computing With An Ontology System For An Optimal Decision Making
International Journal of Computational Engineering Research Vol, 04 Issue, 1 An Ontology System for Ability Optimization & Enhancement in Cloud Broker Pradeep Kumar M.Sc. Computer Science (AI) Central
Android based Secured Vehicle Key Finder System
International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Android based Secured Vehicle Key Finder System Sindhoori S. 1, Dr. N. Sathish Kumar 2 *(M.E. Embedded System Technologies, Sri
Finding Execution Faults in Dynamic Web Application
International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 4, Number 5 (2014), pp. 445-452 International Research Publications House http://www. irphouse.com /ijict.htm Finding
Efficient Parallel Distributed Load Balancing in Content Delivery Networks
Efficient Parallel Distributed Load Balancing in Content Delivery Networks P.Jyothi*1, N.Rajesh*2, K.Ramesh Babu*3 M.Tech Scholar, Dept of CSE, MRECW, Maisammaguda, Secunderabad, Telangana State, India,
II. PREVIOUS RELATED WORK
An extended rule framework for web forms: adding to metadata with custom rules to control appearance Atia M. Albhbah and Mick J. Ridley Abstract This paper proposes the use of rules that involve code to
Keywords Online Aptitude Test, Android, IOS, Cross Platform mobile application Development.
Volume 4, Issue 1, January 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Code Converter
Arti Tyagi Sunita Choudhary
Volume 5, Issue 3, March 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Web Usage Mining
An Automated Guided Model For Integrating News Into Stock Trading Strategies Pallavi Parshuram Katke 1, Ass.Prof. B.R.Solunke 2
www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 4 Issue - 12 December, 2015 Page No. 15312-15316 An Automated Guided Model For Integrating News Into Stock Trading
Big Data with Rough Set Using Map- Reduce
Big Data with Rough Set Using Map- Reduce Mr.G.Lenin 1, Mr. A. Raj Ganesh 2, Mr. S. Vanarasan 3 Assistant Professor, Department of CSE, Podhigai College of Engineering & Technology, Tirupattur, Tamilnadu,
Chapter-1 : Introduction 1 CHAPTER - 1. Introduction
Chapter-1 : Introduction 1 CHAPTER - 1 Introduction This thesis presents design of a new Model of the Meta-Search Engine for getting optimized search results. The focus is on new dimension of internet
Neural Network Design in Cloud Computing
International Journal of Computer Trends and Technology- volume4issue2-2013 ABSTRACT: Neural Network Design in Cloud Computing B.Rajkumar #1,T.Gopikiran #2,S.Satyanarayana *3 #1,#2Department of Computer
Content Management Systems: Drupal Vs Jahia
Content Management Systems: Drupal Vs Jahia Mrudula Talloju Department of Computing and Information Sciences Kansas State University Manhattan, KS 66502. [email protected] Abstract Content Management Systems
Optimization of ETL Work Flow in Data Warehouse
Optimization of ETL Work Flow in Data Warehouse Kommineni Sivaganesh M.Tech Student, CSE Department, Anil Neerukonda Institute of Technology & Science Visakhapatnam, India. [email protected] P Srinivasu
A MODEL FOR PERFORMANCE TESTING OF AJAX BASED WEB APPLICATIONS
A MODEL FOR PERFORMANCE TESTING OF AJAX BASED WEB APPLICATIONS Bhupendra Singh 1, Shashank Sahu 2 1 M.Tech Scholar (CSE), Ajay Kumar Garg Engineering College, Ghaziabad UP- India 2 Associate Prof. CSE
An Enhanced Quality Approach for Ecommerce Website using DEA and High Utility Item Set Mining
An Enhanced Quality Approach for Ecommerce Website using DEA and High Utility Item Set Mining Varsha Kulkarni 1, Vilas Jadhav 2. 1 PG Scholar, Dept. of Computer Engineering, MGMCET, Kamothe, Navi Mumbai,
Research Article Service Composition Optimization Using Differential Evolution and Opposition-based Learning
Research Journal of Applied Sciences, Engineering and Technology 11(2): 229-234, 2015 ISSN: 2040-7459; e-issn: 2040-7467 2015 Maxwell Scientific Publication Corp. Submitted: May 20, 2015 Accepted: June
Automating Service Negotiation Process for Service Architecture on the cloud by using Semantic Methodology
Automating Process for Architecture on the cloud by using Semantic Methodology Bhavana Jayant.Adgaonkar Department of Information Technology Amarutvahini College of Engineering Sangamner, India [email protected]
Statistics Analysis for Cloud Partitioning using Load Balancing Model in Public Cloud
Statistics Analysis for Cloud Partitioning using Load Balancing Model in Public Cloud 1 V.DIVYASRI, M.Tech (CSE) GKCE, SULLURPETA, [email protected] 2 T.SUJILATHA, M.Tech CSE, ASSOCIATE PROFESSOR
SEO AND CONTENT MANAGEMENT SYSTEM
International Journal of Electronics and Computer Science Engineering 953 Available Online at www.ijecse.org ISSN- 2277-1956 SEO AND CONTENT MANAGEMENT SYSTEM Savan K. Patel 1, Jigna B.Prajapati 2, Ravi.S.Patel
A Comparative Performance Analysis of Load Balancing Algorithms in Distributed System using Qualitative Parameters
A Comparative Performance Analysis of Load Balancing Algorithms in Distributed System using Qualitative Parameters Abhijit A. Rajguru, S.S. Apte Abstract - A distributed system can be viewed as a collection
Cross Platform Applications with IBM Worklight
IJCSNS International Journal of Computer Science and Network Security, VOL.15 No.11, November 2015 101 Cross Platform Applications with IBM Worklight P.S.S.Vara Prasad and Mrs.S.Durga Devi Dept. of IT
A Novel Approach for Efficient Load Balancing in Cloud Computing Environment by Using Partitioning
A Novel Approach for Efficient Load Balancing in Cloud Computing Environment by Using Partitioning 1 P. Vijay Kumar, 2 R. Suresh 1 M.Tech 2 nd Year, Department of CSE, CREC Tirupati, AP, India 2 Professor
IMPROVEMENT OF RESPONSE TIME OF LOAD BALANCING ALGORITHM IN CLOUD ENVIROMENT
IMPROVEMENT OF RESPONSE TIME OF LOAD BALANCING ALGORITHM IN CLOUD ENVIROMENT Muhammad Muhammad Bala 1, Miss Preety Kaushik 2, Mr Vivec Demri 3 1, 2, 3 Department of Engineering and Computer Science, Sharda
INTRUSION PROTECTION AGAINST SQL INJECTION ATTACKS USING REVERSE PROXY
INTRUSION PROTECTION AGAINST SQL INJECTION ATTACKS USING REVERSE PROXY Asst.Prof. S.N.Wandre Computer Engg. Dept. SIT,Lonavala University of Pune, [email protected] Gitanjali Dabhade Monika Ghodake Gayatri
International Journal of Engineering Technology, Management and Applied Sciences. www.ijetmas.com November 2014, Volume 2 Issue 6, ISSN 2349-4476
ERP SYSYTEM Nitika Jain 1 Niriksha 2 1 Student, RKGITW 2 Student, RKGITW Uttar Pradesh Tech. University Uttar Pradesh Tech. University Ghaziabad, U.P., India Ghaziabad, U.P., India ABSTRACT Student ERP
PHP FRAMEWORK FOR DATABASE MANAGEMENT BASED ON MVC PATTERN
PHP FRAMEWORK FOR DATABASE MANAGEMENT BASED ON MVC PATTERN Chanchai Supaartagorn Department of Mathematics Statistics and Computer, Faculty of Science, Ubon Ratchathani University, Thailand [email protected]
American Journal of Engineering Research (AJER) 2013 American Journal of Engineering Research (AJER) e-issn: 2320-0847 p-issn : 2320-0936 Volume-2, Issue-4, pp-39-43 www.ajer.us Research Paper Open Access
Distributed and Dynamic Load Balancing in Cloud Data Center
Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 5, May 2015, pg.233
The Design Study of High-Quality Resource Shared Classes in China: A Case Study of the Abnormal Psychology Course
The Design Study of High-Quality Resource Shared Classes in China: A Case Study of the Abnormal Psychology Course Juan WANG College of Educational Science, JiangSu Normal University, Jiangsu, Xuzhou, China
Research Article Volume 6 Issue No. 4
DOI 10.4010/2016.863 ISSN 2321 3361 2016 IJESC Research Article Volume 6 Issue No. 4 Different Modes of Discovery of Network Nodes Using SNMP and Reconciliation HemlataL.Eglambe 1, Divyani R.Vade 2, Megha
Service-Oriented Architectures
Architectures Computing & 2009-11-06 Architectures Computing & SERVICE-ORIENTED COMPUTING (SOC) A new computing paradigm revolving around the concept of software as a service Assumes that entire systems
Application of the Pareto Principle in Rapid Application Development Model
Application of the Pareto Principle in Rapid Application Development Model Vishal Pandey #1, AvinashBairwa #2, Sweta Bhattacharya #3 School of Information Technology & Engineering VIT University, Vellore
Klotski: Reprioritizing Web Content to Improve User Experience on Mobile Devices
Klotski: Reprioritizing Web Content to Improve User Experience on Mobile Devices Michael Butkiewicz, Daimeng Wang, Zhe Wu, Harsha V. Madhyastha, Vyas Sekar UC Riverside University of Michigan CMU Motivation:
Keywords: Information Retrieval, Vector Space Model, Database, Similarity Measure, Genetic Algorithm.
Volume 3, Issue 8, August 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Effective Information
Search Result Optimization using Annotators
Search Result Optimization using Annotators Vishal A. Kamble 1, Amit B. Chougule 2 1 Department of Computer Science and Engineering, D Y Patil College of engineering, Kolhapur, Maharashtra, India 2 Professor,
An Effective Analysis of Weblog Files to improve Website Performance
An Effective Analysis of Weblog Files to improve Website Performance 1 T.Revathi, 2 M.Praveen Kumar, 3 R.Ravindra Babu, 4 Md.Khaleelur Rahaman, 5 B.Aditya Reddy Department of Information Technology, KL
International Journal of Advanced Research in Computer Science and Software Engineering
Volume 2, Issue 9, September 2012 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com An Experimental
HYBRID ACO-IWD OPTIMIZATION ALGORITHM FOR MINIMIZING WEIGHTED FLOWTIME IN CLOUD-BASED PARAMETER SWEEP EXPERIMENTS
HYBRID ACO-IWD OPTIMIZATION ALGORITHM FOR MINIMIZING WEIGHTED FLOWTIME IN CLOUD-BASED PARAMETER SWEEP EXPERIMENTS R. Angel Preethima 1, Margret Johnson 2 1 Student, Computer Science and Engineering, Karunya
Path Selection Analysis in MPLS Network Based on QoS
Cumhuriyet Üniversitesi Fen Fakültesi Fen Bilimleri Dergisi (CFD), Cilt:36, No: 6 Özel Sayı (2015) ISSN: 1300-1949 Cumhuriyet University Faculty of Science Science Journal (CSJ), Vol. 36, No: 6 Special
Usage of OPNET IT tool to Simulate and Test the Security of Cloud under varying Firewall conditions
Usage of OPNET IT tool to Simulate and Test the Security of Cloud under varying Firewall conditions GRADUATE PROJECT REPORT Submitted to the Faculty of The School of Engineering & Computing Sciences Texas
Association rules for improving website effectiveness: case analysis
Association rules for improving website effectiveness: case analysis Maja Dimitrijević, The Higher Technical School of Professional Studies, Novi Sad, Serbia, [email protected] Tanja Krunić, The
Introduction to Service Oriented Architectures (SOA)
Introduction to Service Oriented Architectures (SOA) Responsible Institutions: ETHZ (Concept) ETHZ (Overall) ETHZ (Revision) http://www.eu-orchestra.org - Version from: 26.10.2007 1 Content 1. Introduction
Securing PHP Based Web Application Using Vulnerability Injection
International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 3, Number 5 (2013), pp. 391-398 International Research Publications House http://www. irphouse.com /ijict.htm Securing
Keywords Cloud Computing, CRC, RC4, RSA, Windows Microsoft Azure
Volume 3, Issue 11, November 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Cloud Computing
Wadala, Mumbai-037, India Wadala, Mumbai-037, India Wadala, Mumbai-037, India
Volume 3, Issue 12, December 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com An Interactive
Automated Test Approach for Web Based Software
Automated Test Approach for Web Based Software Indrajit Pan 1, Subhamita Mukherjee 2 1 Dept. of Information Technology, RCCIIT, Kolkata 700 015, W.B., India 2 Dept. of Information Technology, Techno India,
Efficient Scheduling Of On-line Services in Cloud Computing Based on Task Migration
Efficient Scheduling Of On-line Services in Cloud Computing Based on Task Migration 1 Harish H G, 2 Dr. R Girisha 1 PG Student, 2 Professor, Department of CSE, PESCE Mandya (An Autonomous Institution under
Dual Mechanism to Detect DDOS Attack Priyanka Dembla, Chander Diwaker 2 1 Research Scholar, 2 Assistant Professor
International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Journal of Engineering, Business and Enterprise
A Review on Load Balancing In Cloud Computing 1
www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 4 Issue 6 June 2015, Page No. 12333-12339 A Review on Load Balancing In Cloud Computing 1 Peenaz Pathak, 2 Er.Kamna
ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE TITLE: CS 103 - WEB DEVELOPMENT AND PROGRAMMING FUNDAMENTALS
ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE TITLE: CS 103 - WEB DEVELOPMENT AND PROGRAMMING FUNDAMENTALS B. CURRICULUM: Mathematics / Computer Science Unit Offering C. CATALOG DESCRIPTION: (N,C,S)
LOAD BALANCING AND EFFICIENT CLUSTERING FOR IMPROVING NETWORK PERFORMANCE IN AD-HOC NETWORKS
LOAD BALANCING AND EFFICIENT CLUSTERING FOR IMPROVING NETWORK PERFORMANCE IN AD-HOC NETWORKS Saranya.S 1, Menakambal.S 2 1 M.E., Embedded System Technologies, Nandha Engineering College (Autonomous), (India)
AN EFFICIENT APPROACH TO PERFORM PRE-PROCESSING
AN EFFIIENT APPROAH TO PERFORM PRE-PROESSING S. Prince Mary Research Scholar, Sathyabama University, hennai- 119 [email protected] E. Baburaj Department of omputer Science & Engineering, Sun Engineering
A Well-organized Dynamic Bandwidth Allocation Algorithm for MANET
A Well-organized Dynamic Bandwidth Allocation Algorithm for MANET S.Suganya Sr.Lecturer, Dept. of Computer Applications, TamilNadu College of Engineering, Coimbatore, India Dr.S.Palaniammal Prof.& Head,
Web Design and Implementation for Online Registration at University of Diyala
International Journal of Innovation and Applied Studies ISSN 2028-9324 Vol. 8 No. 1 Sep. 2014, pp. 261-270 2014 Innovative Space of Scientific Research Journals http://www.ijias.issr-journals.org/ Web
CHAPTER 5 INTELLIGENT TECHNIQUES TO PREVENT SQL INJECTION ATTACKS
66 CHAPTER 5 INTELLIGENT TECHNIQUES TO PREVENT SQL INJECTION ATTACKS 5.1 INTRODUCTION In this research work, two new techniques have been proposed for addressing the problem of SQL injection attacks, one
Minimize Response Time Using Distance Based Load Balancer Selection Scheme
Minimize Response Time Using Distance Based Load Balancer Selection Scheme K. Durga Priyanka M.Tech CSE Dept., Institute of Aeronautical Engineering, HYD-500043, Andhra Pradesh, India. Dr.N. Chandra Sekhar
