The answers will be based on what ScrumMaster tells. What kind of software development projects can be executed by Scrum Project Management Framework? ScrumMaster Tells: All Kinds of software projects. However, the opinion might vary. What does NOT belong to cornerstones of the agile manifesto? Processes over people What is defined by the Scrum …
Category: Root
Sep 06
Balsamic/বালসামিক – ওয়েব সাইট মকআপ টুল এর উপর ধারণা । Balsamic Wire Framing Tool Overview
Balsamic/বালসামিক – ওয়েব সাইট মকআপ টুল এর উপর ধারণা । Balsamic Wire Framing Tool Overview
Aug 30
মুডল এর Backend বৈশিষ্ট্য । Moodle backend features and options for site administration
Moodle backend features and options for site administration
Aug 29
JavaScript Code
var browser=navigator.appName; var b_version=navigator.appVersion; <a href=”http://www.justetc.net” target=”_blank”> <img border=”0″ alt=”hello” src=”b_pink.gif” id=”b1″ width=”26″ height=”26″ onmouseover=”mouseOver()” onmouseout=”mouseOut()” /> Place the following code under script tag/in a javascript file function mouseOver() { document.getElementById(“b1″).src =”b_blue.gif”; } function mouseOut() { document.getElementById(“b1″).src =”b_pink.gif”; } <map name=”planetmap”> <area shape =”rect” coords =”0,0,82,126″ onMouseOver=”writeText(‘You are over the target …
Aug 29
JavaScript Form Validation: Validate a Form Collecting Credit Card Information
function validateCollectPaymentInformationForm() { var method, name, number, expiry, errMsg errMsg = “”; method = document.getElementById(‘paymentMethod’); name = document.getElementById(‘txtCCName’); number = document.getElementById(‘txtCCNumber’); if (method.value == “” || method.value == “0” || method.value == null){ …
Aug 29
Print three-dimensional valarray line-by-line
/* The following code example is taken from the book * “The C++ Standard Library – A Tutorial and Reference” * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josuttis 1999. * Permission to copy, use, modify, sell and distribute this software * is granted provided this copyright notice appears in …
Aug 29
C++ Template Example
/* The following code example is taken from the book * “The C++ Standard Library – A Tutorial and Reference” * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josuttis 1999. * Permission to copy, use, modify, sell and distribute this software * is granted provided this copyright notice appears in …
Aug 29
Javascript : Miscellaneous Code
var browser=navigator.appName; var b_version=navigator.appVersion; <a href=”http://www.justetc.net” target=”_blank”> <img border=”0″ alt=”hello” src=”b_pink.gif” id=”b1″ width=”26″ height=”26″ onmouseover=”mouseOver()” onmouseout=”mouseOut()” /> Place the following code under script tag/in a javascript file function mouseOver() { document.getElementById(“b1″).src =”b_blue.gif”; } function mouseOut() { document.getElementById(“b1″).src =”b_pink.gif”; } <map name=”planetmap”> <area shape =”rect” coords =”0,0,82,126″ onMouseOver=”writeText(‘You are over the target …
Aug 29
Example demonstrating the use of packages
&&&&&&&&&&&&&&&&&&& Example demonstrating the use of packages. * Class1.java defined in package1. * Class2.java defined in package2. * Class3.java defined in package2.package3. * Class1.java defined in package4. * PackageExample.java Driver for package example &&&&&&&&&&&&&&&&&&&&& ~~~~~~~~~~~~~~~~~~~~~ Class1.java defined in package1. ~~~~~~~~~~~~~~~~~~~~~ package package1; ***************** public class Class1 { public …
Aug 29
Code examples for interfaces
**************************** Code examples for interfaces: * Class1.java implements Interface1.java * Abstract Class2.java implements Interface1.java and Interface2.java * Class3.java extends abstract class Class2.java * Interface3.java extends Interface1.java and Interface2.java *************************** ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Class1.java ~~~~~~~~~~~~~~~~~~~~~~~~~~~ // This class is not abstract, so it must provide // implementations of method1 and method2. public class Class1 …
