ISSN : 2347 - 8446 (Online) International Journal of Advanced Research in ISSN : 2347 - 9817 (Print) Vol. 7, Issue 3 (July - Sept. 2019) Computer Science & Technology (IJARCST 2019) Integrating Mapreduce with Apriori and Genetic Algorithms for Groceries Transactions IMohammed A. Almorsy, IIMohammed A. El-dosuky, IIISameh Abd Elghani, IVHazem M. El Bakry I,II,III,IVFaculty of Computer & Information Sciences, Mansoura University, EGYPT

Abstract Groceries outlets ever produce massive data of transactions that deserve analysis for customer preferences. This paper reviews , Hadoop, association rules, and genetic algorithms. A proposed fusion algorithm for mining groceries transactions is presented. Such algorithm combines mapreduce, Apriori and genetic algorithms for groceries transactions. Simulation results prove the efficiency of the presented algorithm.

Keywords Big Data, Mapreduce, Hadoop, Association Rule, Apriori Algorithm, Genetic Algorithm.

I. Introduction III. Proposed system In big data, data sources with volume is over than the capability Figure 1 depicts the block diagram. of software tools that use to handle large amount of datasets such as analysis big data, manage, store and capture [1]. First, use mapreduce algorithm to deal with large datasets. Load Big data is processed using mapreduce, with two functions: one and split it in to small chunks of data. of mapping that process a key/value pairs to make a collection Second, mapper function that maps input key/value pairs to a set of intermediate key/value pair and a function of reducing that of intermediate key/value pairs then shuffled. merges all intermediate variables related which have the same Third, reducer function iterate through the values that are intermediate keys [11-169]. associated with that key and produce zero or more outputs. Initially proposed by Yahoo, Hadoop is open source platform for Fourth, output of mapreduce consists of key/value which , storing data using distributed , associated with others. This output easier to deal with it. HDFS [2]. Fifth, using apriori algorithm to extract association rules. To find Mining of Association rule is finding rules in the databases which the frequent item sets from big databases using series of iterations satisfy some minimum of confidence and minimum of support for generating candidate item set. Compute the minimum support constraint [3]. Apriori algorithm finds the frequent itemsets from then prune candidate item sets. big databases using a series of iterations. The Apriori algorithm Finally, extract strong association rules using genetic algorithm. is generating candidate item sets, first compute the support, and Use crossover, mutation and selection functions to reproduce new then prune the candidate item sets to the frequent item sets in populations of rules then use fitness function to find evaluated each iteration [4]. optimal solution Genetic Algorithm: heuristic approach used for solving search based and optimization problems, using fitness function to evaluate solution and make iteration such as crossover, mutation and selection to find optimal solution [10]. The rest of this paper reviews big data, Hadoop, association rules, and genetic algorithms in Section 2, before proposing a combination of mapreduce with Apriori algorithm and genetic algorithm for groceries transactions in Section 3.

II. Previous work Apriori-Map/Reduce Algorithm and Represent its time complexity, which theoretically illustrate that the algorithm gains more performance than the sequential algorithms as the map function and reduce function nodes. The item sets can produce and compute Association Rule for market analysis basket [5]. Implement Apriori Algorithm which improved on MapReduce model on the Hadoop. The improved algorithm can deal with large data set with less cost [6].A recent paper gives the overview of algorithms designed for parallel mining for extracting all frequent item sets using hadoop [7]. Using association rule on dataset to extract rules then use genetic algorithm but results are complex [8]. Combination of a-priori query technique with a genetic algorithm to solve the association rule mining problem [9]. Combination of a-priori with a genetic algorithm (GA) to solve two classical NP-hard location problems [10]. www.ijarcst.com 15 © All Rights Reserved, IJARCST 2013 International Journal of Advanced Research in ISSN : 2347 - 8446 (Online) Computer Science & Technology (IJARCST 2019) Vol. 7, Issue 3 (July - Sept. 2019) ISSN : 2347 - 9817 (Print)

Fig 1: Combination of mapreduce with apriori algorithm and genetic algorithm

IV. Simulation Results itemFrequencyPlot(Groceries,topN=10,type=”absolute”) Implement proposed system on groceries data set. Groceries Data itemsets <-apriori(Groceries,parameter = list(minlen=1,maxl Set contains: a collection of receipts with each line representing one en=1,support=0.02,target=frequent itemsets)) receipt and the items purchased. Each line is called a transaction itemsets <- apriori(Groceries,parameter = list(minlen=1,maxl and each column in a row represents an item. Groceries dataset en=1,support=0.02,target=”frequent itemsets”)) encompasses 9835 transactions. inspect(head(sort(itemsets,by=”support”),10)) First: use mapreduce algorithm to manage large database itemsets <- apriori(Groceries,parameter = list(minlen=2,maxl operations such as capture, store, manipulate and others which en=2,support=0.02,target=”frequent itemsets”)) consist of two functions: map function to split data in to small inspect(head(sort(itemsets,by=”support”),10)) pieces input and map input key / value pairs not arranged. Then itemsets <- apriori(Groceries,parameter = list(minlen=3,maxl reduce function to arrange data with associated values which can en=3,support=0.02,target=”frequent itemsets”)) deal with groceries dataset easier. Represent groceries data set in inspect(head(sort(itemsets,by=”support”),10)) “groceries.csv” file. rules strong_rules <-sort(rules,by=”confidence”,decreasing=T) Table 1: sample of the input groceries dataset Citrus fruit,semi-finished bread,margarine,ready soups inspect(strong_rules) tropical fruit,yogurt,coffee whole milk To extract association rules in external file “r.txt” that contains output of apriori algorithm implementation by writing: pip fruit,yogurt,cream cheese ,meat spreads sink(“r.txt”) r=inspect(strong_rules) Second: implement apriori algorithm on groceries dataset using inspect(strong_rules) R_studio. Begin with installing libraries “arules”, data “Groceries” sink(“r.txt”) and packages of “arules” and “arulesViz”, then to display size and inspect(strong_rules) length of Groceries dataset by writing size (Groceries) and length (Groceries). Then write this code for using series of iterations for savehistory(“C:/Users/hp/Desktop/m.txt”) generating candidate item set to explore and find frequent item set which has threshold of confidence and support and extract strong association rules.

© 2013, IJARCST All Rights Reserved 16 www.ijarcst.com ISSN : 2347 - 8446 (Online) International Journal of Advanced Research in ISSN : 2347 - 9817 (Print) Vol. 7, Issue 3 (July - Sept. 2019) Computer Science & Technology (IJARCST 2019)

Table 2 : sample of the output of r.txt file This output is extracted and pipelined to Genetic subsystem that LHS RHS Support conf Count is implemented in Python to make new generated rules. {rice, {whole 0.0012 1 12 Table 3: exemplar of the final output using genetic algorithm on sugar} milk} r.txt file {canned {whole 0.001118 1 11 {rice,other vegetables, yogurt,oil} fish, milk} =>{whole milk} hygiene {tropical fruit,root vegetables, sugar} articles} =>{whole milk} Third: use genetic algorithm on external file(r) which contain strong rules using anaconda python. In this system fitness is confidence, Final results will be measured their accuracy and compared with extract strong rules which have confidence at least 1. results on r.txt file (before and after using genetic algorithm).Total results after using genetic algorithm are 435 samples, 267 sample their accuracy is exactly 100% with r.txt, and 168 samples their accuracy less than our confidence.

