Environmental pollution is regarded as a major problem, and traditional strategies such as chemical or physical remediation are not sufficient to overcome the problems of pollution. Petroleum-contaminated soil results in ecological problems, representing a danger to human health. Bioremediation has received remarkable attention, and it is a procedure that uses a biological agent to remove toxic waste from contaminated soil. This approach is easy to handle, inexpensive, and environmentally friendly; its results are highly satisfactory. Bioremediation is a biodegradation process in which the organic contaminants are completely mineralized to inorganic compounds, carbon dioxide, and water. This review discusses the bioremediation of petroleum-contaminated soil and the limiting factors that affect it. Furthermore, the advantages and disadvantages of the bioremediation process are reported.
Due to the importance of nanotechnology because of its features and applications in various fields, it has become the focus of attention of the world and researchers. In this study, the concept of nanotechnology and nanomaterials was identified, the most important methods of preparing them, as well as the preparation techniques and the most important devices used in their characterization.
The aim of the research is to diagnose and analyze the gap between the actual reality and the application of the eighth requirement (operation) in the National Insurance Company in accordance with the international standard specification for the quality management system (ISO 9001:2015), which is related to the planning, implementation and control of operations, which would raise the level of performance of employees and be reflected in the provision of An appropriate service for the faithful, as the reality of the condition of the requirement was studied by identifying the strengths and weaknesses of the system to diagnose the gap and find ways to address it. A workshop was held with company officials, through which questions were raise
... Show MoreFacing the Iraqi economy, a number of economic challenges that threaten the future of Iraq and the security of economic, political and social, such as poverty, unemployment, inflation and the dilapidated infrastructure and rising production costs and administrative and financial corruption, environmental pollution, water problems and the deterioration of agricultural and industrial production, etc., and over the seriousness of these challenges, they are intertwined and overlapping and growing worse, without the corresponding adoption of state strategies that will develop appropriate solutions and appropriate to resolve those challenges because of concern the subject of security and terrorism, which requires the development of an
... Show MoreNowadays, cloud computing has attracted the attention of large companies due to its high potential, flexibility, and profitability in providing multi-sources of hardware and software to serve the connected users. Given the scale of modern data centers and the dynamic nature of their resource provisioning, we need effective scheduling techniques to manage these resources while satisfying both the cloud providers and cloud users goals. Task scheduling in cloud computing is considered as NP-hard problem which cannot be easily solved by classical optimization methods. Thus, both heuristic and meta-heuristic techniques have been utilized to provide optimal or near-optimal solutions within an acceptable time frame for such problems. In th
... Show More
In past years, structural pavement solution has been combined with destructive testing; these destructive methods are being replaced by non-destructive testing methods (NDT). Because the destructive test causes damage due to coring conducted for testing and also the difficulty of adequately repairing the core position in the field. Ultrasonic pulse velocity was used to evaluate the strength and volumetric properties of asphalt concrete, of binder course. The impact of moisture damage and testing temperature on pulse velocity has also been studied. Data were analyzed and modeled. It was found that using non-destructive testing represented by pulse velocity could be useful to predict the quality of asphalt c
... Show MoreA skip list data structure is really just a simulation of a binary search tree. Skip lists algorithm are simpler, faster and use less space. this data structure conceptually uses parallel sorted linked lists. Searching in a skip list is more difficult than searching in a regular sorted linked list. Because a skip list is a two dimensional data structure, it is implemented using a two dimensional network of nodes with four pointers. the implementation of the search, insert and delete operation taking a time of upto . The skip list could be modified to implement the order statistic operations of RANKand SEARCH BY RANK while maintaining the same expected time. Keywords:skip list , parallel linked list , randomized algorithm , rank.