Skip to main content

Posts

Recent posts

Javarevisited: Difference between Bitwsie and Logical Operator in...

Those are the bitwise AND and bitwise OR operators. int a = 6 ; // 110 int b = 4 ; // 100 // Bitwise AND int c = a & b ; // 110 // & 100 // ----- // 100 // Bitwise OR int d = a | b ; // 110 // | 100 // ----- // 110 System . out . println ( c ); // 4 System . out . println ( d ); // 6 The Java Language Spec(15..22.1,15.22.2) regarding the different behaviors of the operator based on its inputs. Indeed when both inputs are boolean, the operators are considered the Boolean Logical Operators and behave similarly to the Conditional-And ( && ) and Conditional-Or ( || ) operators except for the fact that they don't short-circuit so while the following is safe: if (( a != null ) && ( a . something == 3 )){ } This is not: if (( a != null ) & ( a . something == 3 )){ }

Selenium Training online

Online Selenium Training in Hyderabad The online Selenium Training mode is presently in the hit list of all software testers. Since its inception, Selenium has been known for several of its good features and even today it is no less than a hot cup cake. In this tutorial, you are promised to get a basic understanding of Selenium and whether or not you should go for selenium training to promote your career. Selenium training in Hyderabad Selenium is for Software Testing and this is better way to understand. If the learner has basic knowledge on java or any other object oriented programming language. Slight understanding of testing concepts can be the feather in the cap. Selenium training institutes in Hyderabad Introduction Selenium is an open source portable and automated software testing tool used for testing of web applications. Selenium can operate across different operating systems and different browsers. It is not a single tool but a set of various tools that aid tes