Monday, January 27, 2020

Categories of client-server architecture and problems faced by hures

Categories of client-server architecture and problems faced by hures Question One: Do you think the problems faced by Hures, both past and present, are unique? Why or why not? I consider the problem faced by Hures, both past and the present are not unique. I understand the fact that, client server computing had an huge impact on the organization but as with all new technologies, there are many confronts and questions with hard to find answers. To solve this issue, Hures can use the client/server architecture, which is divided into following categories: 1. Client server architecture 2. One-Tier architecture 3. Two-Tier architecture 4. Three-Tier architecture 5. N-Tire architecture Client server architecture: Client-server explains the relationship between two computer programs in one, the client program, makes a service request to another, the server program, explains communication between any end nodes and a shared resource. Servers differ in size and functionality and can be anything from a PC based server, to a midrange computer, to a main frame. Client server architecture is totally flexible to Hures multiple client program. Client server architecture in which the presentation, the application processing, and the data management are logically a separate process, which makes it very flexible and expandable approach to building system software. Unlike typical client/server applications, this architecture services multiple clients, supports client disconnection and provides a flexible framework for adding application. Hures is a leading human resources service provider using TCP/IP. Hures should also consider using a communication protocol such as the shared variable which gives a higher level application programming interface (API) and abstracting the lower level details, such as handling multiple clients. One -Tier Architecture: One tier application is a simple program which no needs to access the network when it is running. This one tier application includes most of the simple desktop applications like word processors or compilers. One tier architecture application runs on a single computer. Web browser is part of a two-tier application (a Web server being the other part). But what happens if that Web browser downloads a Java applet and runs it? If the applet doesnt access the network while running, is it a one-tier or two-tier application? For present purposes, we will say that the self-contained applet is a one-tier application, since it is contained entirely on the client computer. One-tier architecture has a huge advantage, simplicity being one of them. No One-tier applications handle any network protocols, so their code is simple. The users requests dont need to cross the network, wait for their turn at the server. This has the added effect of not weighing down your network with extra traffic, and not weighing down your server with extra work. Two-Tier architecture: Two-tier architecture actually has got three parts which are client, server, and protocol. The protocol links the gap between the client and server tiers. The two-tier design is very effective for network programming as well as for GUI programs, in which you can allocate functionality to the host. GUI code lives on the client host, and the so-called business logic lives on the server host. Two-tier application is a client-server program with a GUI front-end written in a high-level language like Java, C++, or Visual Basic. In the two-tier program, you can see the clear separation between front and back tier. Hures input is given by the HTTP get request, via an HTML form which the user fills out. Its output is one or more HTML files. All the calculation happens on the server. In some cases, you can write a two-tier application without writing a server or designing a protocol. For example, you can write a Web browser that talks to a Web server using the HTTP protocol. However, if you have to write your own server, or design and execute your own protocol, you can spend more time writing your program than you would if you were writing a one-tier application. Three-Tier architecture: A three-tier will need to store data on a server. The information is stored on the file system. However data honesty issues arise when multiple clients ask the server to do tasks. Since file systems have concurrency controls at best common solution is to add a third program or database. Databases specialize in storing, retrieving, and indexing data. Just as two-tier architecture separates GUI and business logic, three-tier architecture lets you to separate business logic and data access. You can also offer highly optimized data indices and retrieval methods, and provide for replication, backup, redundancy, and load-balancing procedures specific to your datas needs. Separating code into client and server code increases the scalability of your application so does placing data on a dedicated process, host, or series of hosts. SQL RDBMS, like those from Oracle and Sybase, other database types. You may have heard the names of some of these other types OODBs, ORDBs. The three tier architecture has the following three tiers: Presentation Tier: This is by far the top upmost level of the application. This tier displays information related to such services as browsing merchandise and shopping cart. Application Tier: Is the logic tier pulled out from the presentation tier. This controls application by performing detailed processing. Data Tier: consist of database server. Here the information is stored and retrieved. N-Tire architecture: N-tier architectures are the best thing to happen to computer since the vacuum tube. Proponents of CORBA, EJB, and DCOM believe that every new application should be written, and every existing application should be retrofitted, to support their favorite spec. In the universe of distributed objects thus imagined, writing a new application is as simple as choosing objects and sending messages to them in high-level code. The distributed object protocol handles the wicked, low-level details of parameter marshaling, networking, locating the remote objects, transaction management, and so forth. A good example of N tier application is a stock trading system. In this system, we have multiple data feeds arrive from different sources, multiple databases are accessed and multiple clients run specialized applications. It makes sense to merge together the disparate patches in this quilt with the thread of common distributed object architecture, like CORBA or EJB CORBA is a mechanism in software for normalizing the method-call semantics between application objects that live in either in the same address space (application) or remote address space (same host, or remote host on a network). CORBA uses an interface definition language (IDL) to specify the interfaces that objects will present to the outside world. In addition to giving users with a language and a platform-neutral remote procedure call specification, CORBA defines commonly needed services such as transactions and security, events, time, and other domain-specific interface mod A CORBA implementation comes with a tool called an IDL compiler which converts the users IDL code into some language-specific generated code. A traditional compiler then compiles the generated code to create the linkable-object files for the application. Key: ORB vendor supplied code ORB vendor tool generated code User defined application code Advantages: 1. Client- server architecture enables the roles and responsibilities of a computing system to be distributed among several independent computers. Which are known to each other only through network Advantages of this would be greater ease of maintenance I.e. it is possible to replace, repair, upgrade or even relocate 2. All the data are stored on the server, has a far greater security and protection. Severs can better control access and resources, to guarantee that only those clients with the appropriate permission may access and change data. 3. Data storage is centralised, which makes it very easier to update. Disadvantages: 1. Traffic congestion on the network will be an issue. As the number of simultaneous client request to a given server increases, the server can become over loaded. Where with P2P network, its bandwidth actually increases as more nodes are added. 2. The client-server paradigm lacks the robustness of a good P2P network. Under client-server, should a critical server fail, clients requests cannot be fulfilled. In P2P networks, resources are usually distributed among many nodes. Even if one or more nodes depart and abandon a downloading file, for example, the remaining nodes should still have the data needed to complete the download. Question Two: Suggest alternative architectures that could be used to overcome the problems faced by Hures current Client/Server technology The alternative architecture that could be used to overcome this issue, would be the common object request broker architecture (CORBA). This is the most successful representative of an object-based distributed computing architecture. CORBAs service context gives an efficient and stylish design and implementation approach for building distributed systems. Java RMI (Remote Method Invocation) cant easily support transparent service-context propagation without incrementing the underlying protocol. This article describes a generic lightweight solution for supporting transparent and protocol-independent service-context propagation over RMI. Reflection-based techniques are used to emulate whats normally seen in protocol-specific service-context implementations. This article introduces you to a real-world solution and the related distributed-computing design concept, as well as Java reflection techniques. We start with an overview of the CORBA object request broker (ORB) interceptor and the service-context design architecture. Then a concrete implementation example describes the actual solution and demonstrates how RMI invocation is actually massaged to propagate service-context data, such as transaction context, which is usually offered through the IIOP (Internet Inter-ORB Protocol) layer. Lastly, performance considerations are discussed. Interceptor and service context in CORBA In the CORBA architecture, the invocation interceptor plays an important role in the function provided by the ORB runtime. Generally speaking, four interception points are available through the ORB runtime. As shown in Figure 1, these interception points are for: 1. Out bound request message from the client process 2. In bound request messages to the server process 3. Out bound response messages from the server process 4. In bound response messages to the client process Question Three: One of the suggestions proposed by Hures IS department is the use of intranet web technology. Examine the pros and cons of such an idea. An intranet is a personal computer network that uses internet technologies to securely share any part of an organisations information or operational system with its employees. Intranet shares most of the characteristics of the Internet, but in at least one way, its fundamentally different. And just as the Internet has had profound effect on how we communicate, intranets have transformed the business world as well. HURES has small businesses have implemented this network infrastructure, improving productivity while reducing costs. As I mentioned earlier, the intranet has very similar characteristics to internet, this also backed by the fact that, intranet is built from the same concepts and technologies used for the internet, such as client-server computing and the internet protocol (TCP/IP). All the well known internet protocol such as HTTP (web services), SMTP (e-mail) and FTP (file transfer) are also found in intranet. Intranet is designed to use within small business, university or organisation. What makes them different from the internet is that, internet are freely accessible, where as intranet is a private network by using off-the-shelf Internet technology, intranets solve this problem, making internal communication and collaboration. Traditionally, corporations relied on proprietary hardware and software systems to network its computers, a costly and time-consuming process made more difficult when offices are scattered around the world. Even hardware platforms, file formats and software are not an easy task. Much easier Intranets use HTML to create documents and TCP/IP to transmit information across the network. Information is stored on one or more company servers and accessed by using a web browser, this self-contained, miniature Internet can have all the same featuresindividual home pages, newsgroups, e-mailbut access is restricted to employees and contractors. For Hures employees they already familiar with surfing the Web, learning how to navigate the company intranet requires little training. Intranet web pages have the same point-and-click interface. While its useful for an intranet to connect to the Internet, its certainly not essential. Even if they do connect externally, companies restrict access to their intranet from the Internet by building a firewall. With so much corporate information available on internal servers, security is essential. At the beginning life was simple. Computers were separate individual devices. Programs had access to all the computers input and output through computer-connected devices. The life became complicated with invention of networks. We now have to write programs that depend on other programs running on far away computers. A brief definition: A distributed application is a system comprised of programs running on multiple host computers. The architecture of this distributed application is a sketch of the different programs, describing which programs are running on which hosts, what their responsibilities are, and what protocols determine the ways in which different parts of the system talk to one another. Three-tier application adds a third program to the mix, usually a database, in which the server stores its data. The three-tier application is an incremental improvement to the two-tier architecture. The flow of information is still essentially linear: a request comes from the client to the server; the server requests or stores data in the database; the database returns information to the server; the server returns information back to the client. N-tier architecture, on the other hand, allows an unlimited number of programs to run simultaneously, send information to one another, use different protocols to communicate, and interact concurrently. This allows for a much more powerful application, providing many different services to many different clients. However, the leap from three-tier to n-tier or the leap from one- to two-tier, or from two- to three-tier, for that matter must not be taken lightly. Its easy to open a can of worms, but you always need a bigger can to put them back in. The proponents of these technologies are infatuated with their advantages, and often fail to mention the disadvantages of jumping to a more complicated architecture. In this article, I will discuss the advantages and disadvantages of each style of architecture, and give you some information that will help you choose the right architecture for your application. Consider these reasons before choosing a product because its fact sheet promises to make your life easier. Here is the table summarizing the advantages and disadvantages of using Intranets: Advantages Disadvantages Fast, easy, low cost to implement Management fears loss of control Connectivity with other system Hidden costs Many Tools available Potential for chaos Access to internal and external information Unauthorized access Improves communication Information overload lowers productivity Can capture and share knowledge Increase collaboration and coordination Supports links with customers and partners Question Four: Do you think the popularity of intranets and the Internet pose threats to traditional Client/Server systems? Intranet and your public website on the open Internet are two dissimilar information spaces and should have two different user interface designs. It is alluring to try to save design resources by reusing a single design, but it is a bad idea to do so because the two types of site vary along several dimensions. Intranet users are your own employees who know a lot about the company, its organizational structure, and special terminology and circumstances. Your Internet site is used by customers who will know much less about your company and also care less about it. The intranet is used for everyday work inside the company, including some quite complex applications; the Internet site is mainly used to find out information about your products. The amount of information varies. An intranet has between ten and a hundred times as many pages as the same companys public website. The difference is due to the general amount of work-in-progress that is documented on the intranet and the fact that many projects and departments never publish anything publicly even though they have many internal documents. Bandwidth and cross-platform needs vary. Intranets often run between a hundred and a thousand times faster than most Internet users Web access which is stuck at low-band or mid-band, so it is possible to use rich graphics and even multimedia and other advanced content on intranet pages. Also, it is sometimes possible to control what computers and software versions are supported on an intranet. Intranet and your website are two different information spaces. They should look different in order to let employees know when they are on the internal net and when they have ventured out to the public site. Different looks will highlight the sense of place and thus make easy navigation. Also, making the two information spaces feel different will make easy an understanding of when an employee is seeing information that can be freely shared with the outside and when the information is internal and confidential. An intranet design should be much more task-oriented and less promotional than an Internet design. A company should only have a single intranet design, so users only have to learn it once. Therefore it is acceptable to use a much larger number of options and features on an intranet since users will not feel scared and overwhelmed as they would on the open Internet where people move rapidly between sites. An intranet will need a much stronger navigational system than an Internet site because it has to encompass a larger amount of information. In particular, the intranet will need a navigation system to facilitate movement between servers, whereas a public website only needs to support within-site navigation. The extranet is a blend of the public Internet and the closed intranet and needs to be designed as such. Fundamentally, an extranet is a part of the Internet since it is accessed by people in many different companies who will be using your public website but will not have access to the truly internal parts of your intranet. Therefore, the visual style and main navigation options of the extranet should be visibly similar to the design of your Internet site your business partners should feel that the two sites come from the same company. A subtle difference in the two styles (e.g., complimentary colour tones) will help emphasize the closed and confidential nature of the extranet. REFERENCES: 1. Gallaugher, J. Ramanathan, S. Choosing a Client/Server Architecture. A Comparison of Two-Tier and Three-Tier Systems. Information Systems Management Magazine 13, 2 (Spring 1996): 7-13. Author: Berson, Alex Title: Client-server architecture / Alex Berson. Published: New York : McGraw-Hill, c1992. Series: J. Ranade series on computer communications 2. Client Server survival guide 3rd edition, by: Robort orfali, dan harkey,jeri Edwards, 1999 john wiley sons Canada 3. Adler, R. M. Distributed Coordination Models for Client/Sever Computing. Computer 28, 4 (April 1995): 14-22. 4. http://www.greatconnect.com/interapps.htm 5. http://en.wikipedia.org/wiki/CORBA#Overview 6. http://www.javaworld.com/javaworld/jw-01-2000/jw-01-ssj-tiers.html?page=1

