All posts by Book Of Engineering

BEST 3D PRINTERS NOVEMBER 2021

In this list we will update every month we are taking 3 important points into consideration. First and the most important is printing speed, second is the printing volume and the third number is the resolution meaning how precise it can print. Hope it will help you.

Continue reading BEST 3D PRINTERS NOVEMBER 2021

EE02:FUSES BY MARKING

Fuse selection is important in an electrical circuit, because a very rapid acting fuse might open in 0.1 seconds, a fast acting fuse might open in one second, and a slow acting fuse might take tens of seconds to open if a current of 20A was flowing through a fuse rated at 10A.

Continue reading EE02:FUSES BY MARKING

TEA BREAK WITH EXCEL: FINDING A SPECIFIC TEXT IN A CELL RANGE (OR IF THIS TEXT IS INCLUDED IN THIS RANGE OR NOT?)

Tea Rating: ☕

To find a specific text in a specific range we are using the formula;

Continue reading TEA BREAK WITH EXCEL: FINDING A SPECIFIC TEXT IN A CELL RANGE (OR IF THIS TEXT IS INCLUDED IN THIS RANGE OR NOT?)

TEA BREAK WITH C++: DATA TYPES

Continue reading TEA BREAK WITH C++: DATA TYPES

TEA BREAK WITH NANOCAD: COMMAND LINE BAR AND DRAWING YOUR FIRST LINE

NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/books/nanocad/

Continue reading TEA BREAK WITH NANOCAD: COMMAND LINE BAR AND DRAWING YOUR FIRST LINE

TEA BREAK WITH C++: VARIABLES

Since we learned basic input function at programming with C++, we need to talk a little more about the variables. 

Variables are simply naming some data location in your pc. With variables you can store a value. 

Continue reading TEA BREAK WITH C++: VARIABLES

BEST CRYPTO CURRENCY MINING MACHINES Of 2021 OCTOBER

Pros in mining generally prefer ASIC. ASIC stands for application specific integrated circuit. It may be voice processing or mathematical data processing. But may be also for mining.

Continue reading BEST CRYPTO CURRENCY MINING MACHINES Of 2021 OCTOBER

TEA BREAK WITH C++: Basic Input & endl

On line 9 in the previous example we give 

    int firstNumber, secondNumber, sum;

We define integer variables. These are first number with the definition firstNumber, and the second number defined as secondNumber. And the sum. These we defined as integer by writing “int” at the beginning.  

Continue reading TEA BREAK WITH C++: Basic Input & endl