Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles on Trending Technologies
Technical articles with clear explanations and examples
Swift program to get the remainder of float numbers using library function
This tutorial will discuss how to write swift program to get the remainder of float numbers using library function. A number with fractional component is known as float numbers. For example, 34.5, 2.1, 0.2, etc. We can divide two float numbers with each other to find the remainder and quotient. Remainder is the value left after dividing a number by another number. Below is a demonstration of the same − Input Suppose our given input is − Num1 = 0.16 Num2 = 0.04 Output The desired output would be − Remainder = 0.0 To find the remainder of ...
Read MoreSwift program to print spiral pattern
This tutorial will discuss how to write swift program to print spiral pattern. Numeric pattern is a sequence of numbers which is used to develop different patterns or shapes like pyramid, rectangle, cross, etc. These numeric patterns are generally used to understand or practice the program flow controls, also they are good for logical thinking. To create a spiral pattern of numbers, we can use any of the following methods − Using nested for loop Using stride Function Below is a demonstration of the same − Input Suppose our given input is − Num = 6 Output ...
Read MoreC++ Program to Access private members of a class
Private members of a class are only accessed by the members of the class. This is done to preserve the object-oriented paradigm encapsulation, which ensures data and its related functions are kept in one unit and only accessible only from a member of that class. C++ has three different access specifiers to specify the visibility of the members of a class. The three access specifiers are − Public − If a member of a class has the visibility public, then the members can be accessed from any other class. Private − Class members having private visibility can be accessed from ...
Read MoreSwift program to convert string to an array
This tutorial will discuss how to write swift program to convert string to an array. String is an ordered collection of characters. For example − “TutorialsPoint”, “Pinky”, etc. To create a string type variable we use String keyword. var str : String Array is a collection of similar data types. Like any array of integer can contain only integer values, it does not accept string values. var arr = [Int] To convert string into an array we can use any of the following method. Below is a demonstration of the same − Input Suppose our given input is ...
Read MoreWhat is Minitab - Introduction, Benefits, Features
For most people, the first tool or software they learn and use for the purpose of data analysis is Microsoft Excel. Microsoft Excel is a part of the wider umbrella of professional software released by Microsoft under the Office brand. While Microsoft Excel’s first release was in 1987, Minitab’s first release came 15 years prior in 1972. However, despite having the first-mover advantage, Minitab did not become a user favorite as Microsoft Excel did. Most part of Microsoft Excel’s outstanding success can be attributed to the fact that most computers run on Microsoft Windows. However, Minitab too has some ...
Read MoreUnderstanding TAKT Time and Cycle Time vs. Lead Time
According to the majority of manufacturing organizations, collecting data is one of the fundamental concepts of running a successful, productive operation. A company's ability to function and develop within a certain sector, as well as the difference between succeeding in the market and going out of business, can be strongly impacted by its capacity to collect and manage production data. Cycle Time, TAKT Time, and Lead Time are three of the most often monitored parameters across most discrete manufacturing plants, despite the fact that there are innumerable measurements and KPIs to monitor. In this article, you will learn how ...
Read MoreThe Role of Six Sigma in Manufacturing
In today's digital era, one of the most popular process-optimization approaches is Six Sigma. With the key objective of reducing operational waste and redundancies and thus abolishing defects, errors, and waste, it establishes a set of standards for enterprises to adhere to. The fundamentals of Six Sigma were initially created as a type of quality control, mainly for major manufacturing businesses, with the goal of enhancing performance in the industrial sector. The primary goal of this quality control system was to improve production processes while reducing the number of errors discovered in them. Eventually, the Six Sigma approach was applied ...
Read MoreC++ Program to Show Use of This Keyword in Class
The ‘this’ keyword in C++ is very important and it is used in multiple use cases. The ‘this’ keyword or the ‘this’ pointer is used as an implicit object parameter when an object’s member function is called and refers to the invoking object. We take a look at the different use cases of the ‘this’ keyword. Syntax The ‘this’ keyword is used in the following way this->variable_name; Use Case 1: Resolving Variable Shadowing Variable shadowing is a very common use case for the ‘this’ pointer. Variable shadowing occurs when a class member variable and another parameter ...
Read MoreSwift program to print hollow rectangle star pattern
This tutorial will discuss how to write swift program to print hollow rectangle star pattern. Star pattern is a sequence of “*” which is used to develop different patterns or shapes like pyramid, rectangle, cross, etc. These star patterns are generally used to understand or practice the program flow controls, also they are good for logical thinking. To create a hollow rectangle star pattern we can use any of the following methods − Using nested for loop Using stride Function Below is a demonstration of the same − Input Suppose our given input is − Length = 10 ...
Read MoreSoftware Quality Assurance: Definition, Benefits, and Techniques
In the simplest of terms, Software Quality Assurance or SQA refers to a technique to ensure the right quality and standards during the development of software. Similar to other forms of quality testing procedures, Software Quality Assurance is used to keep a check on the functionality as well as the correctness of a particular software. An organization uses Software Quality Assurance to find out if the software being developed for use meets the requirements and quality standards that it seeks. For instance, imagine a food delivery company, developing software to keep their riders/delivery persons in touch with the restaurants and ...
Read More