Sunday, January 26, 2020
Testing Issues in Java Technology
Testing Issues in Java Technology INTRODUCTION: Software testing is the method of examining software, to confirm that it satisfy its necessities and to identify errors. Software testing is an experimental examination which is conducted to afford stakeholders with information about the quality of the product or service under test, with respect to the context in which it is intended to operate. Testing can never entirely establish the exactness of computer software. As an alternative, it provides an analysis or a relationship that compares with the state or behavior of the product against a specification. Over its survival, computer software has sustained to grow in convolution and dimension. Testing in the world of Java technology proposes many distinctive and dissimilar challenges. Todays Java engineers are not only faced with multiple platforms, but also the scalability issues like limited memory, nonstandard input, network traffic considerations which are encountered with an increasing array of Java technology-based computationa l devicesââ¬âfrom Java Rings, to telephones, to set-top boxes. Because of dealing with many different platforms, and many different types of devices the tests are written in the Java programming language. An automatic software testing is a software function which is used to authenticate that a particular unit of source codes is running as expected. Software testing can be written as: Unit Tests; Integration Tests; or Acceptance Tests. The report also gives an overview of the role of these technologies in Java testing. (ece.cmu.edu) Integration Testing: Integration tests is used to test integration of several classes as against to testing classes in isolation. Mainly in J2EE environments like Web or EJB container gives a more important functionality, hence integration testing has to be conducted in a container. This would test interaction across different application tiers like access to database, EJBs and also other resources. Integration test is occasionally done by Programmers but not as frequently as unit test. Acceptance Tests: Acceptance Test is explained as the group of tests which guarantee the contract between the application API and end user. These tests are done for the completed and deployed application. It is used to check each use-case in which the application is supported. It provides less test coverage and it is main in testing integration of application tiers such as containers and web servers. These tests are done by Quality Assurance testers and not by developers as test operates on external Application Programming Interfaces. Unit Tests Checking of the Developed Project, Programmers write unit tests to verify their own code. Unit testing vary from integration testing, which works well together, and acceptance testing, works according to the customers requirements. Unit testing is the testing mechanism which is used to test a single unit of code. In the case of Java, a unit testing that frequently connects to a distinct class. A unit test is fully automatic, non interactive, and dual ie, it moreover succeeds or be unsuccessful. By executing the code and verifying the output is not a testing. Neither instead of writing a small ââ¬Å"test driverâ⬠that neither drives the code nor allows checking logs to see if its working correctly. Unit testing is the code which is written, as a good thing since it leads to higher-quality code, higher productivity, and lower maintenance with good evolution costs. The following report will analyze various Unit Testing technologies like JUnit, TestNG and JTiger. (devx.com) JUnit: JUnit is a unit testing method which is simple and open source frame work for regression testing released by IBM under common license version 5.0 and to write and run repeatable tests on the Java programming language it was hosted on the source forge.Junit is a instance of Xunit architecture which was used for unit testing framework , XUnit was developed by Erich Gamma and Kent Beck. Knowledge and Experience gained with JUnit is very use full in developing test driven application development, and due to this knowledge of JUnit is in use in test driven development. JUnit is also ported to other programming languages like PHP, C#,python, Fortran, Perl,and C++. It is used as PHPUnit in PHP, Nunit in C#, PyUnit in Python , fUnit in Fortran , Test::Class and Test::Unitin Perl and CPPUnit in C++ . All this unit testing frameworks family is collectively reffered as XUnit. Now recently due to the development of new client frameworks like AJAX, Junit has also been developed for use in java sc ript as JSUnit.Junit improves the quality of code and increases the speed of programming. (en.Wikipedia.org) Junit Features include: API for Easily creating Java test Cases Assertions for testing expected results verify expected versus actual result Test fixtures to share test data commonly Test runners to run tests For forums and mailing lists. Aggregating tests (suites) Junit Mechanics: Define a subclass of TestCase. Override the setUp() tearDown()methods. Define one or more public testXXX()methods Exercise the object(s) under test. Asserts the expected results. Define a static suite() factory method Create a TestSuite containing all the tests. Optionally define main() to run the TestCase in batch mode. JUnit Extensions: JUnitReport -Apache Ant extension task -Uses XML and XSLT to generate HTML Cactus -Simple unit testing framework for server side Java coding JWebUnit -Framework for creating acceptance testing for web based applications XMLUnit Provides an XMLTestCase class which enables assertions to be made about the Content and structure of XML MockObject double agent used to test the behavior of other objects Dummy object which mimics the external behavior of a true implementation observes how other objects interact with its methods and compares actual behavior with preset expectations StrutsTestCase testing code based on the Struts framework (javapassion.com) TestNG: TestNG is an annotation-driven Java unit testing framework inspired by JUnit and NUnit which aims to overcome many limitations of JUnit. TestNG isnt just really powerful, innovative, extensible, and flexible; it also illustrates an interesting application of Java Annotations, a great new feature in JDK 5.0. TestNG is designed in such away that it covers all categories in testing like:à unit, functional, end-to-end, integration, etc(testng.org) TestNG Features include: Annotations; no mandatory naming patterns for test methods or extending classes Also Supports Java doc annotations for Java 1.4 Powerful test-fixture set-up and tear-down options JDK 5 Annotations JDK 1.4 also supports JavaDoc annotations. Test configuration is flexible. Data driven testing support using @Data Provider. Parameters support. Distribution of tests in slave systems is allowed. Execution model is much Powerful no need of Test Suite. It is supported many plug-ins and variety of tools like Eclipse, Maven, IDEA, etc. By Embedding with Bean Shell improves flexibility. JDK functions are available by default for logging and runtime. Methods for testing of application server. TestNG Mechanics: Write the business logic of the test and insert TestNG annotations in the code. Adds informations about the test in testng.xml file or in a build.xml (eg. class name etc). Execute TestNG. JTiger: JTiger is a framework for unit testing and has tools for Java 2 Platform. It gives useful abstraction for writing unit test cases and fixtures. Functionalities provided by JTiger is most desired in unit testing of softwares. Generally Test-Driven Development is encouraged by JTiger development, though it is not mandatory, and any unit testing technique in software development is sufficient. Many features of Java Programming Language 1.5 is heavily used by JTiger like Generics, variable argument lists, annotations, etc,. JTiger also encourages users to do documentation of unit test cases and fixtures to give a robust and easy maintain regression harness and unit test. Published and documented API is provided by JTiger frame work if there is a need for extending the functionality. The ability to run the test cases written by using JUint framework is a good example of extending JTiger framework. As a part of JTiger framework JUnit plugin implementation classes are included. (en.Wikipedi a.org) JTiger Features include: JTiger makes every effort to ensure a robust unit test harness by providing a rich set of tools, and a reliable, usable framework on which to develop unit test cases. JTiger is an implementation that is based on improvements in software development methodologies, such as eXtreme Programming (XP), which have matured since their inception. JTiger has been implemented using the same techniques that it encourages, specifically, Test Driven Development. JTiger includes its own unit test and regression harness with 100% method coverage. This aids in new or modified requirements for JTiger that arise in the unforeseen future. The JTiger source code base has been designed to ensure the absolute maximum possible amount of decoupling of components and encapsulation such that future enhancements will not have a negative impact on future versions on JTiger. (userdoc.com) JTiger System Requirements: JTiger requires that tests are executed using a Java Virtual Machine version 1.5 or higher. This does not mean that the code under test must be written using Java 1.5 language features. The software under test may target any JVM version such as 1.2, 1.3 or 1.4. It is merely the test run that must execute under a JVM version 1.5. JTiger is capable of executing test cases that have been written using the JUnit test framework. JTiger Extensions: JTiger future development is being investigated. Some of the features and topics that are under review include the development of a swing GUI interface from which to execute unit test cases, the development of IDE (Integrated Development Environment) plugins for Eclipse, and Intellij IDEA, and the possibility of a mock objects package that mocks J2SE and J2EE core classes. (userdoc.com) Testing Of Java Language Recommended By Other Companies: Microsoft Java Virtual Machine Support: To be familiar with the need is to afford a smooth evolution for present users of the Microsoftà ® Java Virtual Machine (MSJVM), Sun Microsystems and Microsoft have agreed to widen Microsofts license to use Suns Java source code along with their compatibility test cases and the test suites. (microsoft.com) Open Quality Program to Improve the Quality of Java Software: Agitar: This Software has declared a new multi-vendor scheme committed to take very careful attention on the testing side to improve the efficiency and the quality of java software packages. Based on the Open Quality Program, Agitar software has published a wide range of unit level testing metrics in its own products, It has even including a formal weekly build results on its future unannounced new products and the new trends over time. The Agitar software has also published these software testing metrics for many popular open source software Java projects, which including JUnit, Hibernate, Cruise Control, Struts, spring, and even lot of other commercial products which is based on the open source such as the Oracles BerkeleyDB Java edition and JasperSofts JasperServer. (qthreads.com) Recent Testing News on upcoming Java products: Java Graphical User Interface Testing Tool Known as Squish is Supporting the New Eclipse Ganymede version 3.4 Five weeks Two days ago(2008-07-08) Germany BasedHamburg( froglogic GmbH )has announced today , to give support for automated the testing of new Java Rich Client Platform the RCP applications which is based on the new Eclipse version 3.4 release code that is named as Ganymede. The Squish GUI for Java is a leading functional Graphical User Interface and also regression testing tool which is enabling the execution, creation and Modification of automated Graphical User Interface tests for Java programming on AWT/Swing and SWT/RCP applications. The Squish GUI, and all the other all tests created with this, are completely made as cross-platform software and work on almost all the top leading operating systems like the Windows Operating Systems, Linux Operating Systems, Unix Operating Systems, and Mac Operating Systems X and even also on the embedded Linux. The support for testing Eclipse Version 3.4 the latest one, RCP Software applications has been completed and it is also available with the just newly released GUI Squish version 3.4. The availability of the third party tools, like the Graphical User Interface testing tools, is very important for the open source Eclipse community to increase it demand. The resent glad news is to see froglogic has very quickly adopting the new Eclipse version releases with its Testing GUI Squish tool, said Mr. Mike Milinkovich, Who is the Executive Director of the Company Eclipse Foundation. The new Ganymede version release is said to be another very important and great release of the Company Eclipse community which has make it even more easy, attractive and flexible for the application developers who uses it. The Quickly integrated support for testing tools on Eclipse software version 3.4 applications with the new GUI Squish tool has been a new and great logical step for the company, said Mr. Harri Porten, platform chief of froglogics company. Squish software offers a multipurpose testing based framework for Graphical User Interfac e (GUI) applications with a base choice of the popular test scripting languages like Perl , Python, Tcl, TSL and JavaScript, VBScript extended by the new test specific functions scripts, lot of new open interfaces, many add-ons, with integrations to the test management tools, a new powerful Integrated Development Environment (IDE) aiding the selecting, creation and finally debugging of the tests and a collection of command line testing tools and the test management integrations facilitating the fully automated test runs on the applications. Contact email: [emailprotected] or visit the URL: www.froglogic.com/squish to get an evaluation pack or to purchase the GUI Squish for the java Application or to know more about the product. Squish GUI tool also supports automated testing of java applications based on GUI technologies like as Trolltechs Qt, Swing-AWT, and Qtopia, also supports Web technologies DOM, HTML, AJAX, DHTML Mac OS X Carbon/Cocoa , JavaScript and other technologies also. (embedded-computing.com) JAVAââ¬ËS ENCOURAGEMENT IN TESTING: Todays software manufacturers face a variety of challenges when creating products to meet the increasing demand for software that takes advantage of Java technology. The growing complexity and diversity of softwaresââ¬âwith their varying operating systems, processors, and memory configurationsââ¬âincreases the need for thorough testing to ensure customers will be satisfied. At the same time, service providers and manufacturers face the challenge of managingââ¬âand, if possible, loweringââ¬âinternal costs caused by excessive engineering overhead, disorganized development of test cases, or the impact of new data services on support operations. The Java software Test Suite simplifies quality assurance and reduces time-to-market for Java implementations by providing comprehensive tests and a robust test manager. These enable suite users to evaluate, validate, and verify the quality of implementations on particular software. The Java Test Suite that helps the software manu facturers ensures their reputation for quality, while building customer satisfaction and loyalty. It helps lower engineering costs by standardizing and simplifying testing, and by minimizing the need to write quality assurance tests manually. Java is free and open. So java Testing is an important part of software development because of Open Source Testing Tools which are available in Java for an Effective testing key factor which reduces the total cost of maintenance of any application over its lifetime. Because of the reduced cost and time of development; this can increase savings on quality assurance and of course on sustaining. Without knowing when to invest in better design, in post development quality assurance, in manual tests or in automatic testing forms a basic difference between successful and unsuccessful software projects in these tough and competitive days. (newsgroups.derkeiler.com) Suns Recommendation for testing Java: Testing Java in an Object-Oriented Way To apply eXVantage (a tool suite for code coverage testing, debugging, performance profiling, etc.) to a large, complex Java application at the implementation and unit testing phases in Avaya. Two open source-based tools that can help to generate workloads for the enterprise application: SLAMD Distributed Load Generation Engine and Sun Java Studio Enterprise software. Container-Free Testing With Mockrunner Fitnesse Testing for Fast-Paced Agile Web Development JUnit Reloaded Using In-Process Testing Metrics to Estimate Software Reliability ECLIPSE IN JAVA SOFTWARE TESTING: Eclipse is a very widely used Open Source Integrated Development Environment (IDE), particularly for Java- and Web-based applications. Its very widely extensible with the use of scores of plugins available to help in developing these applications, so here I would like to discuss some of the plugins available for software testing. Eclipse TPTP (an evolution of Eclipses prior Hyades project) is an Open Source collaborative project that seeks to provide a common platform upon which specialized, differentiated, and interoperable offerings for software test and performance tools are created. TPTP, which stands for Test and Performance Tools Platform, supplies extensible frameworks and services for test and performance tools that are used throughout the application lifecycle, from development through production. It also delivers extensible exemplary tools that verify the utility of, illustrate the appropriate use of, and support the development and maintenance of the platform itself. (fres hmeat.net) TPTP This provides a reference implementation of the recent UML2 Testing Profile based upon the Eclipse Modeling Framework (EMF). For logging and tracing, TPTP employs the Common-Base-Event (CBE) Format, which defines the structure of events in a unifying format. Data pools are a concept which appears to be innovative for testing in Eclipse. A datapool contains data usable during a test run. Data pools are stored in a comma-separated file and can be displayed as an Excel-alike data sheet. Test cases can load datapools in the setUp() method and use the dedicated iterations to retrieve cell values for evaluation purposes. Separating test data from the tests themselves appears to be new functionality. Test Deployment requires the allocation of test artifacts to test locations. These locations can also be workbench locations. Through the concept of service abstraction, the Automatable services framework introduces a Service-Oriented Architecture (SOA) concept to TPTP. The framework introduce s a layered architecture in which a client at a lower layer employs a model adapter to employ a service provided at a higher layer. Automation Client Adapters allow normal Java programs to consume Eclipse services. These adapters can launch a headless Eclipse from a specified Eclipse home, and are available through the tptp-automation-client jar. Various properties are made available through this API (e.g., the project property specifying a specific project in the workspace of the Eclipse instance). (freshmeat.net) Solex Web Application Testing with Eclipse Solex is a free open source Web application testing tool built as a plug-in for the Eclipse IDE. It provides functions to record a client session adjust it according to various parameters and replay it later typically in order to ensure non regression of the applications behaviour (with stress testing capabilities being added at a later stage). By recording, we mean that Solex acts as an HTTP proxy and records all HTTP requests and responses going through the wire between a Web client (eg. a Web browser) and a Web server. The task of replaying a scenario consists in sending the previously recorded and eventually customized HTTP requests to the server and asserting each response. Solex 0.5.0 works with Eclipse Release 2.1.2, Build id: 200311030802 and Solex 0.5.3 works with Eclipse Release 3.1.1, Build id: M20050929-0840. (Solex.com) Unit testing Checking of the Developed Project, Programmers write unit tests to verify their own code. Unit testing vary from integration testing, which works well together, and acceptance testing, works according to the customers requirements. Unit testing is the testing mechanism which is used to test a single unit of code. In the case of Java, a unit testing that frequently connects to a distinct class. A unit test is fully automatic, non interactive, and dual ie, it moreover succeeds or be unsuccessful. By executing the code and verifying the output is not a testing. Neither instead of writing a small ââ¬Å"test driverâ⬠that neither drives the code nor allows checking logs to see if its working correctly. Unit testing is the code which is written, as a good thing since it leads to higher-quality code, higher productivity, and lower maintenance with good evolution costs. (devx.com) Unit Testing in Eclipse Using JUnit Unit Testing in Eclipse 3.1 move towards through the JUnit mechanism which was constructed in the Workplace. Eclipse permits a quick creation of test case class and also to provide a testing suite class to write the testing codes in. By means of Eclipse, we use a Test Driven Development (TDD) which suit for a very simple mechanism to systematize and implement. The class which we wanted to test is created at 1st and so that the Eclipse finds a class that is underneath test and construct the test case class. The test cases are constructed with the desired trade in and expansion for JUnit to Execute. The test case classes are constructed with the real test case and then it is coded in through the programmer. The formation of test suite in Eclipse is still simpler. By designing a test suite, Eclipse will specify a name for specifying all of the test cases in the scope of the project. The code is to Execute test suites and to add test cases in the created software is added to the test sui tes. (open.ncsu.edu) JUnit Naming Convention: Testing Cases and Classes: Named with [classnames]First.java, hear classname is being tested for the classnames. Testing Cases with Test Methods: Name test [methodnames], where methodnames are the method name to test. Applying Test Suites: Eclipse which has a default name as First.java It is a well known thought-out for a good performance in testing, and to split the test case code from the application code. It is also a good idea which is to separate the JUnit and FIT tests as well. (open.ncsu.edu) EMPIRICAL i.e. STATISTICS AND NON-EMPIRIC TESTING: Empirical testing: Similar to theoretical tests, there is one more test called empirical test; which is being done by computers. As per the computer point of view ââ¬Ëempirical means ââ¬Ëexperiments with certain PRNG. The generator itself is treated as black box; only the sequence of PRNs is generated and is taken for evaluating the test statistic. In order to find the empirical test, one has to implement the PRNG and the test statistic. The limitations of empirical testing are commonly proposed by the amount of time and memory needed due to the complexity of the computations. (random.mat.sbg.ac.at) Non-empirical testing: Non-empirical testing deals with non-parametric statistical models and non-parametric inference, including non-parametric statistical tests. Nonparametric methods which are often referred as distribution free methods, since they do not rely on assumptions in which the data are drawn from a given probability distribution. Non-parametric statistic can be explained as a statistic (a function on a sample) whose interpretation does not depend on the population fitting any parameterized distributions. The example for one such statistic is order statistics; which plays a vital role in many non-parametric approaches. (en.wikipedia.org) Applications and purpose: For studying populations that has been taken on a ranked order (such as movie reviews receiving one to four stars) is called Non-parametric methods. The uses of non-parametric methods may be necessary, when the data has a ranking but no clear numerical interpretation, such as when assessing the preferences. Usually non-parametric methods make fewer assumptions; other than the parametric methods, depends upon their applicability. In particular, they may be applied in situations where less is known about the application in question. Non-parametric methods are more robust due to the reliance on fewer assumptions and simplicity. Non-parametric methods may be easier to use in certain cases, when the use of parametric methods is justified. As per some statisticians, non-parametric methods are not useful because of their simplicity and greater robustness leading to leave less room for improper use and misunderstanding. (en.wikipedia.org) Recommendations: Example of a JAVA Based Application: The Table below represents an example security standard for a Java application; and mentions the type of software testing used in each controls. These Kind of security standard in applications will define how exactly the application security functionalities will behave. TYPE Questions Unit Integration Acceptance Input Validation Whether all the user inputs are proper in length and data type? X X X Authorization of Application Whether the application properly controls the accessing privileges? X X Storage Whether authentication privileges are stored securely? X Manipulation Whether application enforces its access controls? X X Special Characters Whether special characters are handled securely? X X X Error Messages Whether error message generic? X X Legacy data Whether data are removed? X It is clear that the Above Types can be tested more on using functional than, integration testing techniques. Lesser security functionality is tested by Unit tests, as lot of security functionality are provided in other modules like, web server and web container. The following sections will provide more details on performing security based tests in unit test, integration test and acceptance test: Testing in Unit Tests: Testing of classes and methods individually provides a best approach to functionality testing of codes. A unit test has to be performed on classes and methods individually without a any dependency on the other methods and classes. This issue gives limitation to the types of security tests which has to be performed, Hence this is going to test is going to be executed in very early stage of the development process. Testing Independently: Unit tests should only depends on the single independent class and it should not depend on Composition class or any base classes Testing Vulnerability: The number of security Types that are been verified by us
Saturday, January 18, 2020
Product Quality
Does product quality guarantee the success of a business? Various factors are analyzed to examine whether or not a good quality product by itself can propel a business into success. A product of good quality can be defined as one that best satisfies the consumerââ¬â¢s needs at the price they are willing to pay. While it is integral to business success, it is certainly not the only factor that guarantees it, simply because businesses function as an integrated whole, and the success of only one part does not guarantee success of the entire organization.Business success can be referred to as an achievement of common objectives such as profitability, growth, or increasing market share. A good quality product undeniably brings positive contributions to the success of a business. One benefit is customer satisfaction. Once they are satisfied with the product, the customer will be likely to make repeat purchases, and over time develop a strong loyalty towards the brand. When the business has a reputation for producing good quality products with a strong customer base, it establishes itself in a strong position in the market, giving it the opportunity to increase its market share.As a result, retailers would be more willing to stock their products, giving the business more options in terms of the channel of distribution, and thus giving them a competitive advantage. This can also lead to marketing economies of scale, whereby a cross marketing of brands can be used to strongly promote different products simultaneously because an overall positive brand image has been created. Another cost saving is that fewer complaints will need to be dealt with, and because of this, fewer repairs and wastage costs will be incurred.These savings of average costs could then be kept as retained profits, or invested in business growth, proving beneficial to business success. Read more in Business à « Globalization: A Natural Phenomenon Establishing Business Communications in an Emerging Company à » It is evident, then, that businesses must find some sort of way of monitoring quality that best suits them to ensure quality products are consistently produced. This could involve quality control, where inspectors check a sample of finished products for defects, or quality assurance, where quality is the responsibility of each worker and is built into the production process.Quality control could perhaps work better with management that believe in a more strictly controlled work environment, whereas quality assurance works better if management empower and trust workers more, allowing them participation in the improvement process. Provided these methods are implemented well enough, and are appropriate to the corporate culture of the business, this crucial aspect influencing business success can be ensured.However, because businesses operate in complex environments there are many other contributing factors to business success, which, if not integrated with good product qu ality, will have negative effects. From a marketing perspective, in the research and development stage, market research must be conducted accurately to predict demand; otherwise, even if a very good quality product is produced, if a target market is not defined or there is no demand for it at all, then the product will fail.In the development process, value analysis should be conducted, where the appearance, performance and the economy of manufacture of the product should be compared to achieve an ideal balance. If the business solely relied on product quality, it would focus on appearance and performance and neglect the economy of manufacture, which could lead to the production of a good that customers find to be of high quality, but costs so much to produce that it is not profitable to the business, and not worth making.
Friday, January 10, 2020
Causes of Unemployment Essay
There are many quotes about unemployment according to Calvin Coolidge unemployment occurs ââ¬Ëââ¬â¢When large numbers of men are unable to find work unemployment resultsââ¬â¢Ã¢â¬â¢. According to Frank P. Louchheim ,à ââ¬â¢Ã¢â¬â¢An ââ¬Ëacceptableââ¬â¢ level of unemployment means that the government economist to whom it is acceptable still has a jobââ¬â¢Ã¢â¬â¢. While George Walker Bush said,à ââ¬Ëââ¬â¢In the long run, the right answer to unemployment is to create more jobsââ¬â¢Ã¢â¬â¢. Keeping the above quotations in mind. Unemployment may be defined as. ââ¬Ëââ¬â¢When there is the shortage of job and people are not able to find work that is when unemployment occursââ¬â¢Ã¢â¬â¢. (94 Words) The presence of many problematic factors can result in unemployment. Firstly illiteracy the lack of education or the state of being unable to read or write is a very big cause of unemployment. Due to illiteracy people do not know how to find and do jobs. Secondly bribery refers to the offering, giving, soliciting, or receiving of any item of value as a means of influencing the actions of an individual holding a public or legal duty. By the help of bribery people with more money are able to get jobs they do not deserve hence not letting the people who deserve get them. Thirdly One more problem of unemployment and under-employment is nepotism and favoritism. It means selection according to relation not according to ability. Here deserving candidates do not get jobs and remain unemployed. Fourthly injustice the violation of the rights of others causes unemployment. Due to injustice the deserving are not able to have jobs. Than poverty the state of having little or no money is also a serious cause of unemployment. Poor persons due to lack of income has low saving and shortage in investment. So, they are unable to established self-employment opportunities. After that corruption the dishonest or fraudulent conduct by those in power yields in unemployment. Funds that can be used to create employment are embezzled and even investors shy away from setting up their business due to corruption levels and thus jobs are not created. Lastly terrorism which is theà terroristic method of governing or of resisting a government raises unemployment. Because of terrorism people avoid going out and getting jobs. When factors like bribery, nepotism and injustice become common in a society they lead to unemployment. (16 Sentences) Lack of many factors can be the cause of unemployment. Firstly the shortage of industry in a country can also lead to the shortage of jobs. The location of most industries is very uneconomical which also leads to industrial unemployment. Secondly lack of health is also a very big cause of unemployment. A healthy mind needs a healthy body, lack of health does not permit the energy needed for doing a job. Thirdly due to lack of technical education people are not able to get jobs. There is no awareness regarding technical education and its importance due to its absence a lot of people are not able to get jobs. Fourthly money is needed to start industries and other job opportunities. The lack of money does not permit the chance of starting any businesses which results in unemployment. After that the lack of knowledge has caused a lot of unawareness about employment. Due to this unawareness people do not know what they wish to do or what job they wish to get. Then the lack of jobs is the main cause of unemployment. Unavailability of opportunities and the shortage of industry leads to the lack of jobs which leads to unemployment. Lastly the lack of opportunities rises when the job is present but people for the job are not or the people present are not skilled enough. Proper training should be given so people can seek our opportunities. Shortage of technical education, knowledge, money and industry causes unemployment. (16 Sentences) Many influencing factors which when not kept under observation lead to unemployment. Firstly due to political instability investor hesitates to invest. It creates less opportunity of employment and results in unemployment. Secondly underdevelopment in countries results in unemployment. These countries are not developing and hence do not have enough job opportunities. Thirdly the government should set a merit eliminate the nepotism and favoritism. Employment opportunities should be provided in accordance to skill and ability. Fourthly the fast growth rate of population should be controlled. Due to population control there will beà more employment opportunities and less unemployment. Then in the past century technology has advanced to a great level. Machines are much quicker and very economical and due to these reasons a lot of machines have replaced man which has resulted in unemployment. After that improper government policies lead to unemployment. The government should be more careful while making these policies. Lastly economic policies are the policies set by the government in economic field. These policies are usually very problematic and seldom useful and can result in unemployment. Therefore these policies and factors must be periodically monitored. (16 Sentences) There are many causes of unemployment some are due to the negligence of the government and some are due to our own negligence. We all must try overcome unemployment. We must do our duty to spread awareness must be spread about these causes so that more and more people can know about them and so that more people can try to overcome them. Unemployment is very harmful for an economy it should be overcome at all costs. (76 Words)
Thursday, January 2, 2020
Teen Pregnancy And Its Effect On Children - 855 Words
Teen pregnancy has been an ongoing social issue in the United States for many of years. Although the rate of teen pregnancy has decreased since the 90s, the United States is still the highest among industrialized nations. The US ranks at one and a half times higher than Great Britain, three times higher than Canada, seven times higher than Denmark and Sweden, and eight times higher than Japan (Azar 1). Society considers teenage pregnancies a problem because they believe teenagers are not emotionally and financially ready to raise their children even though they are physiologically capable of producing offspring. Bearing a child at a young age has a negative effect on both the mother and child mental state, their physical being and overall in life. Young girls between the ages of 15-19, will face some negative consequences of being a teen mother in their lifetime and endure many hardships along the way. Being a teen parent decreases the likelihood a young teen will be as successful in life compared to a teen that does not bear a child. For example, children born to adolescent mothers are more likely to have cognitive development difficulties and are more likely to themselves become adolescent mothers and young mothers face a greater chance of encountering poverty and related forms of socioeconomic disadvantages, including reduced educational, housing, and employment opportunities (Chabot 1). Teen pregnancy is a recycling factor, which keeps repeating. The question is howShow MoreRelatedThe Effects of Teen Pregnancy on Children1555 Words à |à 7 PagesChildren from homes run by teenage mothers have to face almost insurmountable obstacles in life. The incidents of depression and mental health problems, the lack of father figures, and the high rate of poverty often connected to children in homes run by teenage mothers put them at serious disadvantages when compared to children raised in nuclear families. Many people believe that the implementation of sex educati on in schools and the addition of more federal aid for single parents are major causesRead MoreTeen Pregnancy And Its Effect On Children865 Words à |à 4 Pagesdid not understand what she meant, but after my years in high school it all made sense. I, like many other teens, would gain knowledge on relationships and sexuality. In this country teen pregnancy has high increase in minorities, one of the main reasons why the population is expanding. It is through proper knowledge of sexuality and protection that female teens are able to prevent pregnancy. Coming from a family of immigrants, I have many life goals. I always enjoyed school and participated inRead MoreThe Effects Of Teen Pregnancy On Children845 Words à |à 4 PagesData has shown that children who are born to teenagers are instantly placed at a higher risk of physical development, social, and behavioral problems. For instance, one-third of pregnant teens (15-19) receives no prenatal care during the first trimester of pregnancy; this number has increased to 50% for girls under 15. Most teens are still developing physically, and mentally this also means theyââ¬â¢re much more likely to have premature babies or preterm labor. Preterm and/or low birth weight babiesRead More The Effects of Teen Pregnancy on Children Essay1147 Words à |à 5 Pagesare many obstacles for children of teenage mothers to face. These children have serious disadvantages in contrast to those children who come from nuclear families. Often they lack a father figure, have a high poverty rate, and there are incidents of depression and mental health problems. Many people are blaming the sex education programs in schools and the additional federal aid being offered to single parents as major causes for the countryââ¬â¢s high rate of teen pregnancies (Carole). Although, theRead MoreEffects Of Teen Pregnancy On Children s Reproductive System972 Words à |à 4 Pagesof unplanned teen pregnancies amongst the most developed countries in the world. Approximately 750,000 teens will become p regnant this year and with the lack of resources to terminate those unwanted pregnancies more than ninety two percent of those teens will become parents before graduating high school. Plan B one step emergency contraception is now available over the counter as of August 2013 an although there has been a great debate on whether or not the open availability to teens as young as fifteenRead MoreThe Negative Effects of Teen Pregnancy1085 Words à |à 5 PagesThere are different effects on teenage mothers than there is on teenage fathers. Mothers lose more friends and are looked at way differently; fathers keep most of their friends without too many people having an opinion about him. After the mother has her baby, she canââ¬â¢t go back to school, so she has to be put on homebound. The father can go to school, can play sports, and can have fun with his friends. Both the mother and the father have responsibility, but the mother has to do more, like work toRead MoreTeenage Pregnancy An d Teen Pregnancy1057 Words à |à 5 PagesTeenage pregnancy is a common thing here in America. It seems teens are getting pregnant more than the average married couple. There are some risk factors teen moms face and there is also another great turn outs. There is a major difference between the two. Itââ¬â¢s important to tell teens the turnouts of teen pregnancy for the good and bad parts. There are risks of having sex, teen moms can make a difference for her and the baby, the risk of having HIV and/or any other STDââ¬â¢s, and the effects on the babyRead MoreReflecting on Sources: An Assignment1879 Words à |à 7 Pageshelp in reducing and preventing of teen pregnancy. The organization is called The National Campaign to Prevent Teen and Unplanned Pregnancy. She is influential because she has served on many advisory boards which promote the values and policies towards the prevention of teen pregnancy ADDIN EN.CITE The National Campaign to Prevent Teen Pregnancy201197(The National Campaign to Prevent Teen Pregnancy, 2011a)979712The National Campaign to Prevent Teen Pregnancy,Sarah Brown20111776 Massachusetts AvenueTheRead MoreThe Controversy Regarding Teenage Pregnancy: The Essential Role of Education and Good Parenting1270 Words à |à 5 Pagespresently much controversy regarding teenage pregnancy and the probability of its chances being reduced by education and good parenting. The surrounding environment plays an essential role when considering teenage pregnancy and it is thus very important for teenagers to be provided with proper education and a positive environment in order for them to be able to understand the difference between right and wrong. One of the most important things about teen pregnancy is that society as a whole needs to getRead MoreCause and Effect of Teen Pregnancy1043 Words à |à 4 PagesCause and effect of teen pregnancy Teenagers suffering health problems is high Many teenagers will try to hide the pregnancy from their parents and teachers, in doing this they do not get the initial medical attention required during the first months of pregnancy. It is estimated that 33% of teenage pregnancy fail to receive necessary prenatal care. The lack of prenatal care leads to increased risk of anemia, miscarriage, and high blood pressure to the teenager. Many teenagers will hide their
Subscribe to:
Comments (Atom)