V. Conclusion and Future work Groceries outlets ever produce massive data of transactions that deserve analysis for customer preferences. The paper has reviewed big data, Hadoop, association rules, and genetic algorithms. A new fusion algorithm for groceries transactions has been presented .such algorithm has combined mapreduce with Apriori and genetic algorithms to get the best association rules. Future directions may encompass the application of parallel implementation of Genetic and/ or in a distributed datasets of different stores.

References [1] Trnka, Andrej. “Big data analysis.” European Journal of Science and Theology 10.1 (2014): 143-148.‏ [2] Dean, Jeffrey, and . “MapReduce: a flexible data processing tool.”Communications of the ACM 53.1 (2010): 72-77. [3] Ma, Bing Liu Wynne Hsu Yiming, and Bing Liu. “Integrating Fig. 2 : Genetic Algorithm phase on proposed system classification and association rule mining.” Proceedings of the fourth international conference on knowledge discovery Then cross over between strong rules which confidence at least and data mining. 1998. 1. [4] Ye, Yanbin, and Chia-Chu Chiang. “A parallel apriori c1 = p1 algorithm for frequent itemsets mining.” Software c2 = p2 Engineering Research, Management and Applications, 2006. Fourth International Conference on. IEEE, 2006.‏ cross_1= len (lhs[c1])// 2 [5] Woo, Jongwook. “Apriori-Map/Reduce Algorithm.” cross_2 = len (lhs[c2])// 2 Proceedings of the International Conference on Parallel and Distributed Processing Techniques and Applications lhs1 = lhs[c1] (PDPTA). The Steering Committee of The World Congress lhs2 = lhs[c2] in Computer Science, Computer Engineering and Applied Computing (WorldComp), 2012.‏ head1= lhs1[:cross_1] [6] Li, Juan, et al. “Data mining using clouds: An experimental body1= lhs1[cross_1:] implementation of apriori over mapreduce.” 12th International Conference on Scalable Computing and Communications head2= lhs2[:cross_2] (ScalCom’13). 2012.‏ body2= lhs2[cross_2:] [7] Suneel, Chenna Venkata, K. Prasanna, and M. Rudra Kumar. “Parallel Mining of Frequent Item Sets using Data lhs[c1]= head1 + body2 Partitioning and Map Reduce.” (2017).‏ lhs[c2]= head2 + body1 [8] Sarkar, Debasis, and Jayant M. Modak. “Optimization of fed- batch bioreactors using genetic algorithm: multiple control print_only_rule(c1) variables.” Computers & Chemical Engineering 28.5 (2004): print_only_rule(c2) 789-798.‏ crossover(parent1, parent2) [9] Wakabi-Waiswa, Peter P., Venansius Baryamureeba, and K. Sarukesi. “Generalized Association Rule Mining Using www.ijarcst.com 17 © All Rights Reserved, IJARCST 2013 International Journal of Advanced Research in ISSN : 2347 - 8446 (Online) Computer Science & Technology (IJARCST 2019) Vol. 7, Issue 3 (July - Sept. 2019) ISSN : 2347 - 9817 (Print)

Genetic Algorithms.” Strengthening the Role of ICT in Technique and Compensation Blending,” International Development (2008): 59.‏ Journal of Advanced Computer Science and Applications, [10] Ahmad, Nasir. “A DISTRIBUTED GENETIC ALGORITM vol. 6, No. 9, September 2015, pp. 55-62. AND A-PRIORI ALGORITHM FOR THE HUB AND [23] Mohammed Alkhawlani, Mohammed Elmogy, and Hazem FACILITY LOCATION PROBLEMS.” Journal of M. El Bakry, “Content-Based Image Retrieval using Local Engineering and Applied Sciences (JEAS), Peshawar 36.1 Features Descriptors and Bag-of-Visual Words,” International (2017).‏ Journal of Advanced Computer Science and Applications, [11] Menna Elkhateeb, Abdulaziz Shehab, and Hazem El-bakry, vol. 6, No. 9, September 2015, pp. 212-219. “Mobile Learning System for Egyptian Higher Education [24] Hazem M. El-Bakry, Ibrahim El-Hennawy, and Hagar M. Using Agile-Based Approach,” Education Research El Hadad, “Bovines Muzzle Identification Using Box- International, Volume 2019, Article ID 7531980, 13 pages. Counting,” International Journal of Computer Science and [12] Sara Swidan, Shaker El-Sappagh, Hazem El-Bakry, Information Security, vol. 12, No. 5, May 2014, pp. 29-34. Sahar Sabbeh, Farid A. Badria, and Kyung-Sup Kwak, “ [25] Mamoon H. Momoon, Hazem M. El-Bakry, and Amany A Fibrosis Diagnosis Clinical Decision Support System A. Salama, “Visualization for Information Retrieval in Using Fuzzy Knowledge,” Arabian Journal for Science Regional Distributed Environment,” International Journal and Engineering, December 2018. of Computer Science and Information Security, vol. 11, No. [13] Ahmed M. Eassaa, Mohamed Elhosenya, Hazem M. El-Bakry, 4, September 2013, pp. 46-63. and Ahmed S. Salama, “NoSQL Injection Attack Detection in [26] Ahmed M. EL-Zehery, Hazem M. El-Bakry, Mohamed S. Web Applications Using RESTful Service,” Programming El-Ksasy, “Applying Data Mining Techniques for Customer and Computer Software, Volume 44, Issue 6, November Relationship Management: A Survey,” International Journal 2018, pp 435–444. of Computer Science and Information Security, vol. 11, No. [14] Ibrahim M. El-Hasnony, Hazem M. El Bakry, Omar H. 11, November 2013, pp. 76-82. Al-Tarawneh, and Mona Gamal, “A Proposed Hybrid [27] A. M. Riad, Hazem M. El-Bakry, and Samir M. Abd El-razek, Effective Technique for Enhancing Classification Accuracy,” “Virtual Investigation of Patients for Medical E-Learning,” International Journal of Advanced Computer Science and International Journal of Computer Science and Information Applications, vol. 8, No. 12, December 2017, pp. 190- Security, vol. 10, no. 7, August, 2012, pp. 6-10. 200. [28] Hesham A. Hassan, Hazem M. El-Bakry, and Hamada Gaber [15] Ahmed M. Eassa, Hazem M. El Bakry, Ahmed S. Salama, and Abd Allah, “Visualization for Levels of Animals Diseases Omar H. Al-Tarawneh “NoSQL Racket: A Testing Tool for by Integrating OLAP and GIS,” International Journal of Detecting NoSQL Injection Attacks in Web Applications,” Computer Science and Information Security, vol. 10, no. 7, International Journal of Advanced Computer Science and July, 2012, pp. 44-50. Applications, vol. 8, No. 11, November 2017, pp. 614- [29] Hassan H. Soliman, Hazem M. El-Bakry and, Mona Reda, 622. “Studying the Performance of Transmitting Video Streaming [16] Ibrahim El-Henawy, Hazem M. El-Bakry, and Hagar M. El over Computer Networks in Real Time,” International Journal Hadad, “ Muzzle Classification Using Neural Networks,” of Computer Science and Information Security, vol. 9, no. International Arab Journal of Information Technology, 11, November, 2011, pp. 90-100. vol.14, no. 4, July 2017, pp. 464-472. [30] Hazem M. El-Bakry and Nikos Mastorakis, “Fast Detection [17] Abdelkareem M. Alashqar, Ahmad Abo Elfetouh, and Hazem of H1N1 and H1N5 Viruses in DNA Sequence by using High M. El Bakry, “A Framework for Selecting Architectural Speed Time Delay Neural Networks,” International Journal Tactics Using Fuzzy Measures,” International Journal of of Computer Science and Information Security, vol. 9, no. Software Engineering and Knowledge Engineering, vol. 27, 11, November, 2011, pp. 101-108. no. 3, 2017, pp. 475–498. [31] A. A. Radwan, H. M. El-Bakry and H. M. El-hadaad, “A [18] Noha I. Sharaf, Bahaa T. Shabana, and Hazem El Bakry, New Expert System For Pediatric Respiratory Diseases By “GIS Utilization for Delivering a Time Condition Products,” Using Neural Network,” International Journal of Computer International Journal of Advanced Computer Science and Science and Information Security, vol. 9, no. 8, August, 2011, Applications, vol. 8, No. 3, March 2017, pp. 84-90. pp. 11-17. [19] Ahmed El-Sawy, Hazem M. El-Bakry, and Mohamed Loey [32] A. M. Riad, Hazem M. El-Bakry, and Gamal H. El-Adl, “A “Arabic Handwritten Characters Recognition Using Novel Service for E-government,” International Journal of Convolutional Neural Network,” WSEAS Trans. on Computer Science and Information Security, vol. 9, no. 1, Computer Research, vol. 5, Jan. 2017, pp. 11-19. Jan. 2011, pp. 193-200. [20] Ahmed El-Sawy, Hazem M. El-Bakry, and Mohamed Loey [23] Samir M. Abd El-Razek, Waeil F. Abd El-Wahed and, Hazem “An Intelligent Agent Tutor System for Detecting Arabic M. El-Bakry, “MUVES: A Virtual Environment System for Children Handwriting Difficulty Based on Immediate Medical Case Based Learning,” International Journal of Feedback,” WSEAS Trans. on Systems, Vol. 15, Jan. 2016, Computer Science and Network Security, vol. 10, no. 9, pp. 63-72. September 2010, pp. 159-163. [21] Hazem M. El-Bakry “Fast Information Detection in Big [34] Hazem M. El-Bakry, “Fast Virus Detection by using High Data using Neural Networks and Matrix Decomposition,” Speed Time Delay Neural Networks,” Journal of Computer WSEAS Trans. on Systems Trans. on Systems, vol.16, 2016, Virology, vol.6, no.2, 2010, pp.115-122. pp 49-58. [35] Hazem M. El-Bakry, “A Novel High Speed Neural Model [22] Ebtsam Adel, Mohammed Elmogy, and Hazem El Bakry, for Fast Pattern Recognition,” Soft Computing Journal, vol. “Image Stitching System Based on ORB Feature-Based 14, no. 6, 2010, pp. 647-666.

