• Computer tutorials creating tests. Software testing - the process of finding errors in a software product

    Substantial part production process relies on software testing. What it is and how such activities are carried out will be discussed in this article.

    What is called testing?

    This is understood as the process during which the software is executed in order to detect places of incorrect functioning of the code. For achievement best result difficult input data sets are deliberately constructed. The main goal of the verifier is to create optimal opportunities for failure. Although sometimes testing of the developed program can be simplified to the usual verification of functionality and performance of functions. This saves time, but is often accompanied by unreliability. software, user dissatisfaction and so on.

    Efficiency

    How well and quickly bugs are found has a significant impact on the cost and duration of developing software of the required quality. So, despite the fact that testers receive salaries several times less than programmers, the cost of their services usually reaches 30 - 40% of the cost of the entire project. This is due to the number of personnel, since looking for a mistake is an unusual and rather difficult process. But even if the software has passed a solid number of tests, there is no 100% guarantee that there will be no errors. We just don't know when they will show up. To incentivize testers to choose types of testing that are more likely to find an error, various means of motivation are used: both moral and material.

    Approach to work

    The optimal situation is when various mechanisms are implemented to ensure that there are no errors in the software from the very beginning. For this, it is necessary to take care of competent architecture design, clear terms of reference, and it is also important not to make adjustments to communications when work on the project has already begun. In this case, the tester is faced with the task of finding and identifying a small number of errors that remain in the final result. This will save both time and money.

    What is a test?

    This is an important aspect of the inspector's activity, which is necessary for the successful identification of shortcomings. program code. They are necessary in order to control the correctness of the application. What is included in the test? It consists of their initial data and values, which should be obtained as result (or intermediate). In order to more successfully identify problems and inconsistencies, tests should be written after the algorithm has been developed, but programming has not begun. Moreover, it is desirable to use several approaches when calculating the necessary data. In this case, the probability of finding an error increases due to the fact that you can examine the code from a different point of view. Comprehensive tests should provide verification of the external effects of the finished software product, as well as its operation algorithms. Of particular interest are the limiting and degenerate cases. Thus, in the practice of activities with errors, it is often possible to find that the cycle works one time less or more than it was planned. Also important is the testing of the computer, thanks to which you can check the compliance with the desired result on various machines. This is necessary in order to make sure that the software can run on all computers. In addition, testing the computer on which the development will be performed is important when creating multi-platform developments.

    The art of finding bugs

    Programs are often aimed at working with a huge amount of data. Does it really need to be created completely? No. The practice of "miniaturization" of the program has become widespread. In this case, there is a reasonable reduction in the amount of data compared to what should be used. Let's look at an example: there is a program that creates a 50x50 matrix. In other words, you must manually enter 2500 thousand values. This is certainly possible, but it will take a very long time. But to check the performance, the software product receives a matrix whose dimension is 5x5. To do this, you will need to enter 25 values ​​already. If in this case normal, error-free operation is observed, then this means that everything is in order. Although here there are underwater rocks, which lie in the fact that during miniaturization, a situation occurs in which the changes become implicit and temporarily disappear. It is also very rare, but it still happens that new errors appear.

    Pursued goals

    Software testing is not easy because this process not fully formalized. Large programs almost never have the necessary precise reference. Therefore, a number of indirect data are used as a guideline, which, however, cannot fully reflect the characteristics and functions software development that are being debugged. Moreover, they must be selected in such a way that the correct result is calculated even before the software product is tested. If this is not done in advance, then there is a temptation to consider everything approximately, and if the machine result falls into the intended range, then an erroneous decision will be made that everything is correct.

    Verification in various conditions

    As a rule, testing of programs takes place in the volumes that are necessary for a minimum verification of functionality within a limited range. The activity is carried out with a change in the parameters, as well as the conditions of their work. The testing process can be divided into three stages:

    • Check under normal conditions. In this case, the main functionality of the developed software is tested. The result obtained should be as expected.
    • Checking in emergency conditions. In these cases, it implies the receipt of boundary data, which can adversely affect the performance of the created software. An example is the work with extremely large or small numbers, or in general, the complete absence of information received.
    • Exception check. It involves the use of data that lies beyond the processing. In such situations, it is very bad when the software perceives them as suitable for calculation and produces a plausible result. Care must be taken to reject any data that cannot be correctly processed in such cases. It is also necessary to provide information to the user about this.

    Software testing: types

    It is very difficult to create software without errors. This takes a significant amount of time. To obtain a good product two types of testing are often used: "Alpha" and "Beta". What are they? When talking about alpha testing, then it means a check that the development staff itself conducts in “laboratory” conditions. This is the last stage of verification before the program is distributed to end users. Therefore, developers are trying to turn around to the maximum. For ease of operation, data can be logged to create a history of problems and fixes. Beta testing refers to the delivery of software to a limited number of users so that they can operate the program and identify missed bugs. A feature in this case is that often the software is used for purposes other than its intended purpose. Due to this, malfunctions will be detected where nothing was previously noticed. This is quite normal and you don't need to worry about it.

    Completion of testing

    If the previous stages were successfully completed, then it remains to conduct an acceptance test. In this case, it becomes a mere formality. During this check, it is confirmed that no additional problems not found and the software can be released to the market. The more important the final result will be, the more carefully the check should be carried out. It is necessary to ensure that all stages are completed successfully. This is what the whole testing process looks like. Now let's get into the technical details and talk about useful tools like test programs. What are they and in what cases are they used?

    Automated testing

    Previously, it was believed that the dynamic analysis of the developed software is too heavy an approach that is inefficient to use to detect defects. But due to the increase in the complexity and volume of programs, the opposite view has emerged. Automated testing is used where availability and security are the top priorities. And they should be for any input. Examples of programs for which such testing is appropriate include the following: network protocols, web server, sandboxing. We will next look at a few samples that can be used for such activities. If interested free programs testing, it is rather difficult to find quality ones among them. But there are hacked "pirated" versions of well-established projects, so you can turn to their services.

    Avalanche

    This tool helps to detect defects by testing programs in dynamic analysis mode. It collects data and analyzes the execution path of the developed object. The tester is provided with a set of input data that causes an error or bypasses a set of existing restrictions. Due to the presence of a good verification algorithm, a large number of possible situations are developed. The program receives various sets input data that allow you to simulate a significant number of situations and create conditions where a failure is most likely to occur. An important advantage of the program is the use of a heuristic metric. If there is a problem, then an application error is found with a high probability. But this program has limitations like checking only one labeled input socket or file. When carrying out such an operation as testing programs, detailed information will be contained on the presence of problems with null pointers, endless loops, incorrect addresses, or malfunctions due to the use of libraries. Of course, this is not a complete list of detected errors, but only their common examples. Unfortunately, the developers will have to fix the shortcomings - automatic means are not suitable for these purposes.

    KLEE

    This good program for memory testing. It can intercept about 50 system calls and a large number of virtual processes are thus executed in parallel and separately. But in general, the program does not look for individual suspicious places, but processes the maximum possible amount of code and analyzes the data transfer paths used. Because of this, the testing time of the program depends on the size of the object. When checking, the bet is made on symbolic processes. They are one of possible ways performing tasks in the program being tested. Thanks to parallel work, you can analyze a large number of options for the work of the application under study. For each path, after the end of its testing, the sets of input data from which the test began are saved. It should be noted that testing programs using KLEE helps to identify a large number of deviations that should not be. It can find problems even in applications that have been in development for decades.

    MyTest X is a system of programs for creating and conducting computer testing, collecting and analyzing their results.

    One of the tasks of everyday teacher work is the need to control students' knowledge. The forms of control used by teachers are very diverse, but written or oral surveys are most often used. Unfortunately, these forms are not without drawbacks. When conducting an oral survey, this is a relatively large expenditure of lesson time when not in large numbers of grades, the number of grades increases during written work, but a lot of time is spent on verification.
    Testing like effective method knowledge testing is increasingly used in schools. One of its main and undoubted advantages is the minimum time spent on obtaining reliable control results. When testing, both paper and electronic versions are used. The latter are especially attractive, as they allow you to get results almost immediately after the test is completed.
    Testing in pedagogy performs three main interrelated functions: diagnostic, teaching and educational:

    • The diagnostic function is to identify the level of knowledge, skills and abilities of the student. This is the main and most obvious testing function. In terms of objectivity, breadth and speed of diagnosis, testing surpasses all other forms of pedagogical control.
    • The educational function of testing is to motivate the student to intensify work on the assimilation of educational material. To enhance the learning function of testing, additional measures to stimulate students can be used, such as the distribution by the teacher of an approximate list of questions for self-preparation, the presence of leading questions and tips in the test itself, and joint analysis of the test results.
    • The educational function is manifested in the frequency and inevitability of test control. This disciplines, organizes and directs the activities of students, helps to identify and eliminate gaps in knowledge, forms the desire to develop their abilities.

    Testing is a fairer method, it puts all students on an equal footing, both in the control process and in the evaluation process, practically eliminating the subjectivity of the teacher.
    It should be noted that it is testing that is gradually becoming the main form of passing exams. Since 2009, for all school graduates, the main form of the final state certification in the school of the Russian Federation has been the Unified State Exam. And the realities are such that it is necessary to introduce test technologies into the training system. With their help, during the year it is necessary to assess the level of assimilation of the material by students and form their skills in working with test tasks. Such training will allow students to actually increase their scores when passing the exam. Also, during such trainings, the corresponding psychotechnical skills of self-regulation and self-control are developed. In this regard, testing, as a means of measuring and controlling students' knowledge, becomes the basis of the learning process in the Russian school.
    Test tasks can be compiled using a variety of computer tools, ranging from various editors and presentation programs to the use of programming languages ​​and Internet capabilities. And, probably, any teacher of computer science and ICT created his own test environment for his work. But the development of high-quality test tools is a long, laborious and expensive process.
    The MyTest program has been developed by Bashlakov Alexander Sergeevich since 2003. During this time, a lot has come out different versions. Each a new version includes the best previous version and offer new opportunities. The first versions were simple but convenient test shells, while the current version of MyTest X is no longer a single program, but a powerful set of programs for preparing and conducting computer testing.
    With the help of the MyTest X program, it is possible to organize and conduct testing, exams in any educational institutions (universities, colleges, schools) both in order to determine the level of knowledge in any academic disciplines, and for educational purposes. Enterprises and organizations can carry out attestation and certification of their employees.
    MyTest X is a software system (student testing program, test editor and results log) for creating and conducting computer testing, collecting and analyzing results, and grading according to the scale specified in the test.



    The program is easy and convenient to use. All teachers and students learn it quickly and easily. Here is the words of one of the users of the program: "In my opinion, MyTest has reached the perfect state: it has every conceivable function, it is very compact, its features and ease of use are in the golden balance."
    MyTest X program works with nine types of tasks: single choice, multiple choice, ordering, matching, indicating truth or falsity of statements, manual number entry, manual text entry, selection of a place in the image, rearrangement of letters. In the test, you can use any number of any types, you can use only one, you can use all at once. In tasks with a choice of answers (single, multiple choice, indication of order, indication of truth), you can use up to 10 (inclusive) answer options.
    The program consists of three modules: Test Module (MyTestStudent), Test Editor (MyTestEditor) and Test Log (MyTestServer).
    To create tests, there is a very convenient test editor with a friendly interface. Any subject teacher, even one who owns a computer on entry level, can easily create their own tests for the MyTest program and use them in the lessons.
    The program has rich options for formatting the text of questions and answer options. You can define the font, character and background color, use superscript and subscript, break text into paragraphs and apply advanced formatting to them, use lists, insert pictures and formulas... For greater convenience, the program has its own text editor.
    For each task, you can set the difficulty (the number of points for the correct answer), attach a hint (the display may be for penalty points) and an explanation of the correct answer (displayed in case of an error in the training mode), configure other parameters ...
    Any grading system can be used in MyTest X. The scoring system and its settings can be set or changed in the test editor.
    In the presence of computer network you can, using the log module MyTest, you can easily:

    • Organize centralized collection and processing of test results. The results of the assignments are displayed to the student and sent to the teacher. The teacher can evaluate or analyze them at any time convenient for him.
    • Organize the distribution of tests to students over the network, then there is no need to copy test files to all computers every time. You can distribute several different tests at once.
    • Directly monitor the testing process. You can see who takes which test, how many tasks have already been completed and what their performance is.

    With the help of MyTest X programs you can organize both local and network testing. Do what is more convenient for you.
    The program supports several modes independent of each other: training, penalty, free and exclusive. In the training mode, the test-taker displays messages about his mistakes, and an explanation for the task can be shown. In the penalty mode, for incorrect answers, points are taken away from the test-taker and you can skip tasks (points are not added or taken away). In the free mode, the test-taker can answer the questions in any order, go (return) to any question on their own. In exclusive mode, the program window occupies the entire screen and cannot be minimized.
    With the correct selection of control material, the content of the test can be used not only for control, but also for training. Thus, allowing the subject to independently detect gaps in the structure of his knowledge and take measures to eliminate them. In such cases, we can talk about the significant training potential of test tasks, the use of which will become one of the effective directions for the practical implementation of the principle of unity and the relationship between training and control.
    Each test has an optimal testing time, the decrease or excess of which reduces the quality of the test. Therefore, in the test settings, it is possible to limit the execution time of both the entire test and any answer to the task (you can set different times for different tasks).
    Test parameters, tasks, images for tasks for each individual test - everything is stored in one test file. No databases, no extra files- one test - one file. The test file is encrypted and compressed.
    MyTest X has a good degree of protection for both test items and results. Due to the fact that several different passwords can be set for the test (for opening, editing, testing), it becomes practically impossible to spoil (edit) the test for persons who do not have the right to do so, plus everything, it is not possible to steal the keys (correct answers) to the test tasks. Since the test results can be saved to a secure file that cannot be edited, student grades are always objective and do not depend on the loyalty of the tester. Due to the fact that the test results can be saved both on the local PC and in parallel on the tester's PC, the probability of losing the results is reduced to 0%. The program has demonstrated high reliability of work both in schools and universities in Russia and neighboring countries. The program provides various options for protecting tests from unauthorized receipt of answers.
    The program is constantly evolving, intelligently considering the needs of many users and at the same time not infringing on anyone, that is, new features add interesting features for testing and are not superfluous for those who need simpler tests.
    To many useful features, which are available in the program for conducting computer testing, you can also add the fact that if a student for some reason cannot perform a test on a PC (for example, for health reasons), then literally in 1-2 minutes you can create a "paper" version of the test .
    The MyTest X program is distributed free of charge. Non-commercial use of the program does not require monetary payments. Any educational institution, teacher and student can use the program for free based on license agreement without any cash payments. The program works under Windows 2000, XP, Vista, 7. To work under Linux, you can use Wine.
    It is difficult to immediately list all the features of MyTest X, point out all those little things that make working with easy and comfortable. But one has only to try it in work, create and run a few tests, and it will take its rightful place in the list of your favorite programs.

    Download program.

    In this tutorial we will learn how and where to download latest version programsMyTestX. Install it on the teacher's computer and on the student's computer. Consider the features of each of the three modules that make up the program.



    The most important lesson in this course. In it you will understand and learn how to use the main features and advantages of the program. We are on specific example Let's see how to create and edit tests. Consider all nine types of possible questions. Let's analyze the grading systems and the main settings of the current test. We will learn how to make a test time limit, ask a random order of questions and answers to them.



    In this tutorial, we'll talk about setting up the Server and Student modules. This is very important, because this is where you will understand what is the main advantage of this program for the teacher. You will see how a teacher can distribute a test to students over the network from his computer with two mouse clicks, and then get the test results in a convenient form. But first, we will consider what settings need to be made in the program so that the modules interact correctly with each other.



    Special video lesson for students. Whatever questions arise during the test, how to answer this or that type of question, you can simply show this video lesson in the first lesson. As practice shows, after this, the students do not have questions about the test.


    An additional lesson in which we will consider the situation when you do not have in the class local network and you can't get results to your server. Let's set up the program so that the results are saved to a special file and the information on the test execution along with the marks is not lost. And it is also possible that many are tormented by the question of whether it is possible to use all this in Linux . The answer is yes, but how to look in the same video tutorial. In addition, we will see where you can find additional information on this program in order to use all its features.

    Software testing is the evaluation of the software/product being developed to check its capabilities, capabilities and conformity with the expected results. Exist Various types methods used in the field of testing and quality assurance and will be discussed in this article.

    Software testing is an integral part of the software development cycle.

    What is software testing?

    Software testing is nothing more than testing a piece of code to controlled and uncontrolled operating conditions, observing the output, and then examining whether it meets predefined conditions.

    Various sets of test cases and testing strategies are aimed at achieving one common goal - eliminating bugs and errors in the code, and ensuring accurate and optimal software performance.

    Test Methodology

    The commonly used testing methods are unit testing, integration testing, acceptance testing, and system testing. The software is subjected to these tests in a specific order.

    3) System testing

    4) Acceptance tests

    The first step is a unit test. As the name suggests, this is an object-level test method. Individual software components are tested for errors. This test requires precise knowledge of the program and each installed module. Thus, this verification is done by programmers, not testers. To do this, test codes are created that check whether the software behaves as intended.


    Individual modules that have already been unit tested are integrated with each other and checked for faults. This type of testing primarily identifies interface errors. Integration testing can be done using a top-down approach, following the architectural design of the system. Another approach is the bottom-up approach, which is done from the bottom of the control flow.

    System testing

    In this testing, the entire system is checked for errors and bugs. This test is carried out by pairing hardware and software components the entire system, and then it is checked. This testing is listed under the "black box" testing method, where the expected operating conditions for the user of the software are checked.

    Acceptance tests

    This is the last test that is carried out before handing over the software to the client. It is carried out to ensure that the software that has been developed meets all customer requirements. There are two types of acceptance testing - one that is carried out by members of the development team is known as internal acceptance testing (Alpha testing), and the other that is conducted by the customer is known as external acceptance testing.

    When testing is done with the help of prospective customers, it is called customer acceptance testing. If testing is carried out end user software, it is known as acceptance testing (beta testing).

    There are several basic testing methods that form part of the software testing regimen. These tests are usually considered self-sufficient in finding errors and bugs throughout the system.

    Black box testing

    Black box testing is done without any knowledge inner work systems. The tester will stimulate the user environment software by providing various inputs and testing the generated outputs. This test is also known as black-box, closed-box testing or functional testing.

    White box testing

    White box testing, unlike black box testing, takes into account the internal functioning and logic of the code. To perform this test, the tester must have code knowledge to know the exact part of the code that has errors. This test is also known as White-box, Open-Box or Glass box testing.

    Gray box testing

    Gray box testing, or Gray box testing, is a cross between White Box and Black Box testing, where the tester only has the general knowledge of the product needed to complete the test. This verification is done through documentation and schema. information flows. Testing is conducted by the end user, or users who appear to be end users.

    Non-functional tests

    Application security is one of the main tasks of the developer. Security testing checks software for confidentiality, integrity, authentication, availability, and non-repudiation. Individual tests are carried out in order to prevent unauthorized access to the program code.

    Stress testing is a technique in which software is exposed to conditions that are outside the normal operating conditions of the software. After reaching the critical point, the results are recorded. This test determines the stability of the entire system.


    The software is tested for compatibility with external interfaces, such as OS, hardware platforms, web browsers, etc. The compatibility test checks if the product is compatible with any software platform.


    As the name suggests, this testing technique tests the amount of code or resources used by a program to perform a single operation.

    This testing tests the aspect of user friendliness and usability of the software. The ease with which a user can access a device forms the main point of testing. Usability testing covers five aspects of testing - learnability, performance, satisfaction, memorability, and errors.

    Tests in the software development process

    The waterfall model uses a top-down approach, whether it is used for software development or testing.

    The main steps involved in this software testing methodology are:

    • Needs Analysis
    • Design test
    • Implementation test
    • Testing, debugging and verifying code or product
    • Implementation and maintenance

    In this technique, you only move to the next step after you have completed the previous one. The model uses a non-iterative approach. The main advantage of this methodology is its simplified, systematic and orthodox approach. However, it has many drawbacks, as bugs and bugs in the code will not be discovered until the testing phase. This can often result in wasted time, money, and other valuable resources.

    Agile Model

    This methodology is based on a selective combination of a sequential and iterative approach, in addition to a fairly large variety of new development methods. Rapid and progressive development is one of the key principles of this methodology. The emphasis is on getting fast, practical, and visible exits. Continuous customer interaction and participation is an integral part of the entire development process.

    Rapid Application Development (RAD). Rapid Application Development Methodology

    The name speaks for itself. In this case, the methodology takes a rapid evolutionary approach, using the principle of component construction. After understanding different requirements of this project, a rapid prototype is prepared, and then compared with the expected set of output conditions and standards. Necessary changes and modifications are made after a joint discussion with the customer or development team (in the context of software testing).

    While this approach has its fair share of advantages, it may not be appropriate if the project is large, complex, or highly dynamic in nature, in which requirements are constantly changing.

    spiral model

    As the name implies, the spiral model is based on an approach where there are a number of cycles (or spirals) from all successive steps in the waterfall model. After the initial cycle is completed, a thorough analysis and review of the achieved product or output is carried out. If the output does not meet specified requirements or expected standards, a second cycle is performed, and so on.

    Rational Unified Process (RUP). Rational unified process

    The RUP methodology is also similar to the spiral model, in the sense that the entire testing procedure is divided into several cycles. Each cycle consists of four stages - creation, development, construction, and transition. At the end of each cycle, the product/yield is reviewed and a further cycle (consisting of the same four phases) follows as needed.

    Application information technologies is growing every day, also the importance of proper software testing has grown exponentially. Many firms maintain a staff of special teams for this, the capabilities of which are at the level of developers.

    Today, not a single teacher can do without tests, whether it be a school teacher or a professor of a multi-thousand online course. Choosing from several options is not the only possibility: you can insert pictures and videos into surveys, change task formats almost indefinitely. Edutainme has chosen seven services that will facilitate the preparation and conduct of testing.

    Google Forms

    Google Forms is part of the Google Drive office toolkit. Perhaps this is one of the fastest and easiest ways to create your own survey or test: write a task, select the type of answer (choose from several options, write your own) - you're done! The resulting test can be sent to students by e-mail or embed on your site using a special code. To speed up the work, we recommend adding the Flubaroo plugin - it automatically checks students' answers and grades according to specified criteria. The forms are completely free - you only need to have a Google account to use the resource.

    With Quizlet, you can create quizzes where students choose the correct answers, match images and information, or write in their own answers. It is very easy to use - you can figure out the interface in just a couple of minutes, in addition, Quizlet supports Russian and works on Android and iOS. Quizlet is free, but there's also a $10 Plus subscription that lets you upload your own pictures and create an unlimited number of study groups.

    Proprofs

    Proprofs prepares tests for every taste - you can offer one or more options to choose from, ask you to fill in a missing word or write a detailed answer. The service allows you to insert into tasks text documents and presentations PDF files, as well as images, audio and video files. Once you've completed your test, you can leave it in public access on the Proprofs website or embed on your page.

    Although the service is free, Proprofs features are expanded in paid plans. Teachers should pay attention to the Basic and Professional tariffs. The first opens all the main features of the service and allows you to create an unlimited number of tests for $20 per month; the second allows you to combine students in closed groups and will cost $40. New users can use all Proprofs features for free for 15 days after registration.

    Kahoot! allows you to submit almost all educational material in the format of surveys and tests. To forge feedback with students, you can play around with new topics in the form of simple questions and answers, and consolidate knowledge with more detailed testing. Kahoot! designed for use in the classroom - the teacher shows the material on the main screen, while students answer questions and discuss information using a special client for computers or a browser on smartphones (Android, iOS, Windows phone). In order to enter the virtual classroom, students must enter a special code sent by the teacher. The service allows you to find out how each student answered the questions, or build progress charts for the entire class. The students themselves can monitor their results in special tables. Kahoot! free and fully accessible after registration.

    ClassMarker

    In ClassMarker, you can do polls with different formats answers - in addition to familiar options, there is even an essay. To get started, the teacher needs to create a virtual classroom and send invitation codes to students. ClassMarker stores the results of all tests taken, keeping performance statistics. If the teacher has his own web page, he can embed test tasks on it.

    IN free version ClassMarker allows you to create no more than 100 tests. 400 tests per month will cost $16.50, and 1000 tests will cost $33. The service has annual packages for those who rarely test online. The minimum number of tests (50 per year) will cost $25 per year, and the maximum (5000 per year) will cost $1000.

    A mobile application for teachers that helps to organize surveys right in the classroom. Students are given special forms with answer options (A, B, C and D) - when they hear a question, they raise the necessary cards, which the teacher scans with a smartphone camera. Plickers allows you to analyze the results of an individual student or study statistics for the entire class. The app works on Android and iOS and is free to download.

    Easy Test Maker

    The most interesting thing in Easy Test Maker is the ability to create tasks where you need to choose true and false statements. Texts can be formatted for ease of reading on a tablet, or downloaded in .pdf or .doc formats for testing in a more traditional format. The service can mix questions and answer options to make it harder for students to cheat.

    The free version of Easy Test Maker allows you to create 25 tests without the ability to export to "paper" formats. In the Plus plan ($44.95 per year), you can check English spelling, create an unlimited number of tests, and export to offline formats. With a Premium subscription ($74.95 per year), the service will automatically check the results, and will also allow you to set a time limit for completing tasks and attach graphic files to surveys.

    Egor Antonenkov

    SunRav TestOfficePro is a knowledge control and testing software. Allows you to create tests of different levels of complexity and focus; conduct testing efficiently and comfortably for users and organizers.

    TestOfficePro works in a local network and on computers that are not connected to the network (it is possible to test from flash drives, CDs without installing the program).

    SunRav TestOfficePro

    The SunRav TestOfficePro program is included in the Unified Register of Russian Programs for Electronic computers and databases.

    Computer knowledge testing

    Pedagogical testing is a widely used method for monitoring knowledge and evaluating learning outcomes. It is used to determine the level of knowledge, for learning, for motivation for learning. With mass checks and self-preparation, the computerized form of testing is the most effective. It is with computer testing that it is easy to correct knowledge simultaneously with verification. After each incorrect answer, the program sends the student to the block of information he needs. Useful for pedagogical control Additional Information, for example, a detailed report for each test-taker - what questions the student received, how much time he spent on a separate answer, how he answered ...
    Both high-quality test tasks and educational material, as well as professional software products, are very important in the testing process.

    SunRav TestOfficePro makes it easy to create and apply tests in any academic discipline, subject school curriculum, tests to determine professional competence, staff certification, psychological tests.

    The program includes

    • tMaker- a program for creating tests. It is possible to accompany questions and answers with images, animations, audio and video clips. Compose and edit tests in this program can be a computer user with any level of training. You can import tests created in a text editor (for example, in MS Word) or a spreadsheet editor (for example, in MS Excel).
    • tTester- a program for testing. Has the most simple interface. Extensive settings and options command line allow you to adapt its work to any requirements.
    • tAdmin- a program for managing users and processing the results of computer testing. Allows you to view/print results, as well as create, edit, export, print group testing reports and/or individual users. It is possible to create a matrix of answers.

    Key Features of SunRav TestOfficePro

    Creation of tests. Work with test tasks

    Write tests for any purpose, most different types and types will help the following functions of the program:

    • Variety of question types. The program allows you to use 5 types of questions in tests:
      1. single choice. One answer out of several options.
      2. Multiple Choice. One or more answers from several options.
      3. Open question. The user must enter the answer from the keyboard. The test creator can use powerful language templates that allow you to correctly evaluate the user's response.
      4. Correspondence. The user needs to arrange the statements in the two lists so that they correspond to each other.
      5. ordered list. Arrange the answers in the list in a certain order.

    • adaptive tests. The order of the questions can be not only linear, but also depend on the user's answers.
    • Using Themes. The program can break the test into several topics. Knowledge can be assessed both for each topic separately and for the test as a whole.
    • Comments on the question. Each question can be accompanied by a comment with testing instructions, a hint, information about the correct answer, etc.
    • Options for reactions to the user's response:
      1. No response - the user is prompted to answer the next question.
      2. A message that the user answered correctly or incorrectly.
      3. Show any document related to the question. In it, in particular, you can explain in detail the reason for the wrong answer and provide additional material that will allow you to study the issue in more depth.

    • The weight of the question and answer options. Each question and answer can have its own "weight". This allows the user to be awarded more points for correct answers to difficult questions and less points for answers to easy questions.
    • Visualization. The program allows you to insert images, formulas, diagrams, tables, audio and video files, HTML Documents and any OLE documents. The built-in text editor in tMaker for writing tests by function resembles MS Word familiar to many.

    Ensuring the objectivity of testing

    • Setting up the testing process. Administrator can:
      1. Prohibit exiting the program until the end of testing.
      2. Disable desktop and taskbar access.
      3. Close the program after passing one test.

    • random questions. Questions in the test can be mixed. In addition, the quiz creator can determine how many questions from each topic the user will receive. Let's say the topic consists of 300 questions. If only 30 questions are randomly selected, test takers will receive completely different sets of questions from the same test. The answer options for each question can also be mixed. Thus, with a sufficiently large number of questions, the test-taker cannot thoughtlessly use the preliminary knowledge of the test, with a predetermined sequence of questions and answers. Note: the described function is set by selecting "Examination mode" in the settings, see the documentation for the program.
    • Introduction of time frames. Testing can be limited in time - both for the test and for each question. The amount of time allocated for each question may vary.
    • Setting the information visible during testing. In the program, you can determine whether to show the user:
      1. The number of correct answers.
      2. Time until the end of testing.

    • Limit on the number of testing attempts. In the program, you can set the maximum number of passing one test.
    • Tracking test attempts in the program