Online service is used to be as Pay-Per-Use in Cloud computing. Service user need not be in a long time contract with cloud service providers. Service level agreements (SLAs) are understandings marked between a cloud service providers and others, for example, a service user, intermediary operator, or observing operators. Since cloud computing is an ongoing technology giving numerous services to basic business applications and adaptable systems to manage online agreements are significant. SLA maintains the quality-of-service to the cloud user. If service provider fails to maintain the required service SLA is considered to be SLA violated. The main aim is to minimize the SLA violations for maintain the QoS of their cloud users. In this res
... Show MoreDiabetes exacerbates frailty syndrome in elderly adults, with long-term protein and calorie deficiencies contributing to physical decline and worsening health outcomes.
To assess nutritional status and frailty amongst elderly people with diabetes mellitus and to find out the relation between these two variables.
An analytic cross-sectional study was conducted amongst 650 elderly with diabetes mellitus at two endocri
Background: The oral cavity is considered as a complex ecological niche, its complex microbial community is reflected to it. Streptococcus mutans has been implicated as one of the major etiological factor of dental caries. Tooth surfaces colonized with Streptococcus mutans are at a higher risk for developing caries, while lactobacilli are considered as the secondary invaders, not initiators of the carious lesion. The main purpose of this study was to correlate the dental caries (for primary and permanent teeth) in the upper jaw with the streptococcus mutans and lactobacilli count in the dental plaque and saliva, also to correlate the dental caries (for primary and permanent teeth) in the lower jaw with the streptococcus mutans and lactobaci
... Show MoreThis work is concerned with the vibration attenuation of a smart beam interacting with fluid using proportional-derivative PD control and adaptive approximation compensator AAC. The role of the AAC is to improve the PD performance by compensating for unmodelled dynamics using the concept of function approximation technique FAT. The key idea is to represent the unknown parameters using the weighting coefficient and basis function matrices/vectors. The weighting coefficient vector is updated using Lyapunov theory. This controller is applied to a flexible beam provided with surface bonded piezo-patches while the vibrating beam system is submerged in a fluid. Two main effects are considered: 1) axial stretching of the vibrating beam that leads
... Show MoreThe problem of Bi-level programming is to reduce or maximize the function of the target by having another target function within the constraints. This problem has received a great deal of attention in the programming community due to the proliferation of applications and the use of evolutionary algorithms in addressing this kind of problem. Two non-linear bi-level programming methods are used in this paper. The goal is to achieve the optimal solution through the simulation method using the Monte Carlo method using different small and large sample sizes. The research reached the Branch Bound algorithm was preferred in solving the problem of non-linear two-level programming this is because the results were better.
This study was carried out to describe the gene expression of the micro RNA 122a gene with the development of diabetes in Iraq. The difference in gene expression between patients and healthy controls was properly considered. In this study, blood was isolated from 121 individuals divided into two groups as follows: 80 samples of diabetic patients and 41 samples from a healthy control. miRNA was isolated and transformed into cDNA, and the expression of mi122a was measured by qRT-PCR. The researchers looked at the relationship between age and gender and the occurrence of diabetes, as well as how they compared to controls. When comparing the mean gene expression level (Ct) of patient groups to the corresponding Ct means in the control group, th
... Show MoreBackground. Material tribology has widely expanded in scope and depth and is extended from the mechanical field to the biomedical field. The present study aimed to characterize the nanocoating of highly pure (99.9%) niobium (Nb), tantalum (Ta), and vanadium (V) deposited on 316L stainless steel (SS) substrates which considered the most widely used alloys in the manufacturing of SS orthodontic components. To date, the coating of SS orthodontic archwires with Nb, Ta, and V using a plasma sputtering method has never been reported. Nanodeposition was performed using a DC plasma sputtering system with three different sputtering times (1, 2, and 3 hours). Results. Structural and elemental analyses were conducted on the deposited coating
... 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.