© 2013, IJARCST All Rights Reserved 18 www.ijarcst.com ISSN : 2347 - 8446 (Online) International Journal of Advanced Research in ISSN : 2347 - 9817 (Print) Vol. 7, Issue 3 (July - Sept. 2019) Computer Science & Technology (IJARCST 2019)

[36] Hazem M. El-Bakry, “An Efficient Algorithm for Pattern [51] Hazem M. El-Bakry, “Automatic Human Face Recognition Detection using Combined Classifiers and Data Fusion,” Using Modular Neural Networks,” Machine Graphics & Information Fusion Journal, vol. 11, issue 2, April 2010, Vision Journal (MG&V), vol. 10, no. 1, 2001, pp. 47-73. pp. 133-148. [52] Marwa Ahmad Abdelaziz, Alaa El-Din Mohamed Riad, [37] Hazem M. El-Bakry, “New Fast Principal Component Mohammad Badr Senousy, and Hazem M. El-Bakry, “ Analysis For Real-Time Face Detection,” MG&V Journal, Development of Virtual Reality Game-based Learning for vol. 18, no.4, 2009, pp. 405-426. Operating Systems Education,” The International Journal [38] Hazem M. El-Bakry, “A New Neural Design for Faster of Technologies in Learning, Volume 26, Issue 1, 2019, pp. Pattern Detection Using Cross Correlation and Matrix 57-76. Decomposition,” Neural Network World journal, 2009, vol. [53] Mohammed Loey, Mohammed Wajeeh Jasim, Hazem El- 19, no. 2, pp. 131-164. Bakry, “ in Gene Expression Profile for [39] Hazem M. El-Bakry, “New Faster Normalized Neural Central Nervous System Tumor Classification,” Journal Networks for Sub-Matrix Detection using Cross Correlation of Convergence Information Technology, Volume14, in the Frequency Domain and Matrix Decomposition,” Number1, January 2019, pp. 49-60. Applied Soft Computing journal, vol. 8, issue 2, March [54] Mohammed W. Al Rawi, Hazem M. El-Bakry, and 2008, pp. 1131-1149. Mohammed Loey, “Survey on Gene Selection Using Meta [40] Hazem M. El-Bakry, and Nikos Mastorakis “New Fast Heuristic Algorithms for Classifying Cancer Disease,” Normalized Neural Networks for Pattern Detection,” Image International Journal of Advanced Research in Computer and Vision Computing Journal, vol. 25, issue 11, 2007, pp. Science & Technology, vol. 6, issue 3, Jully-September 2018, 1767-1784. pp. 19-27. [41] Hazem M. El-Bakry, “New Fast Principal Component [55] Mona Mowafy, A. Rezk, H. M. El-Bakry, “General Crime Analysis for Face Detection,” Journal of Advanced Mining Framework for Unstructured Crime Data Prediction,” Computational Intelligence and Intelligent Informatics, International Journal of Computer Application, vol. 4, issue vol.11, no.2, 2007, pp. 195-201. 8, July-August 2018, pp. 8-17. [42] Hazem M. El-Bakry, “Faster PCA for Face Detection Using [56] Mona Mowafy, A. Rezk, H. M. El-Bakry, “Building Cross Correlation in the Frequency Domain,” International Unstructured Crime Data Prediction Model (Practical Journal of Computer Science and Network Security, vol.6, Approach),” International Journal of Computer Application, no. 2A, February 2006, pp.69-74. vol. 4, issue 8, July-August 2018, pp. 1-7. [43] Hazem M. El-Bakry, “New High Speed Normalized Neural [57] S. Sweidan, S. El-Sappagh, H. El-Bakry, S. Sabah, “Liver Networks for Fast Pattern Discovery on Web Pages,” Fibrosis Diagnosis with Mamadani Fis,” Journal of advanced International Journal of Computer Science and Network Research Design, vol. 42, issue 1, March 2018, pp. 17-24. Security, vol.6, No. 2A, February 2006, pp.142-152. [58] Sally S. Elesnawy, Mohhamed A. El-Dosuky, Hazem M. El- [44] Hazem M. El-Bakry, and Qiangfu Zhao, “Speeding-up Bakry, Aziza S. Asem, “Applying Data Mining Techniques Normalized Neural Networks For Face/Object Detection,” in Taxes Sales ,” International Journal of Advanced Research Machine Graphics & Vision Journal (MG&V), vol. 14, No.1, in Computer Science & Technology, vol. 6, issue 1, Jan- 2005, pp. 29-59. March 2018, pp. 15-18. [45] Hazem M. El-Bakry, “New Fast Time Delay Neural Networks [59] Mowafy M, Rezk A and El-bakry HM, “An Efficient Using Cross Correlation Performed in the Frequency Classification Model for Unstructured Text Document,” Domain,” Neurocomputing Journal, vol. 69, October 2006, American Journal of Computer Science and Information pp. 2360-2363. Technology, vol. 6, issue 1, July-August 2018, pp. 1-10. [46] Hazem M. El-Bakry, and Qiangfu Zhao, “Fast Normalized [60] Salah E. El-Gazzar, Ahmed A. Saleh, Hazem El-Bakry, Neural Processors For Pattern Detection Based on Cross “Overview of Using Private Cloud Model with GIS,” Correlation Implemented in the Frequency Domain,” Journal International Journal of Electronics and Information of Research and Practice in Information Technology, Vol. Engineering, vol. 7, No. 2, December 2017, pp. 68-78. 38, No.2, May 2006, pp. 151-170. [61] Mazin H. R. Al- Shaikhly, Hazem. M. El bakry, Ahmed A. [47] Hazem M. El-Bakry, and Qiangfu Zhao, “Fast Time Delay Saleh, “An Intelligent Approach for Improving Stability Neural Networks,” International Journal of Neural Systems, and Security of Cloud Computing,” International Journal vol. 15, no.6, December 2005, pp.445-455. of Artificial Intelligence and Mechatronics, vol. 2, issue 3, [48] Hazem M. El-Bakry, and Qiangfu Zhao, “Fast Pattern November 2017, pp. 51-56. Detection Using Normalized Neural Networks and Cross [62] Ahmed Ashraf, Hazem M. El-Bakry, Yehia El-Mashad, Correlation in the Frequency Domain,” EURASIP Journal Samir Abd-Elrazik, Mohammed El-Desouky, “Improving on Applied Signal Processing, Special Issue on Advances in the Quality of Education in Higher Schools by Developing Intelligent Vision Systems: Methods and Applications—Part the Students Capabilities using Data Mining Techniques,” I, vol. 2005, no. 13, 1 August 2005, pp. 2054-2060. International Journal of Electronics Communication and [49] Hazem M. El-Bakry, “Face detection using fast neural Computer Engineering, vol. 8, issue 9, September 2017, networks and image decomposition,” Neurocomputing pp. 272-277. Journal, vol. 48, October 2002, pp. 1039-1046. [63] Ahmed Hamdi, Samir AbdElrazek, Ahmed AbuElfotoh, [50] Hazem M. El-Bakry, “Human Iris Detection Using Hazem El-Bakry, “Strategic Business Analytics and Fast Cooperative Modular Neural Nets and Image Alternative Solutions from Decision Making Perspective,” Decomposition,” Machine Graphics & Vision Journal International Journal of Electronics and Information (MG&V), vol. 11, no. 4, 2002, pp. 498-512. Engineering, vol. 7, No. 1, September 2017, pp. 10-22. www.ijarcst.com 19 © All Rights Reserved, IJARCST 2013 International Journal of Advanced Research in ISSN : 2347 - 8446 (Online) Computer Science & Technology (IJARCST 2019) Vol. 7, Issue 3 (July - Sept. 2019) ISSN : 2347 - 9817 (Print)

