fbpx

Courses

We found 8 courses available for you
See
Free

Human Resources

3 hours
Intermediate

What is Human Resources? Human Resources (HR) refers to the …

What you'll learn
Employee Relations: Study conflict resolution, employee engagement, and strategies for creating a positive and inclusive workplace culture. Learn to address workplace issues and disputes.
Performance Management: Learn about performance appraisal systems, setting goals, providing feedback, and identifying areas for employee development and improvement.
Employee Engagement and Satisfaction: Understand how to measure and improve employee engagement and job satisfaction. Explore strategies for enhancing morale and motivation.
Succession Planning: Understand the importance of succession planning and how to identify and develop future leaders within the organization.
Employee Records and HR Information Systems: Learn how to manage employee records, payroll, and HR information systems effectively.
HR Technology: Learn to use HR software and technology for tasks like applicant tracking, payroll, and employee management.
Communication and Interpersonal Skills: Enhance your communication skills to interact effectively with employees, management, and external stakeholders.
Data Analysis and Reporting: Learn how to collect, analyze, and present HR data to inform decision-making and measure the impact of HR initiatives.
Free

BDE

3 hours
Intermediate

What is Business Development Executive? In a business context, BDE …

Free

CCC (Course on Computer Concepts)

2 hours
Intermediate

Why Computer Education most importing? Digital Literacy: In today’s digital …

What you'll learn
Microsoft Word: Microsoft Word is a word processing software used for creating and editing documents. When learning Word, you'll gain skills in formatting text, creating headers and footers, working with tables, inserting images, creating lists, and more. Word is commonly used for writing reports, essays, letters, and other text-based documents.
Microsoft Excel: Microsoft Excel is a spreadsheet application used for data analysis and calculations. In Excel, you'll learn to create and format spreadsheets, use mathematical and statistical functions, create charts and graphs, and manage data. Excel is widely used in business for financial analysis, data management, and reporting.
Microsoft PowerPoint: Microsoft PowerPoint is a presentation software used to create slideshows and visual presentations. When learning PowerPoint, you'll acquire skills in designing slides, adding text and multimedia elements, creating animations, and delivering effective presentations. PowerPoint is frequently used in academic, business, and professional settings.
Free

Node Js

2 hours
Intermediate

What is Node Js? Node.js is an open-source, server-side runtime …

What you'll learn
JavaScript Fundamentals: While Node.js focuses on server-side development, you'll still need a strong foundation in JavaScript, including concepts like variables, data types, functions, and control flow.
Asynchronous JavaScript: You'll learn how to work with asynchronous JavaScript, understanding callbacks, promises, and async/await, which are crucial for handling non-blocking I/O operations.
Node.js Basics: You'll gain an understanding of the Node.js runtime environment, how to install it, and how to run JavaScript code on the server. You'll also explore the Node.js event loop, which is central to its non-blocking nature.
Core Modules: Node.js provides a set of built-in modules for tasks like file system operations, network communication, and data manipulation.
npm (Node Package Manager): You'll get familiar with npm, the package manager for Node.js, which allows you to install, manage, and publish third-party packages and libraries.
Working with Databases: You'll learn how to interact with databases in Node.js. This can include using database libraries like MongoDB / MySQL, or connecting to databases through Object-Relational Mapping (ORM) tools like.
Error Handling and Debugging: You'll gain knowledge on how to handle errors gracefully and debug Node.js applications effectively.
Free

React Js

2 hours
Intermediate

