अभी पंजीकरण करें

लॉग इन करें

पासवर्ड खो गया

आपका पासवर्ड खो गया है? कृपया अपना पूरा ईमेल दर्ज करें. आपको एक लिंक प्राप्त होगा और आप ईमेल के माध्यम से एक नया पासवर्ड बनाएंगे.

पोस्ट जोड़ें

पोस्ट जोड़ने के लिए आपको लॉगिन करना होगा .

प्रश्न जोड़ें

प्रश्न पूछने के लिए आपको लॉगिन करना होगा.

लॉग इन करें

अभी पंजीकरण करें

स्कॉलरसार्क.कॉम में आपका स्वागत है! आपका पंजीकरण आपको इस प्लेटफॉर्म की अधिक सुविधाओं का उपयोग करने की अनुमति देगा. आप सवाल पूछ सकते हैं, योगदान दें या उत्तर दें, अन्य उपयोगकर्ताओं के प्रोफ़ाइल देखें और बहुत कुछ. अभी पंजीकरण करें!

लिंक्डइन कौशल मूल्यांकन उत्तर और प्रश्न - JSON

प्रौद्योगिकी की निरंतर विकसित हो रही दुनिया में, नवीनतम कौशल से अपडेट रहना महत्वपूर्ण है. Our comprehensive guide on LinkedIn Skill Assessment Questions तथा जवाब, specifically focused on JSON, aims to help you ace your next skill test. Whether you’re a seasoned professional or a beginner in the field, this resource is designed to boost your knowledge and confidence.

Dive into our meticulously curated questions and answers, and empower yourself to stand out in the competitive professional landscape. एमआईटी आवेदन निबंध, every question is a stepping stone towards your success. Let’s embark on this journey of learning together!

  • schema
  • $schema
  • JsonSchema
  • JSONschema

संदर्भ

Q2. Which code is the closest JSON equivalent of the data shown?

[
    'red',
    'blue',
    'green'
]
["red", "green", "blue"]
  • बी
["red", "blue", "green"]
  • सी
{
  "color": "red",
  "color": "blue",
  "color": "green"
}
  • डी
{
  "red": "red",
  "blue": "blue"
}

Q3. Which JavaScript method converts a JavaScript value to Json?

  • JSON.parse()
  • JSON.stringify()
  • JSON.toString()
  • JSON.objectify()

संदर्भ

Q4. Which data type is NOT part of JSON standard?

  • string
  • संख्या
  • date
  • array

संदर्भ

Q5. Which term is commonly used to refer to converting data to JSON?

  • unpacking
  • serialization
  • deserialization
  • parsing

Q6. Which code uses the correct JSON syntax to encode the key/value pair shown?

accountNum: '000605802'

  • accountNum”: “000605802”
  • accountNum: “000605802”
  • accountNum”: 000605802
  • accountNum: 000605802

संदर्भ

