Wednesday 16 August 2017

Microsoft Ordered To Let Third Parties Scrape LinkedIn Data


A judge has decided that Microsoft's LinkedIn organize must permit an outsider organization to rub information openly posted by LinkedIn clients. The Wall Street Journal reports that the decision is a piece of a claim brought by hiQ Labs, a startup that examines LinkedIn information to evaluate whether specialists are probably going to leave their occupations. LinkedIn already requested hiQ Labs to quit scratching its information, and the startup let go back with a claim.

A US District Judge has conceded hiQ Labs with a preparatory order that gives access to LinkedIn information. LinkedIn endeavored to contend that hiQ Labs disregarded the 1986 Computer Fraud and Abuse Act by scratching information. The judge raised worries around LinkedIn "unjustifiably utilizing its energy in the expert systems administration advertise for an anticompetitive reason," and contrasted LinkedIn's contention with enabling site proprietors to "square access by people or gatherings on the premise of race or sexual orientation separation."

LinkedIn says it's "disillusioned in the court's decision," in an announcement. "This case is not finished. We will keep on fighting to ensure our individuals' capacity to control the data they make accessible on LinkedIn."

LinkedIn's information is a key piece of the site, and one of the fundamental reasons why Microsoft obtained the interpersonal interaction site for $26 billion a year ago. LinkedIn has more than 400 million individuals and around 2 million paid supporters, making it a rich trove of information for Microsoft and different organizations to get to.

Thursday 27 April 2017

Microsoft wasn't hammered by surveillance requests in 2016


A few weeks ago, Microsoft released its transparency report revealing that it had received "between 1,000 and 1,499 foreign intelligence surveillance requests (FISA known as) from January to June 2016." There is only one problem, but it does not. 

Today, Microsoft updated the report to say that stat was a mistake, and the number of orders it received in 2016 is actually between 0 and 499, as it has been in previous years. Unfortunately, the company is not allowed to publish more accurate data, so we do not know if it has really changed or how. A spokesman told Reuters that the error was a "human error".

Microsoft:

*Editor's note on April 25, 2017: Our latest U.S. National Security Orders Report and accompanying blog post contained an error, coverage that from Gregorian calendar month. one – Gregorian calendar month thirty, 2016 Microsoft received one,000 – 1,499 legislative act orders seeking revealing of client content. the proper vary is zero – 499 legislative act orders seeking revealing of client content. All the opposite information disclosed within the National Security Orders Report was correct.

Microsoft corrected the error as shortly as we have a tendency to completed it absolutely was created to make sure the accuracy of our coverage. We've place extra safeguards in situ to make sure the numbers we have a tendency to report square measure correct. we have a tendency to apologize for the error."

Thursday 6 April 2017

70-480 Sample Question

Question: 21

You develop a webpage that allows a user to download a 3PEG image and convert it to a PNG file. You need to implement the code to download the contents of the JPEG image with no additional decoding. Which JavaScript function should you use?

A. readAsBinaryString()
B. readAsArrayBuffer()
C. readAsDataURL()
D. readAsText()

Answer: B

Download Complete 70-480 Question Answers Here:


Wednesday 8 February 2017

70-480 Sample Question

Question: 20

You are developing an HTML5 web application for an architectural company that displays architectural blueprints. The application must:
Display the blueprints at different zoom levels without loss of detail Print the blueprints without loss of detail Work from only one source file per blueprint. You need to ensure that blueprints display according to the requirements. Which HTML5 element should you use?

A. CANVAS
B. SAMP
C. SVG
D. AREA

Answer: C

Tuesday 24 January 2017

70-480 Sample Question

Question: 19

You develop an HTML5 application. You give users a numeric access code that can be used only one time. Users must enter the numeric access code in the login form of the application. The numeric characters must be hidden by a masking character. You need to implement the form element for users to enter the code. Which HTML element should you use?

A. <input type="password" required autocomplete="off">
B. <input type="input" autocomplete="off" required />
C. <input type="password" stytem" visiblity:hidden;" required />
D. <input type="button" value="password" required />

Answer: A

Sunday 1 January 2017

70-480 Sample Question

Question: 18

You need to test the value of the following variable in JavaScript.
var length = "75";
A block of code must execute if the length equals 75 regardless of the data type.
You need to use the statement that meets this requirement.
Which lines of code should you use? (Each correct answer presents a complete solution. Choose two.)

A. if (length = = = 75)
B. if (length = = 75)
C. if (length! = 75)
D. if (length = = "75")

Answer: B,D