[64] Ahmed Ashraf, Hazem M. El-Bakry, Yehia El-Mashad, [76] Ainas A. ALbahbah, Hazem M. El Bakry, and Sameh Abd- Samir Abd-Elrazik, Mohammed El-Desouky, “Improving Elgahany, “A New Optimized Approach for Detection of Secondary School Student Performance using Data Mining Caries in Panoramic Images,” International Journal of Techniques,” International Journal of Advanced Research Computer Engineering and Information Technology, vol. in Computer Science & Technology, vol. 5, issue 3, July- 8, issue 9, September 2016, pp. 163-170. September 2017, pp. 13-20. [77] Ainas A. ALbahbah, Hazem M. El Bakry, and Sameh [65] AM Elhady, E Radwan, HM El-bakry, AA Elfetouh, Abd-Elgahany, “Detection of Caries in Panoramic Dental “Enhancing the Performance of CNNs using Evolutionary X-ray Images using Back-Propagation Neural Networks,” Programming,” International Journal of Computer International Journal of Electronics Communication and Engineering and Information Technology, vol. 9, issue 5, Computer Engineering, vol. 7, issue 5, September 2016, May 2017, pp. 87-96. pp. 250-256. [66] Abduallah M. Hammouche, Hazem M. El Bakry, “A New [78] Hisham Elhoseny, Samir Abdelrazek, Hazem M. El-Bakry, FDCT-USFFT and FDCT-Wrap Algorithms for Image Alaa Riad, “A Content Oriented Smart Education System Contrast Enhancement,” International Journal of Artificial based on Service Oriented Architecture,” Journal of Next Intelligence and Mechatronics, vol. 5, issue 5, April 2017, Generation Information Technology, vol. 7, issue 2, June pp. 31-37. 2016, pp. 21-30. [67] Mazin H. R. Al- Shaikhly, Hazem M. El-Bakry, Ahmed [79] Eman Tuhamy Ghareeb, Mahmoud M. Abd Elatif, A. Saleh, “Intelligent Firewall Using Genetic Algorithm,” Hazem M. El Bakry, “Optimal Routing Selection Using International Journal of Advanced Research in Computer Analytical Hierarchy Process,” International Journal of Science & Technology, vol. 5, issue 2, April-June 2017, pp. Advancements in Computing Technology, vol. 8, issue 3, 22-27 June 2016, pp. 44-57. [68] Ibrahim El-Henawy, Hazem M. El-Bakry, and Hagar M. El [80] Hisham Elhoseny, Mohamed Elhoseny, Samir Abdelrazek, Hadad, “A New Muzzle Classification Model using Decision Hazem Bakry, Alaa Riad, “Utilizing Service Oriented Tree Classifier,” International Journal of Electronics and Architecture (SOA) in Smart Cities,” International Journal Information Engineering, vol. 6, No. 1, March 2017, pp. of Advancements in Computing Technology, vol. 8, issue 3, 12-24. June 2016, pp. 77-84. [69] Abduallah M. Hammouche, Hazem M. El Bakry, and Reham [81] Hazem Bakry, Ali E Taki_El_Deen, Ahmed Hussein El R. Mostafa, “Image Contrast Enhancement Using Fast Tengy, “Implementation of an Encryption Scheme for Voice Discrete Curvelet Transform via Wrapping (FDCT-Wrap),” Calls,” International Journal of Computer application, vol. International Journal of Advanced Research in Computer 144, no. 2, May 2016, pp. 77-84. Science & Technology, vol. 5, issue 2, April-June. 2017, pp. [82] Abdelrahman M. Ahmed, Hazem M. El Bakry, “A New 10-16. Technique for Optimal Data Manipulation Through WANs,” [70] Ramy Kasem, Hazem M. El Bakry, Ahmed A. Foutoh Saleh, International Journal of Advanced Research in Computer “Surveying Systems of Enterprise Resource Planning,” Science & Technology, vol. 4, issue 1, April-June 2016, pp. International Journal of Advanced Research in Computer 177-180. Science & Technology, vol. 5, issue 1, Jan-Mar. 2017, pp. [83] Ibrahim El-Henawy, Hazem. M. El Bakry, Hagar M. El 26-31. Hadad, “Cattle Identification Using Segmentation-based [71] Ibrahim El-Henawy, Hazem M. El-Bakry, Hagar M. El Fractal Texture Analysis and Artificial Neural Networks,” Hadad, and Nikos Mastorakis “Muzzle Feature Extraction International Journal of Electronics and Information Based on gray level co-occurrence matrix,” International Engineering, vol. 4, No. 2, June. 2016, pp. 82-93. Journal of Veterinary Medicine, vol.1, December 2016, [84] Akram AL-Hadad, Hazem M. El-Bakry, and Reham R. pp.16-24. Mostafa, “A NEW TECHNIQUE FOR LICENSE PLATE [72] Ibrahim El-Henawy, Hazem M. El-Bakry, Hagar M. El Hadad, DETECTION USING MATHEMATICAL MORPHOLOGY and Nikos Mastorakis, “Bovines’ Texture Feature Extraction AND SUPPORT VECTOR MACHINE,” International Based on Discrete Wavelet Transform,” International Journal Journal of Harmonized Research in Engineering, vol. 4, of Veterinary Medicine, vol.1, December 2016, pp.5-15. No. 2, April 2016, pp. 37-43. [73] Ahmed El-Sawy, Mohamed Loey, and Hazem M. El-Bakry [85] Shakir F. Shabram, Hazem M. El-Bakry, Mohammed. “ Arab Kids Tutor (AKT) System For Handwriting Stroke A. EL-Dosuky, “ENHANCING EDUCATIONAL Errors Detection,” International Journal of Technology &VOTING PROCESSES BY USING COMMUNITY Enhancements and emerging Engineering Research, vol. 4, PARTICIPATION,” International Journal of Harmonized issue 3, 2016, pp. 42-49. Research in Engineering, vol. 4, No. 2, April 2016, pp. 30- [74] Alaa Eisa, Hazem M. El-Bakry, Samir M. Abd Elrazik, 36. Sajjad Q. hasan, Asaad Q. Hasan, Samir Zaid, “Challenges [86] N. S. Abu El-Ala, H. M. El-bakry, S. A. Abd El-Hafeez in Wireless Sensor Networks,” International Journal of “Personal Cloud-based Learning Environment,” International Advanced Research in Computer Science & Technology, Journal of Computer Science and Engineering, vol. 8, No. vol. 4, issue 4, October-December 2016, pp. 22-27. 4, April 2016, pp. 122-127. [75] Munaf Hamza Kareem, Hazem M. El-Bakry, Mervat Abu- [87] Sulayman A. Hussein, Hazem M. El Bakry, Nadia I. Nife Elkheir “Enhancing Hybrid Asymmetric-Multicast Hash- “Modern Technologies for Designing and Developing Web- Routing for Information Centric Networks,” International Based Electronic Training Centers,” International Journal Journal of Artificial Intelligence and Mechatronics, vol. 7, of Artificial Intelligence and Mechatronics, vol. 4, issue 5, issue 2, September 2016, pp. 5-11. March 2016, pp. 181-187.

