Featured Post
Microsoft Wants IE6 to be Dead all over the Globe..
- Get link
- X
- Other Apps
By
Rishoo Mittal
-
The Microsoft has come up with the website to persuade people to stop using internet explorer 6(IE6). The website shows the total IE6 usage over the globe. The website follows a link for people to join the cause and spread awareness to all their friends and known ones to stop using IE6 and upgrade to latest internet explorer 9. IE6 was born 10 years ago and the user now needs to shift to new IE such that it saves the hours of works for web developers to make the websites IE6 compatible. As the browsers have become faster in rendering the pages from web and providing secure web access therefore, web user should shift to the latest IE browser. According to the website the most usage of IE6 is in China.
Related Posts
EAV versus Row modeling
By
Rishoo Mittal
-
Following are main features/downsides EAV has over classic row modeling technique. A row-modeled table is homogeneous. I t will always carry same type of data in contrast to EAV modeled table where this cannot be an issue. The data type of the value column/s in a row-modeled table is pre-determined by the nature of the facts it records. In contrast, in an EAV table, the conceptual data type of a value in a particular row depends on the attribute in that row. A Row modeling technique data increase only in one direction i.e. from Upside-down whereas in EAV data model data increase in both directions i.e. from upside down as well as from left-right. Other Related Links: EAV(Entity-Attribute Value) Model EAV versus Row modeling Downsides of EAV data model over class row model Opting classic row modeling or EAV data modeling?
Difference in Verification and Validation of requirement? : Requirement Traceability Matrix?
By
Rishoo Mittal
-
The difference in Verification and Validation of requirements? Verification of requirement – a requirement meets the quality standard, fits the purpose, it is clear, consistent, complete, testable, unambiguous, understandable to stakeholders. Validation of requirement – requirement is aligned to the business need, goal, outcome, if it supports the delivery of needed value. Requirement Traceability Matrix? The technique used to trace the requirements. It ensures that all business requirements are covered. It helps in backward and forward traceability. Helps in faster impact analysis and reliable assessment for ensuring business requirement coverage. Requirement Traceability Matrix
Infosys 3.0...Business Solutions...
By
Rishoo Mittal
-
The IT major Infosys Technologies is looking forward to move on by transforming its business and innovation capabilities into a whole new phase, the company names it as Infosys 3.0. The IT firm is looking forward to change its business capabilities from Technology Solutions to Business solutions hence, enhancing the capability of the company in major global trends such as: digital consumer (digital products), new commerce (Related to small mobile transactions), healthcare economy, sustainable tomorrow(Environment), pervasive computing (all devices becoming computing devices) and much more. The company which is into technology solutions for three decades now has taken step further to compete with global peers such as IBM, Accenture which are high above it in terms of above mentioned technologies. Presently the company Infosys 2.0 works in developing end to end services capabilities, system integration capabilities, and some consulting and innovation enterprise. But, now the company
Ex-HP CEO Hurd Pays $14 Million Bounty as Oracle Pledge Fee
By
Rishoo Mittal
-
Valleywag reports that ousted HP CEO Mark Hurd is paying dearly to roll with Oracle, giving up millions of dollars to settle the HP lawsuit that threatened to prevent him from working at his new job. Hurd will forfeit about 345,000 restricted HP shares that he was given as part of his HP exit package, which had a market value of $13.6 million. In addition to announcing the truce against the backdrop of Oracle's OpenWorld conference, HP and Oracle also reaffirmed their vows to each other.
The bug in the name of the C++ language.
By
Rishoo Mittal
-
From the internet, a popular quote goes like this: "Of course, while it is true that the ++ operator gives the C++ language its name, it also led to the first joke about the language. C++ haters point out that even the name of the language contains a bug: 'After all, it should really be called ... ++C, because we only want to use a language after it has been improved.' " We will now see why this joke is so absolutely hilarious. int main() { int x = 40; int y = ++x + 1; std::cout << x << '\n' << y; } Output: x = 41, y = 42. The pre-increment operator first increments the value of x (the ++) and then stores it in the variable. Hence, when the code is executed, x becomes 41 AFTER being assigned to y . The post-increment works the other way, the value is first stored in the lvalue before being assigned to the rvalue of the variable being incremented. int main() { int x = 40; int y = x++ + 1; std::cout <&l
Comments
Post a Comment
Let's discuss and learn more