Sunday, January 19, 2020

Islamic Country Business Practice Are Differ from Us Essay

Do I thing business practices in Islamic country are likely to differ from business practices in the United States? If so how? Yes, I agree with this statement that business practices in Islamic country are differ from business practices in the United States. When a business organization is capable and qualified enough to meet up the national demand then they can operate business crossing to the border. When a company operates is business activities more than one country having its own branch office in the host countries then it can be called international business. As multinational business is operated in more than one country so there must be an influence of the several host countries to operation and functional activities of the business. When business practices are doing between Islamic country and United States that time we faces some different between those countries. And those are as follows: Language is the first and foremost aspects of international business. As every country has its own language. They obviously prefer that their language is highly evaluated. Moreover to make them understand it is better to express them in their own language. For Islamic country their local language is Arabic, Hebrew etc. and on the other hand English is the local language in U.S. if they each other language then as a result their profitability will be increased and the growth of the business practices is ensured. Laws are based on the Muslim Holy Book, the Quran. The system is often known as â€Å"Sharia† but their business rules and regulation are not so strict. In United states their laws are very strict for export their product in other countries for this strict rules and regulation it decreased other countries to import product from them. It make difficult to business practices between Islamic country and United States. Religion is also an essential part of a country’s culture which influences business. Islamic countries people are Muslim religious and U.S. people are as Christians, Jews religious. If we want to express it in the way of fashion like western fashion and eastern fashion. Muslim countries like to weal long veil or covered dress whether the western countries like to wear short dress pattern. Islamic countries people are pray five times in a day, they doing fast a whole month of Ramadan, and they follow Friday as holiday. But in U.S. countries celebrate Christmas day and they follow Sunday as holiday. And those different make critical to business practices between Islamic countries and United States. Education also plays a vital role in their purchasing power as well as their attitude and consumption patterns too. If they people are educated in a country the income level and quality awareness must be higher. They will not be price biased rather than they would be quality biased. This thing also differ business practices between Islamic country and United States. The Islamic countries people are tend to be very hospitable and regard treating guests with generosity and warmth as a point of personal honor. The common practice in Islamic country is to shake hand at first meeting and again upon leaving. In Islamic country people maintain closer physical proximity while taking and conversation often involve more physical contact than is common in the United States. When a guest in an Arab person’s home, avoid giving gifts of food or drink. Through this may be common practice in the United States, in the Middle East such gifts imply that the host is inadequate. Product acceptability is also a major point for business practices in different country. Like hard drinks and poke types of product are not allowed in Muslim country but those types of product are available and allow in United States. So it’s also being a different between Islamic country and United States business practices. The weather pattern is also an important aspect of international business practices. For example the clothing pattern of cold country and the high temperature country will not be same. As well as the cosmetics pattern of the clod and hot weather country will not be same. Most of the Islamic country weather is hot so when U.S. goes for their business practices those countries they must match the weather. Business practices are also differing by population, income rate, economic growth rate, heritage so many things are related with business. In fine it can be said that to operate international business efficiently we must have sufficient knowledge of their cultural pattern, their attitude, buying pattern, behavior, response to a decision, sensitive issues of their culture, their belief, and always be prepared to handle any sorts of uncertainty to overcome them. Then we can hope the growth of the business firm in the foreign country in competitive environment and their changing pattern as well durability.