© 2013, IJARCST All Rights Reserved 20 www.ijarcst.com ISSN : 2347 - 8446 (Online) International Journal of Advanced Research in ISSN : 2347 - 9817 (Print) Vol. 7, Issue 3 (July - Sept. 2019) Computer Science & Technology (IJARCST 2019)

[88] Abdalwhab A. Alkher, Hazem M. El Bakry, and Said M. 1, Jan.-March 2016, pp. 18-23. Fathalla, “ Securing Images Using Chaotic-based Image [100] Ibrahim M. El-Hasnony, Hazem M. El Bakry, and Encryption Cryptosystem,” International Journal of Ahmed A. Saleh, “Classification of Breast Cancer Using Electronics Communication and Computer Engineering, Softcomputing Techniques,” International Journal of vol. 7, issue 2, March 2016, pp. 114-116. Electronics and Information Engineering, vol. 4, No. 1, [89] Abduallah M. Hammouche, Hazem M. El Bakry, and Reham Jan. 2016, pp. 45-53. R. Mostafa, “Image Contrast Enhancement Using Fast [101] Mohammed Khaleel, Hazem M. El Bakry, and Ahmed Discrete Curvelet Transform Via Unequally Spaced Fast A. Saleh, “A New Efficient Retrieval System Fourier Transform (FDCT-USFFT),” International Journal Using Caching Search Engine,” International Journal of of Electronics Communication and Computer Engineering, Electronics and Information Engineering, vol. 4, No. 1, vol. 7, issue 2, March 2016, pp. 88-93. Jan. 2016, pp. 22-31. [90] Riyadh I. Louis, Ahmed I. Saleh, Mohammed F. AL [102] Sara Sweidan, Hazem El-Bakry, Shaker El-Sappagh, Sahar Rahmawy, Hazem M. El-Bakry, Samir M. Abd El-razek “ Sabah, Nikos Mastorakis, “Viral Hepatitis Diagnosis: A A Best Effort Heuristic Algorithm for Timely Survey of Artificial Intelligent Techniques,” International Constrained Tasks in the Cloud,” International Journal of Journal of Biology and Biomedicine, vol. 1, Jan. 2016, Scientific & Engineering Research, vol. 7, issue 2, February pp. 106-115. 2016, pp. 390-400. [103] Bashar Hindawi, Hazem M. El Bakry, and Mervat Abu El- [91] Ahmad Mosa, Hazem. M. El Bakry, Samir M. Abd El-Razek, Kheir “Evaluating NoSQL Databases with Fuzzy Decision Sajjad Q. Hasan, Nikos Mastorakis, “An Efficient Approach Making,” International Journal of Harmonized Research for Improving Quality of E Governmental Services,” Internet in Engineering, vol. 3, No. 4, December 2015, pp. 162- of Things and Web Services, vol.1, 2016, pp.116-127. 171. [92] Riyadh Abdulamir, Reham Mostafa, and Hazem M. El [104] Fadiyya A. Mohsin, and Hazem M. El Bakry, “A Novel Bakry, “A Proposed Model for Authentication using Identity Approach for Speeding up Secured Litigation Procedures,” Detection,” International Journal of Artificial Intelligence International Journal of Scientific and Technical and Mechatronics, vol. 4, issue 5, January 2016, pp. 177- Advancements, vol. 1, issue 4, December 2015, pp. 37- 180. 43. [93] Ahmed A. Saleh, Hazem M. El Bakry, and Mohammed K. ‏[105] Ahmed Ismail, Mohammed Elmougy, and Hazem ElBakry Kolkas, “Design of Decision Support System for Loans “Landmines Detections using Low-cost Multi Sensory Based on Data Mining Techniques,” International Journal Mobile Robot,” Journal of Convergence Information of Electronics Communication and Computer Engineering, Technology, vol. 3, No. 4, November 2015, pp. 51-60. vol. 7, issue 1, January 2016, pp. 70-79. [106] Mohammed Khaleel, Hazem M. El Bakry, and Ahmed [94] Hamsa Emad, Hazem M. El Bakry, and Aziza Asem, “A A. Saleh, “A Comparative study between Proposed Modified Technology Acceptance Model for Health System and other Related Systems,” International Journal Informatics,” International Journal of Artificial Intelligence of Artificial Intelligence and Mechatronics, vol. 4, issue and Mechatronics, vol. 4, issue 4, January 2016, pp. 153- 3, November 2015, pp. 124-129 161. [107] Avein J. Al-Assady, Bahaa T. Shabana, and Hazem El [95] Thaer M. Taha, Hazem M. El-Bakry, Amal Ibrahim, Samir Bakry, “A Proposed Model for Human Securing using Abd-Elrazik, Magdi Z. Rashad “Fast sound verification GPS,” International Journal of Electronics Communication using support vector machine and particle swarm and Computer Engineering, vol. 6, issue 6, November optimization algorithms ,” International Journal of 2015, pp. 689-697. Advanced Research in Computer Science & Technology, [108] Safaa M. Kareem, Sameh Abd-elghany, and Hazem M. El vol. 4, issue 1, Jan.-March 2016, pp. 78-83. Bakry, “A New Fast 3D Reconstruction Approach using [96] Ahmed Mahdi Obaid, Hazem M. El Bakry, M.A. Eldosuky, MultipleView Images,” International Journal of Electronics A.I. Shehab, “Handwritten Text Recognition System based Communication and Computer Engineering, vol. 6, issue on Neural Network,” International Journal of Advanced 6, November 2015, pp. 683-688. Research in Computer Science & Technology, vol. 4, issue [109] Fadiyya A. Mohsin, Reham R. Mostafa, and Hazem M. 1, Jan.-March 2016, pp. 72-77. El Bakry, “Design of Information System for Facilitating [97] Firas F. Jawad, Bahaa T. Shabana, Hazem M. El-Bakry, Litigation Procedures,” International Journal of Computer “Reducing Waiting Time for Transportation using GIS,” Engineering and Information Technology, vol. 6, No. 1, International Journal of Advanced Research in Computer November 2015, pp. 107-112. Science & Technology, vol. 4, issue 1, Jan.-March 2016, [110] Nisreen M. Alrawi, Bahaa Shabana, Hazem M. El Bakry, and pp. 62-71. Ahmed A. Saleh, “A proposed Decision Support System for [98] Saad Adil AL-Ani, Sameh Abd El-Ghany, Hazem M. El- Managing Educational Human Resources Based on GIS,” Bakry, “A Collective Intelligence Based Multi Aspect International Journal of Advanced Research in Computer Sentiment Analysis for Arabic,” International Journal of Science & Technology, vol. 3, issue 4, October-December Advanced Research in Computer Science & Technology, 2015, pp. 54-59. vol. 4, issue 1, Jan.-March 2016, pp. 55-61. [111] Alaa Eissa, Hazem M. El Bakry, and Samir Ziad, “A Hybrid [99] Ali Hussein Khalaf, Hazem M. El Bakry, and Sahar fawzy Intrusion Detection System for WSN,” International Sabbeh, “University Courses Scheduling Using Cat Swarm Journal of Advanced Research in Computer Science & Optimization Algorithm,” International Journal of Advanced Technology, vol. 3, issue 4, October-December 2015, pp. Research in Computer Science & Technology, vol. 4, issue 10-15. www.ijarcst.com 21 © All Rights Reserved, IJARCST 2013 International Journal of Advanced Research in ISSN : 2347 - 8446 (Online) Computer Science & Technology (IJARCST 2019) Vol. 7, Issue 3 (July - Sept. 2019) ISSN : 2347 - 9817 (Print)