क्यू 7. What character do you specify before a JSON control character when you want to use that control characters as a literal part of a string?

  • /
  • \
  • :
  • {

संदर्भ

क्यू 8. Which data type is part of the JSON standard?

  • Boolean
  • नक्शा
  • promise
  • समारोह

संदर्भ

प्रश्न 9. Which key name is used to specify properties that must be included for JSON to be valid?

  • महत्वपूर्ण
  • ln को = 1/x के रूप में लिखा जा सकता है जबकि लॉग को या तो = x या = xlog के रूप में लिखा जा सकता है
  • मुख्य
  • आवश्यक

प्र10. Which is the valid JSON equivalent of the data shown?

{
	photo: {
	width: 1600,
	height: 900,
	binaries: {
	url: 'https://www.example.com/images/34097349843',
	thumbnail: 'https://www.example.com/images/thumbs/34097349843'
	},
	animated: false,
	tags: [116, 943, 234, 38793],
	}
}
{
  "photo": {
    "width": 1600,
    "height": 900,
    "binaries": {
      "url": "https://www.example.com/images/34097349843",
      "thumbnail": "https://www.example.com/images/thumbs/34097349843"
    },
    "animated": "false",
    "tags": [116, 943, 234, 38793]
  }
}
  • बी
{
  "photo": {
    "width": 1600,
    "height": 900,
    "binaries": {
      "url": "https://www.example.com/images/34097349843",
      "thumbnail": "https://www.example.com/images/thumbs/34097349843"
    },
    "animated": false,
    "tags": [116, 943, 234, 38793]
  }
}
  • सी
{
  "photo": {
    "width": 1600,
    "height": 900,
    "binaries": {
      "url": "https://www.example.com/images/34097349843",
      "thumbnail": "https://www.example.com/images/thumbs/34097349843"
    },
    "animated": true,
    "tags": [116, 943, 234, 38793]
  }
}
  • डी
{
  "photo": {
    "width": "1600",
    "height": "900",
    "binaries": {
      "url": "https://www.example.com/images/34097349843",
      "thumbnail": "https://www.example.com/images/thumbs/34097349843"
    },
    "animated": "false",
    "tags": ["116", "943", "234", "38793"]
  }
}

संदर्भ

प्रश्न 11. How do you store several paragraphs of text as a string in JSON?

  • Escape all whitespaces except space characters.
  • Escape line breaks.
  • Escape paragraphs.
  • Remove all whitespaces

प्र12. What data type is represented by the value of the key/value pair shown?

loggedIn: true

  • string
  • Boolean
  • संख्या
  • वस्तु

संदर्भ

प्रश्न 13. If you need to store the loggedIn status of a user in JSON as a boolean, what is the correct syntax?

  • loggedIn”: (सच)
  • loggedIn: “सच”
  • loggedIn”: सच
  • loggedIn: {सच}

संदर्भ

प्र14. What does JSON with padding (JSON-P) use to make a request?

  • एक <origin> तत्व
  • a header request
  • NS <script> तत्व
  • the XMLHttpRequest object

प्रश्न 15. Which value is supported in the JSON specifications?

  • undefined
  • infinity
  • NaN
  • null

संदर्भ

प्र16. Which JavaScript method converts JSON to a JavaScript value?

  • JSON.parse()
  • JSON.stringify()
  • JSON.toString()
  • JSON.objectify()

संदर्भ

प्रश्न 17. Transferring JSON information from client to server and back again often includes HTTP requests. Match each method with the best choice describing its use.

1.Sends data to specific server to create or update information.
2.Sends data to specific server to create or update information without the risk of creating the resource more than once.
3.Previews what the GET request response might be without the body of the text.
4.Learns the communication channels used by the target source.
5.Requests information from a specific source.
6.Removes information.
  • 1.POST 2.DELETE 3.OPTIONS 4.HEADER 5.GET 6.PUT
  • 1.POST 2.PUT 3.HEADER 4.OPTIONS 5.GET 6.DELETE

प्रश्न 18. Which code uses valid JSON syntax for the textCentennial Olympics?

{
"host": "Atlanta",
"year": 1996
/_ Centennial Olympics _/
}
  • बी
{
  "host": "Atlanta",
  "year": 1996
  // Centennial Olympics
}
  • सी
{
  "host": "Atlanta",
  "year": 1996,
  "comment": "Centennial Olympics"
}
  • डी
{
  "host": "Atlanta",
  "year": 1996,
  \"Centennial Olympics\"
}
{
  "host": "Atlanta",
  "year": 1996,
  "comment": "\"Centennial Olympics"
}

संदर्भ

क्यू19. Can trailing commas be used in objects and arrays?

  • हां
  • only if there is more than one item
  • नहीं
  • only when arrays and objects contain more than 10 items

संदर्भ

प्र20. Which whitespace characters should be escaped within a string?

  • All whitespace is allowed.
  • double quotes, slashes new lines, and carriage returns
  • new lines and carriage returns only
  • double quotes only

संदर्भ

प्र21. Which is supported by YAML but not supported by JSON?

  • nested
  • टिप्पणियाँ
  • arrays
  • null values

संदर्भ

प्र22. Which is an invalid JSON value?

  • "'|=(_)(X 72(_)|\/||\*'"
  • "|=(_)(X 72(_)|\/||\*"
  • "|=(_)(X\" \"72(_)|\/||\*"
  • "\s(_)(X 72(_)|\/||\*"

प्र23. How do you encode a date in JSON?

  • Convert the date to UTC and enclose in quotes.
  • Encode the date as string using the ISO-8601 date format.
  • Wrap the date in double quotes.
  • Add adatekey to your object and include the date as string.

संदर्भ

प्र24. What’s wrong with this JavaScript?

JSON.parse({"first": "Sarah", "last": "Connor"}) ;

  • JSON should be wrapped with curly braces.
  • JSON.parse() is missing an argument.
  • The value supplied to JSON.parse() is not a string.
  • Nothing is wrong with it.

संदर्भ

प्रश्न25. What does this JavaScript code print?

printNullness(JSON.parse('{ "lemmings": [] }'));
printNullness(JSON.parse('{ "lemmings": null }'));
printNullness(JSON.parse('{ "lemmings": "null" }'));

function printNullness(testMe) {
  if (testMe.lemmings == null) console.log('null');
  else console.log('not null');
}
not null
null
not null
  • बी
null
null
not null
  • सी
not null
null
null
  • डी
null
null
null

प्र26. What tool might you use to validate your JSON?

  • JSONLint
  • ValidateJSON
  • JSONFiddle
  • TextEdit

संदर्भ

प्र27. What characters denote strings in JSON?

  • double quotes
  • बुद्धिमान (घुँघराले) quotes
  • single or double quotes
  • single quotes

संदर्भ

प्रश्न 28. Which code is a valid JSON equivalent of the key/value pair shown that also preserves the data type? constant: 6.022E23

  • "constant": "6.022E23"
  • "constant": "6\.022\E23"
  • "constant": 6.022E23
  • constant: "6.022E23"

संदर्भ Explanation: Scientific Notation is a valid JSON number. You can use e या E.

प्र29. Which element is added to the DOM to create a JSON-P request?

  • <object>
  • <script>
  • <json>
  • <meta>

क्यू30. Why do so many APIs use JSON?

  • Because it’s object-based.
  • Because it’s a simple and adaptable format for sharing data.
  • Because it’s based on JavaScript.
  • Because it is derived from SGML.

संदर्भ

प्रश्न31. You need to assemble a list of members, but your JSON is not parsing correctly. How do you change it?

{
  "avengers": [
    "iron man",
    "hulk",
    "thor",
    "black widow",
    "ant man",
    "spider man'
  ]
}
{
  "avengers": ["iron man", "hulk", "thor", "black widow", "ant man", "spider man"]
}
  • बी
{
  'avengers': [
  {'iron man',
  'hulk',
  'thor',
  'black widow',
  'ant man',
  'spider man'}
  ]
}
  • सी
{
  "avengers": ["iron man", "hulk", "thor", "black widow", "ant man", "spider man"]
}
  • डी
{
  "avengers": {[
    "iron man",
    "hulk",
    "thor",
    "black widow",
    "ant man",
    "spider man"
  ]}
}

प्र32. When building dynamic web applications using AJAX, developers originally used the _ data format, which has since been replaced by JSON.

  • एक्सएमएल
  • GRAPHQL
  • REST
  • SOAP

प्रश्न 33. How is a true boolean value represented in JSON?

  • सत्य
  • “सच”
  • 1
  • सच

संदर्भ

प्रश्न34. Which array is valid JSON?

  • [‘tatooine’, ‘hoth’, ‘dagobah’]
  • [tatooine, hoth, dagobah]
  • [“tatooine”, “hoth”, “dagobah”,]
  • [“tatooine”, “hoth”, “dagobah”]

संदर्भ

क्यू35. What data type is encoded in the outermost component of the JSON shown?

[
  {
    "year": 2024
  },
  {
    "location": "unknown"
  }
]
  • वस्तु
  • array
  • संख्या
  • string

संदर्भ

प्र36. Which is ignored by JSON but treated as significant by YAML?

  • trailing commas
  • trailing decimals
  • whitespace
  • leading zeroes

संदर्भ

प्रश्न37. When you need to set the value of a key in JSON to be blank, what is the correct syntax for the empty value?

  • असत्य
  • 0
  • “”
  • null

संदर्भ

प्रश्न 38. How do you assign a number value in JSON?

  • Escape the number with a backslash.
  • Enclose the number in double quotes.
  • Enclose the number in single quotes.
  • Leave the number as is.

प्र39. Which code uses the correct JSON syntax for encoding a key/value pair with a null value?

  • lastVisit”: null
  • lastVisit: null
  • lastVisit”: 0
  • lastVisit”: undefined

संदर्भ

क्यू40. Which reference to the Unicode character U+1F602 complies with the JSON standard?

  • 128514
  • d83dde02
  • \uD83D\uDE02
  • &#128514;

प्र41. Which code uses the correct JSON syntax for a key/Value pair containing a string?

  • largest”: “blue whale
  • largest: ‘blue whale
  • ‘largest’: ‘blue whale
  • largest: “blue whale

संदर्भ

प्र42. Which key name is used to specify data type in a JSON schema?

  • जानकारी
  • schemadata
  • schematype
  • प्रकार

संदर्भ

प्रश्न 43. Which code is a valid JSON equivalent of the key/value pair shown that also preserves the original value?

  • UPC”: \043875
  • UPC: “043875”
  • UPC”: 043875
  • UPC: ‘043875’

संदर्भ

प्रश्न 44. Which data format is a JSON schema written in?

  • markdown
  • YAML
  • एक्सएमएल
  • JSON

क्यू45. Which code is valid JSON equivalent of the key/value pair shown that also preserves the data type?

  • variance”: -0.0823
  • variance: “-0.0823”
  • variance”: “-0.0823”
  • variance: -0.0823

संदर्भ

प्र46. With what character should key/value pairs be separated?

  • colon
  • स्थान
  • semicolon
  • comma

संदर्भ

प्रश्न 47. What character separates keys from values?

  • :
  • ->
  • ::
  • .

संदर्भ

प्रश्न 48. If a string contains line breaks, तुम्हे क्या करना चाहिए?

  • Wrap line breaks in single quotation marks
  • Make no changes, because whitespace is allowed
  • Replace any line breaks with \r
  • Replace any line breaks with \n

प्र49. Which number types are available in javascript but not supported in json?

  • Fractional and Transcendental
  • Infinity or Rational
  • Rational and Irrational
  • Infinity or NaN

क्यू50. How should a date value be stored in JSON?

  • As a string with quotes
  • As a string without quotes
  • As a string in ISO 8583 प्रारूप
  • As a string in ISO 8601 प्रारूप

संदर्भ

प्रश्न51. Is the JSON code shown here valid?

JSON object with key "Vehicles" containing an array of emojis

  • नहीं, emojis must be escaped with a backslash.
  • नहीं, JSON strings are not allowed to use emojis.
  • नहीं, emojis should never be enclosed with double quotes.
  • हां, emojis are valid characters because JSON strings are unicode.

प्रश्न52. What data structure do you use to encode ordered information?

  • सूची
  • array
  • struct
  • indexed hash

संदर्भ

प्रश्न53. What are valid values in JSON?

  • arrays, तार, नंबर, true/false
  • hashes, arrays, तार, नंबर, बूलियन्स, null
  • arrays, objects, lists, तार, नंबर, बूलियन्स
  • objects, arrays, तार, नंबर, बूलियन्स, null

प्रश्न54. Which key format is valid JSON?

  • चाबी: “मूल्य”
  • “चाबी”: “मूल्य”
  • चाबी, “मूल्य”
  • ‘key’: ‘value

संदर्भ

प्रश्न55. What data type is encoded in the outermost component of the JSON shown?

{
  "result": [
    {
      "year": 2024
    },
    {
      "location": "unknown"
    }
  ]
}
  • संख्या
  • array
  • string
  • वस्तु

प्रश्न56. What’s wrong with this JSON object?

{
  "series": "Star Trek",
  "episodes": "The Trouble with Tribbles",
  "season": 3
}
  • Key/value pairs should be separated by semicolons.
  • Keys should be enclosed with double quotes.
  • Key/value pairs should always have a trailing comma.
  • Keys and values should be enclosed with single quotes.

प्रश्न57. How should comments be formatted in JSON?

  • Wrap the comments in single quotes and place it at the bottom of the file.
  • Wrap the comments in double parentheses.
  • Escape comments by placing two slashes at the start of the comment.
  • JSON does not support comments.

प्र 58. How would you make the following string valid in JSON?

"name": 'bb-8'

  • नाम: “bb-8
  • “नाम”: ‘bb-8
  • “नाम”: “bb-8
  • “नाम”: bb-8

प्रश्न59. How are values separated in JSON?

  • with brackets
  • with colons
  • with commas
  • with parentheses

क्यू 60. With which programming language is JSON best used?

  • any language, as JSON is language agnostic.
  • माणिक
  • जावास्क्रिप्ट
  • अजगर

प्रश्न 61. What values can arrays contain?

  • only numbers
  • any valid JSON value
  • only strings and numbers
  • only strings

प्रश्न 62. What technique can be used to represent complex objects with JSON?

  • reserialization
  • nesting
  • memorization
  • minimization

प्रश्न 63. What characters are used to enclose an array?

  • []
  • {}
  • ""
  • ()

प्रश्न 64. What is the official MIME type for JSON?

  • text/json
  • text/javascript
  • application/json
  • data/json

प्रश्न 65. Which character cannot be part of string within JSON without additional formatting?

  • /
  • :

प्रश्न 66. What is the purpose of JSON?

  • to provide a simple way to serialize and deserialize data between different sources
  • to provide a way to store data for machine learning
  • to provide an archival solution for data warehousing
  • to provide a way for JavaScript to run other languages

प्रश्न 67. Can you assume the order of keys in an object?

  • नहीं, but you can sort the keys with JSON.sort().
  • हां, object keys are always ordered alphabetically.
  • हां, but only when the object is first parsed.
  • नहीं, you can never assume object keys will be in order.

प्रश्न 68. With what character should object keys be enclosed?

  • *
  • #
  • ^
  • "

प्रश्न 69. What is the maximum number of key/value pairs that JSON supports?

  • 10,000
  • 1000
  • There is no defined limit.
  • 1 दस लाख

क्यू 70. What is the recommended term used to refer to multiple resources?

  • a swarm
  • multiple resources
  • संग्रह
  • a group

प्र71. Does JSON support signed numbers?

  • हां, but only if they are enclosed in quotes
  • only with integers
  • हां
  • नहीं

प्र72. What two nonnumerical characters can numbers contain?

  • dash and dot
  • dash and comma
  • comma and exclamation point
  • dot and comma

प्रश्न 73. What JavaScript method is used to load JSON data?

  • JSON.ingest()
  • JSON.convert()
  • JSON.read()
  • JSON.parse()

प्रश्न 74. How are the values in an array separated?

  • with right arrows
  • with colons
  • with semicolons
  • with commas

प्रश्न 75. What is the minimum number of values in an array?

  • zero
  • एक
  • दो
  • तीन

प्रश्न 76. In JSON, a set of brackets ([]) is used to denote _, whereas curly braces ({}) denote _.

  • arrays; objects
  • objects; कार्यों
  • arrays; कार्यों
  • key/value pairs; arrays

प्र77. How does JSON represent truth, falsity and nullness?

  • सच, असत्य, null
  • सच, असत्य
  • सत्य, असत्य, NULL

प्रश्न 78. If an object key contains spaces, how can you access its value in JavaScript?

  • Remove spaces from the key before accessing the value.
  • Use dot notation to access the value.
  • Use object key index to access the value.
  • Use bracket notation to access the value.

प्र79. When parsing JSON, “cachingis a method used to _.

  • remove duplicate data from a server
  • temporarily store data for faster access
  • store excess information in chunks to be reviewed later
  • clog up a web browser with useless information

क्यू 80. What is the only valid whitespace character within a string that does not require an escape character?

  • line break
  • स्थान
  • टैब
  • वापस करना

क्यू81. What technique can you use to safely encode very large numbers?

  • Store the number as a string
  • Convert the number into an exponent.
  • Round the number to the nearest 10-digit number.
  • Split the number into smaller parts.

प्रश्न 82. Which code is a valid JSON equivalent of the key/value pair shown that also preserves the data type?

variance: -0.0823

  • variance: “-0.0823”
  • variance: -0.0823
  • variance”: “-0.0823”
  • variance”: “-0.0823”

संदर्भ

क्यू 83. Based on the JSON object shown, which JavaScript code would you use to find out what is in this vehicle’s glove box while assigning the glove box contents to a new variable?

myVehicleContents = {
  van: {
    inside: {
      'glove box': 'maps',
      'passenger seat': 'crumbs',
    },
    exterior: {
      trunk: 'jack',
    },
  },
};
myVehicleContents.van.inside['glove box'] = gloveBoxContents;
  • बी
var gloveBoxContents = myVehicleContents.van.inside['glove box'];
gloveBoxContents;
  • सी
var gloveBoxContents = myVehicleContents.van.glove box.contents;
gloveBoxContents;
  • डी
myVehicleContents.van.inside['inside'] = gloveBoxContents;

स्रोत

प्रश्न 84. What characters are used to define an object?

  • ||
  • {}
  • ()
  • []

क्यू85. The JSON structure features nested objects and arrays. Sometimes the data containing these features exists in relational databases. How is the relational structure different that JSON?

  • It has a flat architecture.
  • It has a rewritable structure.
  • It has an array-only structure.
  • It has a table structure.

क्यू 86. What is supported by YAML but not supported by JSON?

  • arrays
  • null values
  • टिप्पणियाँ
  • nested

YAML supports # comments but not JSON

क्यू87. Which is an invalid JSON value? (same as previous question, but different possible answers)

  • "'|=(_)(X 72(_)|\/||*'"
  • "\s(_)(X 72(_)|\/||*"
  • "|=(_)(X\" \"72(_)|\/||*"
  • "|=(_)(X 72(_)|\/||*"

क्यू88. How can you change this array to make it valid?

{"rey",'leia',"ashoka",}

  • ['rey', 'leia', "ashoka",}
  • ['rey', 'leia', 'ashoka',}
  • ["rey", "leia", "ashoka"]
  • {"rey", "leia", "ashoka"}

क्यू 89. If a non-zero number starts with a zero, what character should immediately follow the zero?

  • zero or more digits
  • one or more digits
  • a period
  • a dollar sign

Q90. Who would you modify the array below to store additional attributes for each student?

{
  "students": ["Tess", "Erin", "June"]
}
  • Convert each student to an object, then add key/value paris to each student object as needed.
  • Add additional name/value pairs, separated by commas, बाद “छात्रों”.
  • Convert each student into an array and add extra elements to the array.
  • Wrap the existing “छात्रों” key with curly braces.

प्रश्न91. Which is नहीं a valid JSON number

  • 99999999999999999999
  • "42"
  • -32
  • 1111.00.110011

प्रश्न92. What is the maximum string length in JSON?

  • 512 पात्र
  • There is no defined limit.
  • 2,056 पात्र
  • 1,024 पात्र

प्रश्न93. What method is used to export a JavaScript object into JSON notation?

  • JSON.convert()
  • JSON.stringify()
  • JSON.export()
  • JSON.string()

प्रश्न94. How would you update this JSON to indicate that Jane is now available for part-time work ?

{
  "name": "Jane",
  "job": "developer",
  "skills": ["ruby", "rails", "javascript"],
  "available": false
}
{
  "name": "Jane",
  "job": "developer",
  "skills": ["ruby", "rails", "javascript"],
  "available": true,
  "seeking": "part-time"
}
  • बी
{
  "name": "Jane",
  "job": "developer",
  "skills": ["ruby", "rails", "javascript"],
  "available": "true",
  "seeking": "part-time"
}
  • सी
{
  "name": "Jane",
  "job": "developer",
  "skills": ["ruby", "rails", "javascript"],
  "available": false,
  "seeking": "part-time"
}
  • डी
{
  "name": "Jane",
  "job": "developer",
  "skills": ["ruby", "rails", "javascript"],
  "available": "true",
  "seeking": "part-time"
}

Hint: true needs to be a boolean and part-time a string so in double quotes.

प्रश्न95. When you need to set the value of a key in JSON to be blank, what is the correct syntax for the empty value?

  • “”
  • 0
  • असत्य
  • null

Explanation: The other options won’t work as well, as demonstrated by this StackOverflow post.

प्रश्न96. What is true about paginated reports? (Select all that apply.)

ए. They are formatted to fit well on a page.

बी. They shrink the report data to fit on a page.

सी. They truncate the report data to fit on a single page.

डी. They are both printable and shareable.

  • ए,डी
  • B OR C
  • ए,बी,डी
  • ए,सी,डी

Explanation: The true statements about paginated reports are: ए. They are formatted to fit well on a page. डी. They are both printable and shareable. So the correct options are A and D.

प्रश्न97. As a Scrum Master you have noticed a pattern that the most interesting stories on the sprint backlog get started right away, and the least interesting stories languish or don’t get done. तुम्हे क्या करना चाहिए?

  • During story point estimation, increase the points assigned to the least interesting stories so the team can boost their velocity.
  • Share your observation with the team and invite them to own and solve the problem.
  • Ask the team to use a lottery system to assign each story.
  • Ask the Tech Lead to assign every story to a developer so they all get done efficiently and with accountability.

Explanation: Encourage open communication within the team and involve them in problem-solving to find a solution that works best for their specific context and helps address the issue of disinterest in certain stories.

प्रश्न98. Which is the valid JSON equivalent of the data shown?

json{photo: {width: 1600, height: 900, binaries: { url: 'https://www.example.com/images/34097349843', thumbnail: 'https://www.example.com/images/thumbs/34097349843' }, animated: false, tags: [116, 943, 234, 38793], }}

  • {"photo": {"width": 1600, "height": 900, "binaries": { "url": "https://www.example.com/images/34097349843", "thumbnail": "https://www.example.com/images/thumbs/34097349843"}, "animated": "false", "tags": [116, 943, 234, 38793]}}

  • {"photo": {"width": 1600, "height": 900, "binaries": { "url": "https://www.example.com/images/34097349843", "thumbnail": "https://www.example.com/images/thumbs/34097349843"}, "animated": false, "tags": [116, 943, 234, 38793]}}

  • {"photo": {"width": 1600, "height": 900, "binaries": {"url": "https://www.example.com/images/34097349843", "thumbnail": "https://www.example.com/images/thumbs/34097349843"}, "animated": true, "tags": [116, 943, 234, 38793]}}

  • {"photo": {"width": "1600", "height": "900", "binaries": { "url": "https://www.example.com/images/34097349843", "thumbnail": "https://www.example.com/images/thumbs/34097349843"}, "animated": "false", "tags": ["116", "943", "234", "38793"]}}

प्रश्न99. When you need to set the value of a key in JSON to be blank, what is the correct syntax for the empty value?

  • असत्य
  • 0
  • “”
  • null

Q100. What does JSON with padding (JSON-P) use to make a request?

  • एक <origin> तत्व
  • a header request
  • NS <script> तत्व
  • the XMLHttpRequest object

Q101. Which whitespace characters should be escaped within a string?

  • All whitespace is allowed.
  • double quotes, slashes new lines, and carriage returns
  • new lines and carriage returns only
  • double quotes only

Q102. What’s wrong with this JavaScript?

JSON.parse({"first": "Sarah", "last": "Connor"}) ;

  • JSON should be wrapped with curly braces.
  • JSON.parse() is missing an argument.
  • The value supplied to JSON.parse() is not a string.
  • Nothing is wrong with it.

Q103. You need to assemble a list of members, but your JSON is not parsing correctly. How do you change it?

{"avengers": ["iron man", "hulk", "thor", "black widow", "ant man", "spider man" ]}

  • {"avengers": ["iron man", "hulk", "thor", "black widow", "ant man", "spider man"]}

  • {'avengers': {'iron man', 'hulk', 'thor', 'black widow', 'ant man', 'spider man'}]}

  • {"avengers": ["iron man", "hulk", "thor", "black widow", "ant man", "spider man"]}

  • {"avengers": {["iron man", "hulk", "thor", "black widow", "ant man", "spider man" ]}}

