This paper is attempt to study the nonlinear second order delay multi-value problems. We want to say that the properties of such kind of problems are the same as the properties of those with out delay just more technically involved. Our results discuss several known properties, introduce some notations and definitions. We also give an approximate solution to the coined problems using the Galerkin's method.
This study aimed to explain the criteria of managers at different levels of nursing in selecting effective nursing diagnosis.
In conventional content analysis, 10 nursing managers at different levels including head nurse, supervisor, and nursing manager were interviewed. Data was collected with semi-structured interviews and a narrative approach. Data analysis was performed using the Zhang–Wildemuth method simultaneously with sampling.
Background: Metabolic syndrome (MetS) is a collection of connected cardiovascular risk factors that characterizes the complicated illness. The waist circumference cutoff point fluctuation has so far defined Mets. Objective: This study aimed to determine the cutoff point for WC in healthy Iraqi adults. Methods: This cross-sectional survey establishes the standard value for WC among 300 healthy university students in Wasit city, Iraq. They are aged between 18-25 years. The receiver operator characteristic (ROC) curve was used WC to predict the presence of two or more risk factors for MetS, as defined by IDF. Results: The cutoff level yielding maximum sensitivity and specificity for predicting the presence of multiple risk factors was
... Show MoreThe aim the research that definition on the impact a lot of Analysis and evaluation jobs impact in support the employees performance the property that are Analysis and evaluation jobs is one of the jobs however of the human resource management on organization and the impact footpace big on the chractericties and performance of the people and the impact that success of the organization , And here problem stool of the research in the omission the role for the Analysis and evaluation jobs impact in support the employees performance from the upward management in the organization , Polls were adopted as tools for obtaining data and the Depart
... Show MoreAbstract Physical requirements are an important priority for the development of football gymnastics coaches because the nature of performance is interconnected and interconnected in terms of the player's duties in the match. In the gameplay situations, the player must perform the skill with strength and speed coupled with accuracy and the reactions of the colleague and competitor alike, which represents the normal reality of the football gymnasium Skilled exercises are one of the most suitable technical side exercises as they are built according to the components of the skill requirements of the game and the nature of its performance, which appear on the gro
... Show MoreBACKGROUND: Mental health problems are reflected and linked to human behavior in many aspects. Medical students are susceptible to a wide variety of events that compromise their mental well-being, social life as well as their academic achievements. AIM: This study aimed to find the impact of social support on medical students’ behavior in Iraq via assessing their depression, anxiety, and stress status. METHODS: A cross-sectional online survey-based study targeted all medical students in Iraq. The employed questionnaires covered mental health status of participants by evaluating their perceptions of depression, anxiety, and stress using. Data were analyzed using the Statistical Analysis System. RESULTS: The study revealed a signifi
... Show MoreAbstract: The aim of this study is to assess the effectiveness of 940 nm diode laser in comparison to Endoactivator in elimination of smear layer in terms of radicular dentin permeability and ultra-structural changes of root canal walls by SEM evaluation. Twenty-eight single-rooted extracted lower premolars were instrumented up to size X4 (protaper Next, Dentsaply) and divided into two experimental groups according to the irrigation system, G1; activated by EndoActivator and G2; activated by Diode laser 940 nm, CW mode, 1.7 W. Afterward, the roots were made externally impermeable, filled with 2%methylene blue dye, divided horizontally into three segments representing the apical, middle, and coronal thirds then examined under stereo- micr
... 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.