[112] Nama Al-Shumanny, Bahaa T. Shabaha, and Hazem “Online Social Learning Suggestion System Based On El Bakry, “A Proposed Decision Support System for Student Behavior,” International Journal of Information E-Services Based on GIS,” International Journal of Science and Intelligent System, vol. 4, No. 1, Jan. 2015, Electronics Communication and Computer Engineering, pp. 43-64. vol. 6, issue 5, September 2015, pp. 602-607. [125] Ahmed M. EL-Zehery, Hazem M. El-Bakry, Mohamed S. [113] Raffat Izzat, Bahaa T. Shabana, A. M. Riad and Hazem El-Ksasy, “Improving Passport System by using Data M. El Bakry, “Spatial Query Performance For GIS cloud,” Mining,” International Journal of Advance Foundation and International Journal of Information Engineering and Research in Computer, vol. 1, Issue 12, December 2014, Applications, vol. 5, number 8, August 2015, pp. 56-65. pp. 144-157. [114] Raid S. Sarhan, Bahaa T. Shabana and Hazem El Bakry, [126] Hazem M. El-Bakry, Nikos E. Mastorakis, Michael E. “Design of an Efficient Integrated System for Ambulance Fafalios, “Fast Information Retrieval from Big Data Management,” International Journal of Electronics by using Cross Correlation in the Frequency Domain,” Communication and Computer Engineering, vol. 6, issue International Journal of Neural Networks and Advanced 4, July 2015, pp. 509-515. Applications, Vol. 1, 2014, pp. 68-72. [115] Ibrahim M. El-Hasnony, Hazem El Bakry, and Ahmed [127] M. Yaqub, A. M. Raid and H. El-Bakry, “IMPROVING A. Saleh, “Comparative Study among Data Reduction E-LEARNING PERFORMANCE THROUGH SOCIAL Techniques over Classification Accuracy,” International COMMUNICATIONS,” International Journal of Intelligent Journal of Computer Applications, vol. 122, No. 2, July Computing and Information Science, Vol. 14, No.4, October 2015, pp. 8-15. 2014, pp. 73-85. [116] Samir Ziad, Hazem M. El Bakry, and Islam m. Abdelhady [128] Mohammed Khaleel, Hazem M. El Bakry, and Ahmed A. “A Proposed Framework for Ranking and Reservation of Saleh, “Developing E-learning Services Based on Cache Cloud Services Based on Quality of Service,” International Strategy and Cloud Computing,” International Journal Journal of Advanced Research in Computer Science & of Information Science and Intelligent System, vol. 3, No. Technology, vol. 3, issue 2, April-June 2015, pp. 195- 4, October 2014, pp. 45-52. 199 [129] Mohammed Yaqub, A. M. Raid, H. M. El-Bakry, Haitham A. [117] Ahmad Mosa, Hazem M. El Bakry, and Mervat Abuelkhir EL-Ghareeb “Online Social Learning Suggestion System “Cloud Computing in E-Government: A Survey,” Based On Student Behavior,” International Journal of International Journal of Advanced Research in Computer Advance Foundation and Research in Computer, vol. 1, Science & Technology, vol. 3, issue 2, April-June 2015, issue 10, October 2014, pp. 7-18. pp. 132-139. [130] Alaa Eissa, Hazem M. El Bakry, Mamoun H. Mamoun, [118] Abdelkareem M. Alashqar, Ahmad Abo Elfetouh, Hazem and Samir Zied, “Intrusion Detection In Wireless Sensor M. El Bakry, “ Evaluating User Interface Management Networks: A survey,” International Journal of Information Systems based on Quality Attributes and Unit Operations,” Science and Intelligent System, vol. 3, No. 4, October 2014, International Journal of Computer Applications, vol. 116, pp. 87-111. No. 9, April 2015, pp. 14-20. [131] Ebtsam Adel, Mohammed Elmogy, and Hazem El [119] Ahmad Ashraf, Hazem M. El Bakry, Samir M. Abd El-razek, Bakry, “Image Stitching based on Feature Extraction and Yehia El-Mashad “Handling big data in e-learning,” Techniques: A Survey,” International Journal of Computer International Journal of Advanced Research in Computer Applications, vol. 99, No. 6, August 2014, pp. 1-8. Science & Technology, vol. 3, issue 1, Jan.-March 2015, [132] Ahmed Ismail, Mohammed Elmogy, and Hazem M. El- pp. 47-51. Bakry, “Landmines Detection Using Autonomous Robots: [120] Abdelkareem M. Alashqar, Ahmad Abo Elfetouh, Hazem A Survey,” International Journal of Emerging Trends & M. El Bakry, “Requirement Engineering for Non-Functional Technology in Computer Science (IJETTCS), vol. 3, No. Requirements,” International Journal of Information and 4, July-August 2014, pp. 183-187. Communication Technology Research, vol. 5, No. 2, Feb. [133] Mohammed Yaqub, A. M. Raid, and H. M. El-Bakry, 2015, pp. 21-27. “Open Social Learning Network,” International Journal [121] Abdelkareem M. Alashqar, Ahmad Abo Elfetouh, Hazem of Computer Engineering and Intelligent Systems, vol. 5, M. El Bakry, “ISO9126 Based Software Quality Evaluation No. 7, July 2014, pp. 1-12. Using Choquet Integral,” International Journal of Software [134] Mohammed K. Kolkas, Hazem M. El-Bakry, and Ahmed Engineering & Applications (IJSEA), vol. 6, No. 1, Jan. Abou El Fetooh, “Integrated Data Mining Techniques 2015, pp. 111-121. in Enterprise Resource Planning (ERP) Systems,” [122] R. M. Elawady, S. Barakat, H. M. El-Bakry, and N. M. International Journal of Information Science and Intelligent Elrashidy, “ SENTIMENT ANALYSIS FOR ARABIC System, vol. 3, No. 2, April 2014, pp. 131-152. AND ENGLISH DATASETS,” International Journal of [135] Hazem M. El-Bakry, Ali E. Taki_El_deen, and Ahmed Intelligent Computing and Information Science, Vol. 15, Hussein Ali El tangy, “ Implementation of a Hybrid No.1, Jan. 2015, pp. 55-69. Encryption Scheme for SMS / Multimedia on [123] Mohammed Alkhawlani, Mohammed Elmogy, and Hazem Android,” International Journal of Computer Applications, M. El Bakry, “ Text-based, Content-based, and Semantic- vol. 85, No. 2, January 2014, pp. 1-5. based Image Retrievals: A Survey,” International Journal [136] Mosad Abdelwahab, Abd El-hamid, H. El-bakry, M. A. of Information Technology, Vol. 4, No.1, Jan. 2015, pp. El-dosuky, “3D Face Identification,” International Journal 58-66. of Information Science and Intelligent System, vol. 3, No. [124] Mohammed Yaqub, A. M. Raid, and Hazem M. El Bakry, 1, January 2014, pp. 121-136.