क्यू104. Which reference to the Unicode character U+1F602 complies with the JSON standard?

  • 128514
  • d83dde02
  • \uD83D\uDE02
  • &#128514;

क्यू105. How should comments be formatted in JSON?

  • Wrap the comments in single quotes and place it at the bottom of the file.
  • Wrap the comments in double parentheses.
  • Escape comments by placing two slashes at the start of the comment.
  • JSON does not support comments.

Q106. What is the purpose of JSON-P (JSON with padding) in web development, and how is it typically used?

  • To validate JSON data before parsing it in JavaScript.
  • To provide additional padding for JSON objects to improve readability.
  • To overcome the same-origin policy limitation when making cross-domain AJAX requests.
  • To compress JSON data for faster transmission over the network.

Explanation:- JSON-P, or JSON with padding, serves the purpose of overcoming the same-origin policy limitation in web development. The same-origin policy restricts web pages from making AJAX requests to a different domain for security reasons. JSON-P works by wrapping JSON data in a JavaScript function call, allowing data to be retrieved from an external domain as if it were a script. This technique is commonly used for securely fetching data from external APIs, making it a valuable tool for cross-domain data exchange in web applications.

Q107. In a JSON document, how can you represent a key that contains special characters, such as spaces or hyphens, to ensure proper parsing and access in JavaScript?

  • Wrap the key in single quotes.
  • Enclose the key in square brackets.
  • backslashes before special characters.
  • Enclose the key in double quotes.

