People with diabetes can develop different foot problems. In the blood stream glucose reacts with hemoglobin to make a glycosylated hemoglobin molecule called hemoglobin A1c or HbA1c, the more glucose in the blood the more hemoglobin A1c will be present in the blood. The HbAlc test is currently one of the best ways to check diabetes to be under control. The aim of study is to compare between the blood investigations which includes the fasting blood sugar and HbAlC (glycosylated hemoglobin), and to evaluate the benefit of HbAlc (measurement for diabetic patients with foot ulcer, to be a good indicator for controlling blood glucose). Sixty patients with type2 diabetes mellitus from the outpatient clinic of Baghdad Teachin
... Show MoreZinc oxide nanoparticles sample is prepared by the precipitation method. This method involves using zinc nitrate and urea in aqueous solution, then (AgNO3) Solution with different concentrations is added. The obtained precipitated compound is structurally characterized by X-ray diffraction (XRD), Scanning electron microscopy (SEM), Atomic force microscopy (AFM) and Fourier transform infrared spectroscopy (FTIR). The average particle size of nanoparticles is around 28nm in pure, the average particle size reaches 26nm with adding AgNO3 (0.05g in100ml =0.002 M) (0.1g in100ml=0.0058M), AgNO3 (0.2g in 100ml=0.01M) was 25nm. The FTIR result shows the existence of -CO, -CO2, -OH, and -NO2- groups in sample and oxides (ZnO, Ag2O).and used an
... Show MoreLocal and global bifurcations of food web model consists of immature and mature preys, first predator, and second predator with the current of toxicity and harvesting was studied. It is shown that a trans-critical bifurcation occurs at the equilibrium point
Background: Colorectal Cancer (CRC) is one of the most serious health problems and Herpes viridae may hasten the progression of colon cancer. Aim: The purpose of conducting this research is to investigate the existence of Herpes Simplex Virus (HSV1) infection in samples of Colorectal Cancer (CRC) compared with normal tissue. Material and Methods: 40 samples of tissues (30 patients ) with CRC, and (10 samples) of normal tissue (without cancer) were obtained, for immunohistochemically analysis of Herpes Simplex Virus (HSV1) expression Results: The results showed no significant data to justify the link between both Herpes Simplex Virus (HSV1) and human colorectal cancer. Despite of presence of Herpes Simplex Virus (HSV1) found in
... Show MoreThis paper is devoted to investigate the effect of burning by fire flame on the behavior and load carrying capacity of rectangular reinforced concrete rigid beams. Reduced scale beam models (which are believed to resemble as much as possible field conditions) were suggested. Five end restrained beam specimens were cast and tested. The specimens were subjected to fire flame temperatures ranging from (25-750) ºC at age of 60 days, two temperature levels of 400ºC and 750ºC were chosen with exposure duration of 1.5 hour. The cast rectangular reinforced concretebeam (2250×375×375 mm) (length× width× height respectively) were subjected to fire. Results indicate remarkable reduction in the ultrasonic pulse velocity and rebound number of
... 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.