© 2013, IJARCST All Rights Reserved 22 www.ijarcst.com ISSN : 2347 - 8446 (Online) International Journal of Advanced Research in ISSN : 2347 - 9817 (Print) Vol. 7, Issue 3 (July - Sept. 2019) Computer Science & Technology (IJARCST 2019)

[137] Hazem M. El-Bakry, Ali E. Taki_El_deen, and Ahmed [149] Hazem M. El-Bakry, Ahmed A. Saleh and, Taghreed T. Hussein Ali El tangy, “A New Mobile Application for Asfour, “A Novel Adaptive E-Learning Model Based on Encrypting SMS/Multimedia Messages on Android,” Developed Learner’s Styles,” World Academy of Science, International Journal of Scientific & Engineering Research, Engineering and Technology, vol. 60, 2011, pp. 1946- Vol. 4, Issue 11, December 2013, pp. 300-304. 1953. [138] Hesham Ahmed Hassan, Hazem El-Bakry, and Hamada [150] Hazem M. El-Bakry, “Integrating Fast Karnough Map Gaber Abd Allah, “Design of Multi-Criteria Spatial Decision and Modular Neural Networks for Simplification and Support System for Improving Animal Production,” IAES Realization of Complex Boolean Functions,” International International Journal of Artificial Intelligence, vol. 2, issue Journal of Engineering and Applied Sciences, vol. 7, no. 3, September 2013, pp. 117-124. 4, 2011, pp. 217-226. [139] Islam S. Bedier, Hazem M. El-Bakry, and Hesham A. Arafat [151] A. A. Radwan, H. M. El-Bakry and H. M. El-hadaad, “A “A New Model for E-commerce Security,” International New Expert System For Pediatric Respiratory Diseases By Journal of Knowledge Engineering and Research, vol. 2, Using Neural Network,” International Journal of Computer No. 6, June 2013, pp. 217-231. Science and Information Security, vol. 9, no. 8, August, [140] Abdelghafar M. Elhady, Ahmed Abou Elfetouh S., 2011, pp. 11-17. Hazem M. El-bakry, and A. E. Hassan, “ Generic Software [152] A. M. Riad, Hazem M. El-Bakry, and Gamal H. El-Adl, Risk Management Framework for SCADA System,” “E-government Frameworks Survey,” International Journal International Journal of Computer Applications, vol. 70, of Computer Science Issues, vol. 8, issue 3, May 2011, pp. No. 3, May 2014, pp. 45-52. 319-323. [141] Mamoon H. Momoon, Hazem M. El-Bakry, and Amany [153] A. M. Riad, H. K. Elminir, H. M. El-bakry and H. A. El- A. Salama “Interactive Visualization of Retrieved Ghareeb, “ Supporting Online Lectures with Adaptive and Information,” International Journal of Knowledge intelligent Features”, International Journal of Research and Engineering and Research, vol. 2, No. 4, April 2013, pp. Innovation, Advances in Information Sciences and Service 217-231. Sciences (AISS), Vol.3 , No.1, 2011, pp. 47-53. [142] Mamoon H. Momoon, Hazem M. El-Bakry, and Amany A. [154] A. M. Riad, Hazem M. El-Bakry, and Gamal H. El-Adl, “A Salama “Visualization for Information Retrieval based on Novel DSS Framework for E-government,” International Fast Search Technology,” Indonesian Journal of Electrical Journal of Computer Science Issues, vol. 7, no. 6, November Engineering and Informatics, vol. 1, No. 1, March 2013, 2010, pp. 33-37. pp. 27-42. [155] Hazem M. El-Bakry, and Mohamed Hamada, “A Developed [143] Ahmed A. Saleh and Hazem M. El-Bakry, “Design and Watermark Technique for Distributed Database,” Springer, Modeling of Professional Training Centers,” International (CISIS’10), Lecture Notes in Artificial Intelligence and Journal of Knowledge Engineering and Research, vol. 2, Computer Science, AICS 85, 2010, pp. 173-180. No. 1, Jan. 2013, pp. 164-177. [156] Hazem M. El-Bakry, “Integrating Fast Karnough Map [144] N. S. Abu El-Ala, W. A. Awad and H. M. El-Bakry, “ and Modular Neural Networks for Simplification and Cloud Computing for Solving E-Learning Problems,” Realization of Complex Boolean Functions,” The World International Journal of Advanced Computer Science and Academy of Science, Engineering and Technology Applications, vol. 3, No. 12, December 2012, pp. 135- (WASET), International Journal of Computer and 137. Information Engineering, vol. 4, no. 3, 2010, pp. 356- [145] Hazem El-Bakry, and Mohamed Hamada, “Adaptive 370. E-Learning for Data Encoding and Computer Networks [157] Hazem M. El-Bakry, and Mohamed Hamada, “A Novel based on Learner’s Styles,” International Journal of Watermark Technique for Relational Databases,” Springer, Computer Networks and Security, vol. 22, issue 12, (AICI 2010), Lecture Notes in Computer Science 6320 December 2012, pp. 333-342. Springer 2010, pp. 226-232. [146] Hesham Ahmed Hassan, Hazem El-Bakry, and Hamada [158] Hazem M. El-Bakry and Nikos Mastorakis, “Fast Gaber Abd Allah, “A New Multi-Criteria Spatial Decision Forecasting of Stock Market Prices by using New High Support System for Improving Animal Production,” Speed Time Delay Neural Networks,” International Journal International Journal of Computational Linguistics and of Computer and Information Engineering, vol. 4, no. 2, Natural Language Processing, vol. 1, issue 12, December 2010, pp. 138-144. 2012, pp. 186-191. [159] M. Z. Rashad, Hazem M. El-Bakry, and Islam R. Isma’il, [147] Hala Abdel Hameed, Hazem M. El-Bakry, and Torky Sultan, “Diphone Speech Synthesis System for Arabic Using “An Efficient Simulator for Replication in Distributed MARY TTS,” International Journal of Computer Science Real-time Database Systems,” International Journal and Information Technology, vol. 2, no. 4, 2010, pp. 18- of Computational Linguistics and Natural Language 26. Processing, vol. 1, issue 4, November 2012, pp. 123- [160] Ahmed A. Saleh, Hazem M. El-Bakry, and Taghreed 131. T. Asfour, “Design of Adaptive E-Learning for Logic [148] Hala Abdel hameed, Hazem M. El-Bakry and Torky Sultan, Operations,” International Journal of Education and “Design of Efficient Dynamic Replica Control Algorithm Information Technologies, vol. 4, issue 2, 2010, pp. 49- for Periodic/Aperiodic Transactions in Distributed Real- 56. Time Databases,” International Journal of Computer [161] Hazem M. El-Bakry, and Ahmed Atwan, “Fast Business Science Issues, vol. 9, issue 1, no.2, Jan. 2012, pp. 72- Networks for Real-Time Applications,” International 80. Journal of Universal Computer Sciences, vol. 1, issue 1, www.ijarcst.com 23 © All Rights Reserved, IJARCST 2013 International Journal of Advanced Research in ISSN : 2347 - 8446 (Online) Computer Science & Technology (IJARCST 2019) Vol. 7, Issue 3 (July - Sept. 2019) ISSN : 2347 - 9817 (Print)

