Questions tagged [data-transfer]

Data transmission, digital transmission, or digital communications is the physical transfer of data (a digital bit stream) over a point-to-point or point-to-multipoint communication channel.

Data transmission, digital transmission, or digital communications is the physical transfer of data (a digital bit stream) over a point-to-point or point-to-multipoint communication channel.

Examples of such channels are copper wires, optical fibres, wireless communication channels, storage media and computer buses. The data are represented as an electromagnetic signal, such as an electrical voltage, radiowave, microwave, or infrared signal.

While analog transmission is the transfer of a continuously varying analog signal, digital communications is the transfer of discrete messages. The messages are either represented by a sequence of pulses by means of a line code (baseband transmission), or by a limited set of continuously varying wave forms (passband transmission), using a digital modulation method. The passband modulation and corresponding demodulation (also known as detection) is carried out by modem equipment. According to the most common definition of digital signal, both baseband and passband signals representing bit-streams are considered as digital transmission, while an alternative definition only considers the baseband signal as digital, and passband transmission of digital data as a form of digital-to-analog conversion.

Data transmitted may be digital messages originating from a data source, for example a computer or a keyboard. It may also be an analog signal such as a phone call or a video signal, digitized into a bit-stream for example using pulse-code modulation (PCM) or more advanced source coding (analog-to-digital conversion and data compression) schemes. This source coding and decoding is carried out by codec equipment.

Wikipedia: http://en.wikipedia.org/wiki/Data_transmission

915 questions
-2
votes
2 answers

How do i transfer a final string from one activity to another in android?

I know about this and it works fine Intent i1 = new Intent(Login.this, Welcome.class); i1.putExtra("username","the name"); startActivity(i1); and this in the next layout: String username =…
-2
votes
1 answer

Node.js How to get POST query

I'm new to Node.js, and, i would like to know how to make data "transite" between html files for exemple : I get submit.html with 2 text inputs (name and age) and a submit button, with target sub.html, Let's say that an user submit name=Alex,…
Alexandre Daubricourt
  • 3,323
  • 1
  • 34
  • 33
-2
votes
1 answer

In LPC1768 change keil USBHID example for bulk transfer

I changed the keil USBHID example like http://www.keil.com/forum/21413/lpc1769-usbhid-example/ and I could send 64 bytes about each 1 ms my changes is a little different in demo.c and demo.h U8 InReport[64] U8 OutReport[64] demo.c void…
Amir Poursadegh
  • 101
  • 1
  • 9
-2
votes
1 answer

pass information to another webpage

How to pass the information from "myfirstpage.com" to "mysecondpage.com" ? I got my site on myfirstpage, but I'm changing the host and switching address to mysecondpage, I want an easy way to move over all users information they have stored in…
Dwadelfri
  • 454
  • 1
  • 4
  • 15
-2
votes
2 answers

Transferring data with $.ajax

I'm completely confused with the data transferred by a jQuery-AJAX (specifically I've been using $.post mostly) I've had a few attempts at transferring data to/from a PHP page and I'm left unsure what to use when, and how. I've seen it done in a…
frrlod
  • 6,475
  • 8
  • 31
  • 37
-3
votes
0 answers

How can I keylog what someone is typing on another tab, to my console? (Using Html and javascript?)

(I dont know what I need to type in order for it to work, but like I said I want to keylog what they type, and make it show up in my console from different pc's) I really need help on this, please remember its not for any malicious intent, just to…
HackerLOL
  • 1
  • 1
-3
votes
1 answer

Image comes broken from winsock

I'm building the communication module of an application on c++, I'm using windows socket to make the connection and the send() function to send files. When I try to send an image, it comes broken in the server client, but when I send a Text File, it…
-3
votes
2 answers

count() error prioblem while posting JSON data to an API using PHP

I have got some data in PHP and trying to post to an API which has the data in JSON format. But when I post the data I keep getting an error of count(): Parameter must be an array or an object that implements Countable at LINE 428 ,, I am working on…
Patweb
  • 133
  • 1
  • 10
-3
votes
2 answers

How to communicate between mobile with PC?

I am developing a program that is used to communicate between a mobile and a pc. I don't have any idea how to start?
Pramod
  • 1,411
  • 11
  • 35
  • 66
-3
votes
1 answer

android checking new data on webserver

I would like to build a little game app on android for 2 players. The players send strings and player 1 have to wait for the answer of player 2 and so on... So i will write and read the data to a web server. My question now how can i check in…
tobzilla90
  • 607
  • 5
  • 9
-3
votes
1 answer

which is the optimized method

to receive and transmit data from "web-server having php website" to "android application", which is the best optimized method. Mean may it is json communication or api communication or uri or rest?
-3
votes
1 answer

WIll Google fiber, reach the Northeast, USA,. Still using DSL and FIOS is not available. For Uploading large amount of data what should I do?

Google fiber,? Hoping that it will reach the Northeast, USA,. Still using DSL for internet in my area and FIOS is not available in my area, and town has no plan on future installations. I am trying to make use of a cloud server and currently …
-4
votes
1 answer

How to send data by intent without using finish() function?

I am making an android app which has 2 activities. In this app, activity number 1 will start activity number 2 and request data from activity number 2. I use intent to transfer data between them. As I know, activity 2 only send data after finish()…
-4
votes
1 answer

Server to server transfer using AJAX

This questions was asked during one of the interview. How to transfer data from one server to another using AJAX? Is it really possible?
sam
  • 5
  • 1
-5
votes
1 answer

Send Data to and from Phones

I am working on an app that would send little bits of information to and from another device running the same app, very similar to a messenger. Right now, while testing other aspects of the app, I'm just using text messages, but obviously that's a…
Cody Harness
  • 1,116
  • 3
  • 18
  • 37
1 2 3
60
61