What are number systems? What are the Different Types of Number Systems in Computing? Usually we humans are more comfortable with decimal numbers (base 10). But in computer system we have other types that are used as per the requirement. Read More …
Category: Computing
How to Determine the Overflow of Signed and Unsigned Numbers?
Why it is necessary to get the idea of overflow? Numbers represented in computer system have always have a specific range. It depends on how many bits your system process. Some systems are 32 bits while other are 64-bits. With the advancement in technology we have now larger bits processing systems. But they have limited range of numbers they can represent. Overflow refers to the condition when the given bits can not represent the given number. It means that number needs more bits for its representation. There is another situation where the number is small enough and not representable according to the given pattern of numbers. This is called underflow.
What are the Perfect Numbers? C++ Code for perfect Numbers Test
Introduction to Perfect Numbers Perfect numbers are a special kind of integer in mathematics. A perfect number is a positive integer that is equal to the sum of its proper divisors, excluding itself. In other words, the sum of the Read More …
What are the enums in C++? How to use enums?
Introduction What are the enums in C++? Enumeration is another way of defining user defined data types in C++. Though it has not much significance in programming but its a good way of understanding the basics of user defined data Read More …
What are the SR latch and JK flip flop?
What is the SR latch? What are the SR latch and JK flip flop? An SR latch (Set/Reset) is an asynchronous device: it works independently of control signals and relies only on the state of the S and R inputs. Read More …
Implementation of Dipole Antenna using CST Microwave Studio
Introduction In this article you will learn about the Implementation of Dipole Antenna using CST Microwave Studio. Here, we have describes a simple Dipole Antenna that has been proposed and reviewed for wireless applications using a resonating frequency of 2.4 Read More …
New Fascinating Video Gaming Chairs 2024
Video Gaming Chairs New Fascinating Video Gaming Chairs 2022. Video gaming chairs are an essential part of any serious gamer’s setup. Not only do these chairs provide a comfortable and ergonomic seating solution, but they also offer increased immersion for Read More …
Linear Programming Problem with Example
Example of Linear Programming Consider the problem of a toy company that produces toy planes and toy boats. The toy company can sell its planes for $10 and its boats for $8 dollars. It costs $3in raw materials to make Read More …
What is a GPU? Discuss Different Types of GPU
Introduction to GPU What is a GPU? Discuss Different Types of GPU. A GPU (Graphics Processing Unit) is a specialized processor designed to handle complex calculations to render images and video. GPUs are essential to many modern computers and are Read More …
How to Compare two Strings in Java?
In this article, you will learn How to Compare two Strings in Java? String is a succession of characters. In Java, objects of String are permanent which implies they are steady and can’t be changed once made. The following are Read More …