2010, pp. 41-50. [161] Hazem M. El-Bakry, and Ahmed Atwan, “Simplification and Implementation of Boolean Functions,” International Journal of Universal Computer Sciences, vol. 1, issue 1, 2010, pp. 19-33. [162] Hala Abdel hameed, Hazem M. El-Bakry and Torky Sultan, “A General Framework for Modeling Replicated Real- Time Database,” International Journal of Electrical and Computer Engineering, vol. 4, no. 8, 2009, pp. 505-511. [163] Hazem M. El-Bakry, and Mohamed Hamada “Fast Time Delay Neural Networks for Detecting DNA Coding Regions,” Springer, Lecture Notes on Artificial Intelligence (LNAI 5711), 2009, pp. 334-342. [164] Alaa M. Riad, Ahmed Atwan, Hazem M. El-Bakry, Sameh Abd El-Ghany and Nikos Mastorakis, “An Intelligent Distributed Algorithm for Efficient Web Image Retrieval,” International Journal of Communications, vol. 3, issue 3, 2009, pp. 63-76. [165] Hazem M. El-Bakry, and Ahmed Atwan, “ Improving Quality of Business Networks for Information Systems,” The International Journal of Computer, Information, and systems science, and Engineering, issue 3, vol. 3, July 2009, pp. 138-150. [166] Hazem M. El-Bakry, and Nikos Mastorakis, “Fast Word Detection in a Speech Using New High Speed Time Delay Neural Networks,” WSEAS Transactions on Information Science and Applications, vol. 5, issue 7, July 2009, pp. 261-270. [167] A. M. Riad, Hazem M. El-Bakry, and Haitham El-Ghareeb, “Mapping Different Software Architecture Paradigms to Different Integration Techniques: Highlighting Driving and Restraining Forces for Each Paradigm,” Journal of Convergence Information Technology, vol. 4, no. 2, June 2009, 22 pages. [168] Hazem M. El-Bakry, and Nikos Mastorakis, “Fast Information Retrieval from Web Pages,” WSEAS Transactions on Information Science and Applications, vol. 6, issue 6, June 2009, pp. 1018-1036. [169] Hazem M. El-Bakry, and Nikos Mastorakis, “Fast Image Matching on Web Pages,” WSEAS Transactions on Signal Processing, vol. 5, issue 4, June 2009, pp. 157-166.

© 2013, IJARCST All Rights Reserved 24 www.ijarcst.com