Saturday, January 11, 2020

The best place to live in the world – Montenegro

There are many beautiful places in the world that offer people a nice and comfortable life, regardless of some minor problems that exist even in the most developed countries in the world. One of those places where life is pleasant is Montenegro. Actually, it is not one of the nice places, but it is the best place to live among all of those beautiful places. Montenegro was a republic of former Yugoslavia, and it recently became a part of a new state called Serbia and Montenegro. Although it is a small place with about six hundred thousands people living there, Montenegro has everything that a big place can offer for living. Its schools, hospitals, public transportation, and various institutions that are important for making life comfortable are all organized as in any other developed country. But what this place distinguishes from all other places in the world are the following characteristics: climate, seaside, nature, sustainable development, mountains, and many other important factors that determine the attractiveness of Montenegro. The climate is the most significant factor that makes the life in Montenegro unique. There are all of the four seasons throughout a year. Winter, spring, summer and autumn are all equally important seasons. The whiteness of snow and the fresh air of a winter day, the exhilarating feeling of spring and melting of the white cover in spring time, the constant sunshine in summer, and the calm yellow color of falling leaves in autumn are all factors that determine the physical and the mental health of people. For example, winter brings fresh air and various snow sports can be played at this time to improve the physical condition, while the colors of spring can affect our mood and determine ones mental state. Although it seems that one place having four seasons is a widespread appearance, it is not the case very often. Many places have only one season, and many of them have two seasons, usually summer and winter combined. Definitely, the splendor and benefits of all of the four seasons cannot be replaced by any other advantage that any place in the world can offer to its citizens. Furthermore, the beautiful Montenegro is set on the Adriatic coast. All its beaches have kept their natural beauty; there is no artificial sand as it is the case with many famous beaches all over the world. The beaches vary from very long to quite small. Some of the largest reach up to three kilometers. Some of the main advantages of the long beaches are that entrance on these beaches is always free, price of food and beverage is lower, and the offer of sport and entertainment programs is wider. On the other hand, the small beaches can offer more privacy. Business people who want to escape from everyday duties and responsibilities, and who want to spend their holiday in a peaceful environment usually visit these more expensive and serene beaches. In addition, Montenegro has some very small beaches that are very difficult to reach, or they can be reached only by boat. They offer an extra quiet holiday for only a couple of people who want to be in a complete isolation. Thus the advantage of Montenegrin seaside is that there are different kinds of beaches created to meet needs of different people. Moreover, there are many foreign investors who recognized the potential of Montenegrin cost for tourism, and whose investments should make the cost even more attractive. Since the core consequence of the investments would be increased population (because of newly build facilities), the conservation of the environment could be in question. In order to protect nature from the consequences of the new investments, the government of Montenegro issued some regulations that protect natural beauties of Montenegro. Therefore, one of the main conditions for the foreign investors who want to invest in development of the tourism was not to destroy nature, but to make it better and more attractive. The investors will have to find out new ways of maintaining water, air, beaches and parks clean and unpolluted while building new facilities and bringing tourists into Montenegro. These environmental regulations are very significant because they help sustainable development of this wonderful place. Beside fabulous seaside, Montenegro has two mountains. On one of them, there is a ski center that is visited not only by domestic visitors, but by foreign tourists as well. The domestic guests benefit a lot from having the ski center in Montenegro. First of all, they do not have to travel abroad in wintertime when the trip can be unpleasant because of wet and slick roads. Than, prices are much lower than anywhere abroad, which allows people to stay longer for the same amount of money than they would stay anywhere else. Also, because of the convenient climate in wintertime, the quality of snow is mostly excellent, which means that artificial snow is never used. That is very important for skiers (especially for professionals), because quality of snow directly affect quality of skiing. To sum up, Montenegro is definitely the best place to live in the world. Some of the convincing reasons have already been mentioned, but there are many of them that could be further discussed and used as the supporting material. This small place that offers everything needed for pleasant and comfortable life, say enough for itself. Whoever visits it or comes to live there is amazed by its gorgeousness, and wish to stay to live there. Therefore, I have not been trying to convince readers that Montenegro is the best place, but to convince them to visit it. Once they visit it, the people will have their own opinion that can be nothing else but that Montenegro is the best place on earth.