Explanation:- When you have a key in a JSON document that contains special characters, खाली स्थान, or hyphens, it is essential to enclose the key in double quotes. JSON requires keys to be represented within double quotes to ensure proper parsing and access in JavaScript. This ensures that JavaScript can correctly interpret keys with special characters or spaces and access their associated values.

Q108. Which is ignored by JSON but treated as significant by YAML?

  • trailing commas
  • trailing decimals
  • whitespace
  • leading zeroes

Q109. Which code uses valid JSON syntax for the textCentennial Olympics?

{
"host": "Atlanta",
"year": 1996
/_ Centennial Olympics _/
}
  • बी
{
  "host": "Atlanta",
  "year": 1996
  // Centennial Olympics
}
  • सी
{
  "host": "Atlanta",
  "year": 1996,
  "comment": "Centennial Olympics"
}
  • डी
{
  "host": "Atlanta",
  "year": 1996,
  \"Centennial Olympics\"
}
{
  "host": "Atlanta",
  "year": 1996,
  "comment": "\"Centennial Olympics"
}

Q110. What data type is encoded in the outermost component of the JSON shown?

[
  {
    "year": 2024
  },
  {
    "location": "unknown"
  }
]
  • वस्तु
  • array
  • संख्या
  • string

प्रश्न111. Which is an invalid JSON value?

  • "'|=(_)(X 72(_)|\/||\*'"
  • "|=(_)(X 72(_)|\/||\*"
  • "|=(_)(X\" \"72(_)|\/||\*"
  • "\s(_)(X 72(_)|\/||\*"

