Indian Engineering Education to be FREE from March 15, 2019
Includes:
ABOUT THE COURSE
This course provides an introduction to the development of algorithms to diverse types of problems and the development of computer programs to implement solutions for them. It explores standard programming constructs used to introduce fundamental algorithmic / programming concepts including variables, assignments, control constructs, functions, arrays and their role in problem solving. This course emphasizes structured programming in the development of algorithm solutions to common problems.COURSE OBJECTIVES
Upon successful completion of the course, the learner will be able to :In this module you will learn the strategies to solve a problem, structure of a java program, identifiers, Keywords, Data types, Input and Output Statements that are available in java.
In this module you will learn about conditional or Branching Statement,types of Conditional Statements, structure of each type, appropriate usage of each type.
In this module you will learn about looping construct, types of looping constructs, structure of each type, appropriate usage of each looping constructs.
In this module you will learn about function, declaration and definition of a function with examples, you will also understand how to invoke a function in java.
In this module you will learn about one dimensional array, storage structure of an one dimensional array, creation and initialization of 1D array, usage of 1D array.
In this module you will learn about two dimensional array, need for a two dimensional array, storage structure of a two dimensional array,creation and initialization of 2D array, usage of a 2D array.
In this module you will learn about strings, declaration of a string, storage structure of a string, usage of a string.
In this module you will learn about recursion, need for a recursive function, declaration and definition of a recursive function with examples.
In this module you will learn about command line argument, and also you will understand how to use command line arguments.
ABOUT THE COURSE
This course helps you to understand the concepts of object-oriented programming. The course covers introductory elements of object-oriented programming including inheritance, polymorphism, encapsulation, abstraction, aggregation and advanced concepts like error handling, file handling and Multi-threading.COURSE OBJECTIVES
Upon successful completion of the course, the learner will be able to :Welcome! In this module, you will be introduced to Classes and Objects which are the basic concepts of any Object-Oriented Programming language. You will be learning from modeling a real-time entity to create a programming model for real-world entities.
In real-world scenarios, we always work with a group of objects/data together. Collections framework in Java provides various data structures to use while enhancing the performance on the whole. In this module, you will be learning from a basic collection like the list to set, map and also learning how to implement them.
By this time you will be familiar with classes and objects. Any real-life entity would have a dependency or ownership over other such entities. Java helps you in modeling such relationships. In this module, you will be learning how to model a relationship between two classes/objects, the types of relationships.
Inheritance is a prime factor in Object-Oriented Programming which accounts for code reusability. Inheritance falls into the category of Is-A relationship. In this module, you will be learning inheritance and its types and also in the process, understanding where you must apply an inheritance paradigm in your application.
In this module, you will be learning about abstract classes and interfaces.These OO concepts are extension to inheritance, helping to model various design constraints into better implementations.
Exceptions are unwanted errors that interrupt the normal flow of execution. Exceptions & Errors are part and parcel of any application. Java provides a way to handle the exceptions and ensure smooth functioning of your applications.In this module, you'll be learning about exception and how to handle them.
Multithreading is a feature that enables concurrent execution of lightweight sub-processes. In current scenarios, need for the multi-threaded environment is increasing due to the enormous amount of data stored in any application.This module would focus on helping you to understand about creating a multi-threaded environment for an application and how to implement them.
Strings are important concepts for any programming language. There won't be any application without involving String manipulation. Several API methods are available in String class for easy implementation. In this module, you will be learning about String, StringBuffer and StringTokenizer, their differences and implementation.
In the earlier module, we learned about the collection, their types, and basic functionality. But that is not all about Java collections. Java has many more API methods for performing various functions in these collections. Also, there is comparator and comparable interfaces to define the ordering of these collections. This module will help you understand about comparator and comparable interfaces and implementation various nested collection objects for easy storage and retrieval of data.
In this module you will learn about the different streams and writers which are available in Java API. By now you would be familiar about BufferedReader and Scanner which is used to get console input. But there are many other stream readers and writes in java including reader and writer for files. File reading & writing forms an integral part of any application. From simple logging to storing Objects & Content, file processing plays a key role. Java has very well crafted API structure for File Processing.
In this module you will be learning about Annotations and Lambda expressions. Annotation is a form of syntactic metadata that can be added to Java source code used by Java compiler. Lambda expressions are similar to closures, in simple terms a kind of anonymous methods.
When you create applications, we may need to store data. Java Database Connectivity is very useful for connecting our Java application with various databases. It provides means to read, write and modify data in various databases like MySQL, MS SQL, etc.This module will help you in understanding about JDBC drivers, databases and various API methods to read/write data from database.
ABOUT THE COURSE
A strong foundation of understanding JUnit testing concepts is important for Unit testing. In this Course, you will learn about JUnit Basics, General Assertions, Number Equality, Object Equality, Array Equality, Hamcrest Assert that options, Testing Exceptions, Testing Collections, Custom Matcher using assert that, Testing with rules and much more. JUnit is a Regression Testing Framework used by developers to implement unit testing in Java, accelerate programming speed and increase the quality of code.COURSE OBJECTIVES
Upon successful completion of the course, the learner will be able to understand:A JUnit test is a method contained in a class which is only used for testing. This is called a Test class. To define a certain method as a test method, annotate it with the @Test annotation. Sometimes it may happens that our code is not completely ready while running a test case. As a result, the test case fails. In this session, let us see some basic JUnit tests and how to manage failures using @Ignore annotation.
Assert is a method useful in determining Pass or Fail status of a test case, The assert methods are provided by the class org.junit.Assert which extends java.lang.Object class.There are various types of assertions like Boolean, Null, Identical etc. In this session, let us understand more about assertions in JUnit.
The assertThat is one of the JUnit methods from the Assert object that can be used to check if a specific value match to an expected one using hamcrest matcher. Hamcrest is a framework for software tests. Hamcrest allows checking for conditions in your code via existing matchers classes. It also allows you to define your custom matcher implementations. In this session, we would be understanding how to use Hamcrest matchers in JUnit with the assertThat statement.
Hamcrest provides matchers for inspecting Collections such as list, map, etc., In this tutorial, we are going to explore the Hamcrest Collection API and learn how we can write better and more maintainable unit tests with it.
JUnit provides an option of tracing the exception handling of code. You can test whether the code throws a desired exception or not. The expected parameter is used along with @Test annotation. Parameterized tests allow a developer to run the same test over and over again using different values. In this session, Let us see @Test(expected) in action and also we would be understanding about parameterized test in JUnit.
As well as built-in matchers, Hamcrest also provides support for creating custom matchers. Assume class provides a set of methods useful for stating assumptions about the conditions in which a test is meaningful. In this session, we’ll take a closer look at how to create and use a custom matcher and we would also understand about Assume class in JUnit.
A test fixture is a fixed state of a set of objects used as a baseline for running tests. The purpose of a test fixture is to ensure that there is a well known and fixed environment in which tests are run so that results are repeatable.In JUnit, the order of test method execution is not so unpredictable anymore, by default the order though not specified will be deterministic for every run. The order can further be enforced by adding a new annotation @FixMethodOrder to the test class with different values.@Rule allows us to intercept method before and after the actual run of the method.In this session, we are going to understand about test fixtures, test ordering, and how to enhance a test using @Rule in JUnit.
ABOUT THE COURSE
In this course, you will learn how to test the web application, and how that knowledge helps you avoid common pitfalls and drastically improve your ability to debug problems. This course follows a hands-on, example-driven approach to show and explain all the important features added in selenium. This course is perfect for anyone who wants to learn more about automation testing.COURSE OBJECTIVES
Upon successful completion of the course, the learner will be able to :Selenium WebDriver is a web automation framework that allows you to execute your tests against different browsers. Selenium webdriver uses locators to find the web elements on web page. Locator is a command that tells Selenium IDE which GUI elements its needs to operate on. In this module we will learn about features of selenium IDE, Various Web Drivers and API and the locators in selenium.
Selenium WebDriver is the most frequently used tool among all the tools available in the Selenium tool set. Therefore it is important to understand how to use Selenium to interact with web apps. In this module, let us understand how to interact with GUI objects using Selenium webDriver.
Regular expressions are a very useful technique for improving Selenium WebDriver tests. In Selenium, regular expression patterns allow a user to perform many tasks that would be very difficult otherwise. Uploading a file is a common piece of functionality found on the web. In this module we will see how to Handle RegEx-Matches and how File uploading is done in selenium.
TestNG is a testing framework designed to simplify a broad range of testing needs, from unit testing to integration testing. TestNG is a testing framework inspired from JUnit and NUnit. It has more functionalities compared to JUnit and NUnit and it is more powerful and easier to use. In this module we will learn about TestNG Annotations and Listeners. We will also understand how to Prioritize the test methods.
In this module you will gain a deep knowledge about how to pass multiple data to the application at runtime. For that, we need to parameterize our test scripts. Parameterized tests allow developers to run the same test over and over again using different values. We will learn how to parameterize the data using Data Provider and testng.xml.
In this module you will get complete knowledge about Page Object Model in selenium. Page Object Model is a design pattern to create Object Repository for web UI elements. Under this model, for each web page in the application, there should be corresponding page class. This Page class will find the WebElements of that web page and also contains Page methods which perform operations on those WebElements. You will also learn Page Factory model in selenium.
In this topic we can understand about Selenium Framework and how does it works. Selenium Framework is a code structure that helps to make code maintenance easy. This module covers different frameworks like Data Driven Framework, Apache POI API, Keyword Driven and Hybrid Model.
ABOUT THE COURSE
In this course, you will learn how to test a web application, and how that knowledge would help you avoid common pitfalls and drastically improve your ability to debug problems. This course follows a hands-on, example-driven approach to show and explain all the important features added in Cucumber. This course is perfect for anyone who wants to learn more about Automated testing.COURSE OBJECTIVES
Upon successful completion of the course, the learner will be able to :In this module you will learn about the scenario execution by providing parameters from the feature files and the different ways of passing parameters from the feature file.
In this module you will learn about cucumber Data Tables which handle large amounts of data and the different aspects of Data Tables.
In this module you will learn about scenario execution by using cucumber tags in the feature file. You will also learn to execute a specific scenario in the feature file using tags.
In this module you will learn about cucumber hooks. You will also learn to handle the hooks in the step definition class.
In this module you will learn to handle the multiple step definition classes for the multiple feature files and its importance over the executing multiple set of test scripts.
E-Box is a Technology Enabled Active Learning and
Assessment platform for technology and engineering
domains apart from the basic LMS components like
quizzes, assignments, lesson components.