Thursday, January 2, 2020

The Value Of Faith And Religion - 1479 Words

Shayndel Saldana Mr. Woods English II February 10, 2017 The Value of Faith and Religion We often take advantage of the First Amendment of the United States Constitution that states that we have the right to practice any religion we desire. It is a civil right many people do not appreciate nearly enough. We do not realize that people in other countries do not have this privilege. In other countries, innocent people are being persecuted, killed, and tortured because of their religion and their religious practices. The most notable is the genocide of Jews during World War II. Many Jews were killed by Nazis and many more died in the concentration camps due to the harsh and cruel conditions they were forced to endure. Unfortunately,†¦show more content†¦Never shall I forget these things, even if I am condemned to live as long as God Himself. Never† (32). Many people believe that religious persecution/discrimination came to a halt after World War II, but it continues up to today. Discrimination of people because of their religiou s choices is still very common. A Jewish man named Issac Weiss was discriminated by other extremely religious Jews in his community, simply because he did not strictly adhere to the laws of the Orthodox Jews in his community. Religious persecution, unfortunately, has also increased in the past few years. According to a recent study, countries such as Saudi Arabia, Egypt, Indonesia, and other countries in the Middle East have very high and strict limitations on religious freedom. â€Å"There are all sorts of violent persecutions taking place today, and I would probably rate the massacre of Shiite Muslims in Pakistan and Iraq, along with the massacre of everyday Muslims and Christians in northern Nigeria, at least as high as persecution of Christians in various places† (Barlow). Ethnic and race persecution is also a very serious problem in many countries. In the First Amendment of the United States Constitution, it states that we have the right to practice any religion or to no t practice any religion at all. We often take advantage of this amendment. A recent study showed that by the year 2012, religious persecution andShow MoreRelatedReligions : Commons Goals Vs. Pretend Pluralism Essay1401 Words   |  6 PagesReligions: Commons Goals vs â€Å"Pretend Pluralism† Religion is a universal term that is widely used for a human’s belief system. The views on how religions compare to one another can be defined differently. One view explains religions using a united belief system by their common goals. Another view explains that different religions are just a shared essence and have vast differences between their specific traditions and customs. This shared essence, but vastly different theory, is explained by StephenRead MoreReflection On And Comparison Of Religions1598 Words   |  7 PagesReflection on and Comparison of Religions I identify as a Catholic whose Portuguese upbringing prominently influenced my religious background. My cultural values and faith are so intertwined that I view both elements as one aspect of my identity rather than two separate entities. While introducing my religious viewpoint in class, I felt this wave of vulnerability and shame that I may have been perceived as agreeing with everything Catholicism stands for, which is certainly not the case. I felt misunderstoodRead MoreDoes Religion Affect Our Lives?1185 Words   |  5 PagesNowadays mixed marriages become very popular and partners in such marriages are very happy and satisfied with their choice. But is this really true? Religion can play a vital role in the way people relate to each other, particularly with interpersonal dynamics within a family. Until recent decades, the idea of a marrying outside the faith was practically unheard of, if not taboo. Such weddings took place in private ceremonies, not in a church sanctuary in front of hundreds of friends and familyRead MoreThe Existence Of God And Religion868 Words   |  4 Pagesthought about faith. According to dictionaries, the word faith has two distinct definitions. First, it is defined in the American Heritage Dictionary as being confident or having an unquestioning belief in the truth, value, or trustworthiness of a person, idea, or thing (American Heritage Dictionary). Likewise, faith is defined in the Oxford Dictionaries as a strong belief in God or in the doctrines of a religion, based on spiritual apprehension rather than proof (Oxford Dictionaries). Faith is eitherRead MoreFaith, Family, And Religious Freedom1176 Words   |  5 PagesTh e family is fading. Religion is falling. Faith is failing. The first right in the First Amendment, the right to the free practice of religion, is being viciously attacked by the citizens of America. The traditional family—an ideal so simple and fundamental that, twenty years ago, any alteration to it would be unfathomable—is now being challenged. Times are changing; society is changing. Among others, Elder Jeffrey R. Holland addresses this change in his speech, â€Å"Faith, Family, and Religious FreedomRead MoreIdentity by Religion786 Words   |  4 PagesBrianna Lopez 7 March 2013 Identity by Religion Religion is a worldwide practice that has taken a huge part in all human cultures. One of the earliest recollections of religion came from the Ancient Egyptian that believed in Polytheistic Religion, which praised a variety of gods. Another religion that has been with us since the times of the bible is the Judaism belief. A variety of other religions have formed since then, but not all religions believe in a god. If there is one thing we have inRead MoreArt Commission Statement1333 Words   |  6 Pagesappropriate being placed at that location. This commission statement will discuss our belief of how the Ten Commandments statue reflects the Jewish and Christian concept of humanitys relationship to nature and to the world and God. It will also discuss the value of commissioning the Ten Commandments statue for the lobby, how the Ten Commandments statue will enhance the intellectual and physical environments, and how the Ten Commandments statue represents some aspect of the new Christ ian and Jewish InterfaithRead MoreCall to Renewal Address: Barack Obama1246 Words   |  5 PagesIn his 2006 â€Å"Call to Renewal Address†, Barack Obama gives his thoughts on the role of religion in democracy through a response to earlier accusations of his un-Christianness during his 2004 Senate race against Alan Keyes. He addresses both his accuser, who suggested that Obamas views disrespect his faith as a Christian, and his liberal supporters, who urged him to ignore these statements because â€Å"a literalist reading of the Bible was folly† (2). In his speech, Obama recommends a middle ground betweenRead MoreReligion Is Not As Straight Forward As Many People1169 Words   |  5 PagesFrom my studying of religion, I have come to understand that religion itself is not as straight forward as many people, including myself, tend to believe it is. Religion has such complexity that it is extremely difficult to define it in just a few words. This difficulty of finding a clear definition of what religion is seen when limitations are drawn about what religion involves and other activities such as a worship of chocolate then becomes a religion due to the fact that it could possible holdRead MoreThe Nature of Faith Essay1335 Words   |  6 Pagesview on this topic, one has to first establish what faith means at a personal level in order to indentify how it serves as a basis for knowledge in religion and natural sciences. Faith is regarded in various ways; commonly as reliability on someone/thing, religion, beliefs, and others. An English dictionary generalizes faith is a â€Å"strong or unshakeable belief in something, especially without proof or evidence† . Essentially, in this context, faith is the solid unconditional belief of something with