n this paper, we formulate three mathematical models using spline functions, such as linear, quadratic and cubic functions to approximate the mathematical model for incoming water to some dams. We will implement this model on dams of both rivers; dams on the Tigris are Mosul and Amara while dams on the Euphrates are Hadetha and Al-Hindya.

This experimental study demonstrates the gable-reinforced concrete beams’ behavior with several number of openings (six and eight) and posts’ inclination, aimed to find the strength reduction in this type of beam. The major results found are: for the openings extending over similar beam length it is better to increase the number of posts (openings),
There are numerous ways to define the traits of influential professors, including behavior (such as warmth, civility, and clarity), knowledge (of subject matter and students), and beliefs, among many others. According to research; influential teaching can also defined as the capacity to improve student achievement. This; is only one way to express effectiveness, as stated. However; the preferred definition of high-quality teaching in the United States and many other countries is teacher effects on student achievement. Therefore; this study aimed to determine the characteristics of influential professors in Online Teaching at the English department. This study; believed to be significant for college professors who will show them how
... Show MoreSuggestive ambiguity is a strategy of defense and maneuvering as it provides the speaker both protection and function. To put it differently, it helps the speaker to say whatever he likes and at the same time gives his opponents and friends the interpretation they desire. This is possible due to the flexibility of the linguistic expressions that the speaker uses. To be more clear, the context of situation, peoples' background and world knowledge interact with the significance of the linguistic expressions reaching an allusive situation where two interpretations, positive and negative, are available to the addressees. Such situation enables the addressers to implicate different ideas or messages, accusations, inciting violence, etc. The pres
... 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.