Q112. What are the valid number types in JSON?

  • Whole Numbers and Decimals
  • Real Numbers and Fractions
  • Integer, Floating Points, and Exponents (Scientific Notation, जैसे, 3e4)
  • Prime Numbers and Complex Numbers

प्रश्न114. What is the purpose of JSON Web Tokens (JWT)?

  • To validate JSON data
  • To store sensitive information
  • To represent information between parties
  • To create JSON schemas

प्रश्न 115. What is JSON-RPC used for?

  • Remote procedure calls encoded in JSON
  • Rendering graphics in web applications
  • JavaScript execution control
  • Data validation in JSON

प्रश्न116. Which of the following is a key difference between JSON and XML?

  • JSON uses tags
  • XML is more lightweight
  • JSON is easier for humans to read
  • XML is used for programming, while JSON is for data exchange

प्रश्न117. Which HTTP header is commonly used to prevent cross-site scripting (XSS) attacks when working with JSON?

  • Content-Encoding
  • Access-Control-Allow-Origin
  • JSON-Security
  • XSS-Prevention

प्रश्न118. What does the JSON Merge Patch format allow you to do?

  • Combine multiple JSON documents into one
  • Partially update a JSON document
  • Compress JSON data for storage
  • Convert JSON to XML

प्रश्न119. Which method is used to parse a JSON string and return a JavaScript object in modern web browsers?

  • parseJSON()
  • JSON.parse()
  • evalJSON()
  • loadJSON()

