Questions tagged [digital]

Digital usually refers to something using digits, particularly binary digits.

1. (of signals or data) Digital describes electronic technology that generates, stores, and processes data in terms of two states: positive and non-positive. Positive is expressed or represented by the number 1 and non-positive by the number 0. Thus, data transmitted or stored with digital technology is expressed as a string of 0's and 1's. Each of these state digits is referred to as a bit (and a string of bits that a computer can address individually as a group is a byte).

2. (of a clock or watch) A digital clock is a type of clock that displays the time digitally (i.e. in numerals or other symbols)

3. (of design or style) Digital Design or styles containing a set of graphically related glyphs, characters, or symbols. They are associated to everything from websites and computer-game graphics to special effects for movies.

4. (of media) Digital media are any media that are encoded in machine-readable formats. Digital media can be created, viewed, distributed, modified and preserved on digital electronics devices. Examples of digital media include software, digital images, digital video, video game, web pages and websites, including social media, data and databases, digital audio, such as MP3 and electronic books.

322 questions
-3
votes
2 answers

Unit of digital numbers?

what is the unit of digital numbers https://en.wikipedia.org/wiki/Numerical_digit. For example what is the unit of the difference of two ADC values: 10 - 2 = 8 digits 10 - 2 = 8 units 10 - 2 = 8 symbols 10 - 2 = 8 ??? Or for example I want to…
ge45mue
  • 677
  • 8
  • 23
-3
votes
2 answers

Tools to create a digital status board

In my company we are using a board to present status of the tickets. Something like kanban board but with more columns. So a chit is a ticket that you put on the table, that is drawn on the board. Columns (sometimes split into rows rows) represent…
user1655175
  • 11
  • 1
  • 3
-3
votes
1 answer

Can a digital system that represents all integers represent all rational numbers? all real numbers?

Can a digital system that represents all integers represent all rational numbers? All real numbers?
-4
votes
2 answers

errors occuring while compiling the code for histogram equalization

I'm trying to implement my own Histogram equalization without using the library routine for histogram equalization in opencv c++ 2.4.13.2 version. I compiled the program in terminal as follows: g++ `pkg-config --cflags opencv`…
R.Anush
  • 37
  • 9
-5
votes
3 answers

Java creating digital clock using swing

I'm working on some project, and a part of it - digital clock. I want that time like: 17:3:5 will appear like 17:03:05. My code is below (working). But some problems with it: I don't sure if I use correct the timer, and also my program looks to…
user1924939
  • 43
  • 2
  • 2
  • 4
-7
votes
1 answer

Negation of Bits

The below code gives output -1. #include using namespace std; int main() { int x=0; cout<<~x; return 0; } But when I do the following modifications the answer changes to 4294967295. just want to know that why in case of int…
1 2 3
21
22