What is React Js? React (also known as React.js or …

What you'll learn
Component-Based Development: React is centered around a component-based architecture. You'll learn how to create reusable, self-contained UI components that can be combined to build complex user interfaces. This approach makes your code more modular and maintainable.
Rendering and Re-rendering: You'll understand how React handles rendering and re-rendering. React efficiently updates the user interface by comparing the Virtual DOM with the actual DOM, making it performant and responsive.
State Management: You'll learn how to manage the state of your application using React's built-in state management. This includes setting and updating component state, and understanding how state changes trigger component re-renders.
Props: You'll work with props (short for properties) to pass data from parent components to child components. This is an essential mechanism for sharing information and configuring components.
Lifecycle Methods: React components have a lifecycle, and you'll learn how to use lifecycle methods to execute code at specific points in a component's lifecycle, such as when it's mounted or updated.
Handling Events: You'll learn how to handle user interactions and events, such as clicks and form submissions, and how to respond to these events within your components.
Conditional Rendering: React allows you to conditionally render components and elements based on certain criteria. You'll learn how to show or hide elements dynamically.
Lists and Keys: You'll understand how to work with lists of data and the importance of using keys to help React efficiently update the UI when dealing with dynamic lists.
Routing: While not part of React core, you'll often learn how to integrate a routing library (such as React Router) to manage navigation and routing within your single-page applications.
State Management Libraries: You might explore state management solutions like Redux or the Context API for more complex applications where managing global state is necessary.
Free

Java Script

2 hours
Intermediate

Why JavaScript is Important? JavaScript is important for several reasons, …

What you'll learn
Syntax and Structure: You'll start by learning the basic syntax of JavaScript, including variables, data types, and how to write and structure code.
Document Object Model (DOM):You'll explore the DOM, which is the representation of web pages in the browser. JavaScript allows you to manipulate and interact with the DOM to change content and respond to user actions.
Asynchronous JavaScript: JavaScript is asynchronous, and you'll learn how to use callbacks, promises, and async/await to manage asynchronous operations, such as making HTTP requests to fetch data from a server.
Object-Oriented Programming (OOP) in JavaScript: You'll delve into OOP principles like encapsulation, inheritance, and polymorphism, as JavaScript is an object-oriented language.
Error Handling: You'll understand how to handle errors and exceptions using try...catch blocks and throw statements to ensure your code is robust.
Functional Programming Concepts: JavaScript supports functional programming. You'll learn about higher-order functions, closures, and functional programming patterns.
Browser APIs: You'll explore various browser APIs that JavaScript provides, enabling you to work with the browser environment, including interacting with the user, handling form data, and working with cookies and local storage.
JSON and Data Handling: You'll learn how to parse and stringify JSON data, which is essential for sending and receiving data from APIs and web servers.
Events and Event Handling: You'll understand how to manage and respond to various events, such as clicks, keypresses, mouse movements, and touch events
ES6 and Modern JavaScript: You'll stay up-to-date with the latest features and enhancements introduced in ECMAScript 6 (ES6) and beyond
Free

Java Programming

2 hours
Intermediate

What is Java Programming? Java is a popular, versatile, and …

What you'll learn
Syntax and Fundamentals: You'll start with the basics, including understanding Java's syntax, data types, variables, operators, and control structures (if statements, loops).
Object-Oriented Programming (OOP): Java is an object-oriented language, and you'll delve into core OOP concepts such as classes, objects, inheritance, polymorphism, encapsulation, and abstraction.
Packages and Modules: Learn how to organize your code into packages and use Java's module system introduced in Java 9 for better code organization and encapsulation.
Methods and Functions: Explore how to create methods (functions) in Java and understand method overloading and overriding.
Input and Output (I/O): Learn how to read and write data to files, use input streams and output streams, and work with file handling in Java.
Exception Handling: Understand how to handle exceptions and errors gracefully in your Java programs using try-catch blocks and exception classes.
Industry Best Practices: Gain knowledge of coding standards, design patterns, and best practices for writing clean, maintainable, and efficient Java code.
Free

C & C++

2 hours
Intermediate

what is computer programming? Computer programming, often referred to simply …

What you'll learn
Basic Syntax: You will learn the fundamental syntax of the C programming language, including variable declaration, data types, operators, and control structures (loops and conditionals).
Functions: You'll learn how to write functions in C, which are reusable blocks of code that perform specific tasks.
Pointers: Understanding and working with pointers is a crucial aspect of C programming. Pointers are variables that store memory addresses and are used for tasks like dynamic memory allocation and efficient data manipulation.
Memory Management: C provides manual memory management, and you'll learn how to allocate and deallocate memory using functions like malloc and free.
Arrays and Strings: You'll become proficient in working with arrays and strings, which are fundamental data structures in C & C++.
File Handling: C provides functions for file input and output operations. You'll learn how to read from and write to files.
Debugging and Error Handling: Learning how to debug C programs and handle errors is an essential skill.
Object-Oriented Programming (OOP): C++ extends C by introducing OOP concepts like classes and objects. You'll learn how to create and use classes, encapsulation, inheritance, and polymorphism.
Templates: C++ supports template classes and functions, allowing you to write generic code that can work with different data types.
Exception Handling: You'll learn how to use exception handling to manage errors and exceptions in C++ programs.
Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Content
  • Weight
  • Dimensions
  • Additional information
Click outside to hide the comparison bar
Compare