Q120. What is the primary purpose of JSON-LD (JSON Linked Data)?

  • To enable two-way data binding in JavaScript
  • To represent data in a more human-readable format
  • To express structured data that is linked to other data
  • To create dynamic web pages with JSON

लेखक

  • हेलेन बस्सी

    नमस्ते, I'm Helena, एक ब्लॉग लेखक जिसे शिक्षा क्षेत्र में ज्ञानवर्धक सामग्री पोस्ट करने का शौक है. मेरा मानना ​​है कि शिक्षा व्यक्तिगत और सामाजिक विकास की कुंजी है, और मैं अपने ज्ञान और अनुभव को सभी उम्र और पृष्ठभूमि के शिक्षार्थियों के साथ साझा करना चाहता हूं. मेरे ब्लॉग पर, आपको सीखने की रणनीतियों जैसे विषयों पर लेख मिलेंगे, ऑनलाइन शिक्षा, व्यवसायिक नीति, और अधिक. मैं अपने पाठकों की प्रतिक्रिया और सुझावों का भी स्वागत करता हूं, इसलिए बेझिझक एक टिप्पणी छोड़ें या किसी भी समय मुझसे संपर्क करें. मुझे आशा है कि आपको मेरा ब्लॉग पढ़ने में आनंद आएगा और यह उपयोगी और प्रेरणादायक लगेगा.

    सभी पोस्ट देखें

के बारे में हेलेन बस्सी

नमस्ते, I'm Helena, एक ब्लॉग लेखक जिसे शिक्षा क्षेत्र में ज्ञानवर्धक सामग्री पोस्ट करने का शौक है. मेरा मानना ​​है कि शिक्षा व्यक्तिगत और सामाजिक विकास की कुंजी है, और मैं अपने ज्ञान और अनुभव को सभी उम्र और पृष्ठभूमि के शिक्षार्थियों के साथ साझा करना चाहता हूं. मेरे ब्लॉग पर, आपको सीखने की रणनीतियों जैसे विषयों पर लेख मिलेंगे, ऑनलाइन शिक्षा, व्यवसायिक नीति, और अधिक. मैं अपने पाठकों की प्रतिक्रिया और सुझावों का भी स्वागत करता हूं, इसलिए बेझिझक एक टिप्पणी छोड़ें या किसी भी समय मुझसे संपर्क करें. मुझे आशा है कि आपको मेरा ब्लॉग पढ़ने में आनंद आएगा और यह उपयोगी और प्रेरणादायक लगेगा.

उत्तर छोड़ दें