Computer Science, asked by ammu2000harshu, 4 days ago

JSON is a syntax for storing and exchanging data. The rules are as follows: • Data is separated by commas, curly braces hold objec pairs) and square brackets hold arrays of values. • Values can be literals, objects or arrays. • Data starts at level 1. If a level 1 key has an object as keys in that object are at level 2. You have a huge collection of JSON objects and some of the have several levels. Also, the stringified JSON may not be ap Some objects are very deep (having a large maximum level). level of any JSON object .​

Answers

Answered by sourasghotekar123
0

Answer:

JSON or JavaScript Object Notation is a lightweight text-based open standard designed for human-readable data interchange. The JSON format was originally specified by Douglas Crockford, and is described in RFC 4627. The official Internet media type for JSON is application/json. The JSON filename extension is .json. This tutorial will help you understand JSON and its use within various programming languages such as PHP, PERL, Python, Ruby, Java, etc.

Let's quickly review JSON's fundamental syntax. The following are included in JSON syntax, which is essentially regarded as a subset of JavaScript syntax.

Name/value pairs are used to describe data.

Curly braces hold objects, and name/value pairs are separated by a colon (':') after each name (comma).

arrays are held within square brackets, and values are separated by (comma).

Here is a basic illustration:

{ \s "book": [

"id": "01," "language": "Java," "edition": "third," and "author": Herbert Schildt,"

"id": "07," "language": "C++," "edition": "second," and "author": E. Balagurusamy"

The following two data structures are supported by JSON:

a group of name/value pairings Numerous computer languages support this data structure.

Values in an ordered list — this can be an array, list, vector, sequence, etc.

See more:

https://brainly.in/question/18500821

#SPJ1

Answered by lakshmilakku
0

Answer:

Values in an ordered list

Explanation:

JSON or JavaScript Object Notation is a lightweight text-based open standard designed for human-readable data interchange. The JSON format was originally specified by Douglas Crockford, and is described in RFC 4627. The official Internet media type for JSON is application/json. The JSON filename extension is .json. This tutorial will help you understand JSON and its use within various programming languages such as PHP, PERL, Python, Ruby, Java, etc.

Let's quickly review JSON's fundamental syntax. The following are included in JSON syntax, which is essentially regarded as a subset of JavaScript syntax.

Name/value pairs are used to describe data.

Curly braces hold objects, and name/value pairs are separated by a colon (':') after each name (comma).

arrays are held within square brackets, and values are separated by (comma).

Here is a basic illustration:

{ \s "book": [

"id": "01," "language": "Java," "edition": "third," and "author": Herbert Schildt,"

"id": "07," "language": "C++," "edition": "second," and "author": E. Balagurusamy"

The following two data structures are supported by JSON:

a group of name/value pairings Numerous computer languages support this data structure.

Similar questions