Ask Questions & Get Answers at ibibo sawaal
     Powered by Bixee Crawl
Results 1 - 15 of about 3072 sawaal for "false"
Sort by: Recency | Relevancy

What are Boolean operators and how are they used?

they do. The main boolean operators are AND, OR, NOT, and XOR exclusive or. So: true AND true makes true true AND false makes false false AND true makes false false AND false makes false true OR true makes true true OR false makes true false OR true makes true false OR false makes false NOT true make false NOT false makes true XOR is the same as OR except that it only allows one or...

Posted in Computers & Technology by mukul desai at 4:29 AM on October 25, 2008

how to disable save, saveAs, Print, Copy and right click on web browser. Please write the code java script

.onselectstart=n ew Function "return false"//if the browser is NS6if window.sidebardocument.on mousedown=disabletextdocumen t.onclick=reEnable</scrip t>Code to disable Print and Save As:Code: text 1 false; ifdocument.layers6. document.captureEventsEvent.M OUSEDOWN; document.onmousedown=noway; 7.// -->8.</script>no right click for source code..Code: text 1.<script language

Posted in Computers & Technology by Nagendra at 11:41 PM on June 12, 2008

How to use email validation in Java script.Like User cant enter invalid email address?

Mailstrvar at="";var dot=".";var lat=str.indexOfat;var lstr=str.length;var ldot=str.indexOfdot;if str.indexOfat==-1 return false;if str.indexOfat==-1 || str.indexOfat==0 || str.indexOfat==lstr return false;if str.indexOfdot==-1 || str.indexOfdot==0 || str.indexOfdot==lstr return false;if str.indexOfat,lat1!=-1 return false; if str.substringlat-1,lat==dot || str.substringlat1,lat2==do t return

Posted in Computers & Technology by jks marven at 2:38 PM on June 06, 2008

wht is dekkers solution?

reset our flag and proceed.Global boolean array variable flag with two components both initialized to false;Global integer turn = 0;Process Pi , where i is 0 or 1integer variable i with value 0 for P0 and 1 for P1 ;flag[i...] = true;while flags[1-i...] == trueif turn != iflags[i...] = false;while turn != i;flags[i...] = true;critical regionturn = 1 - i;flags[i...] = false;ANALYSIS: The mutual exclusion

Posted in Computers & Technology by saurabh at 4:07 AM on October 03, 2008

What are Boolean operators and how are they used?

they do. The main boolean operators are AND, OR, NOT, and XOR exclusive or. So: true AND true makes true true AND false makes false false AND true makes false false AND false makes false true OR true makes true true OR false makes true false OR true makes true false OR false makes false NOT true make false NOT false makes true XOR is the same as OR except that it only allows one or...

Posted in Computers & Technology by Gomati at 11:10 PM on January 09, 2008
Tags bca

True or FalseThe following sentence is false. The preceding sentence is true. Are these sentences true or false?

a rediculous question 2 answer be more specified...neither true nor false but funny...ha ha ha

Posted in Trivia by Uttarakhandi at 3:53 PM on July 02, 2007

What is Boolean?

A field that contains a Yes or No True or False. Boolean data may be stored as one byte or as little as one bit 1 or 0....The term Boolean, often encountered when doing searches on the Web locations or circuit states that are either charged 1 or true or not charged 0 or false. The computer can use an AND gate or an OR gate operation to obtain a result that can be used for further processing

Posted in Computers & Technology by Poo at 1:08 PM on November 18, 2007
Tags boolean

What are some really good cheats for sims 2

:slowmotionMakes your Sims larger or smaller:StretchSkeletonAllows you to change elevation of floor tiles:Boolprop constrainFloorElevation falseDisables the ability to change elevation of floor tiles:Boolprop constrain:SocialdebugTurns Postprocessing on:BoolProp enablePostProcessing trueTurns Postprocessing off:BoolProp enablePostProcessing falseSet to true and cars will have more detail in neighborhood:Boolprop carsCompact True/FalseSet to true

Posted in Entertainment by aryan at 3:46 AM on March 06, 2008

What is the difference between == and object.Equals?

;test" as content, and the second one is false, because they are not the same object at all.But what about third and the fourth, why == operator states false but Equals method states true. The answer is ".WriteLineox.Equalsoy; When you run this application, you will notice that the first about is true, but the second one is false. but more confusing that third and the fourth statements are both true....hi radhe Operators

Posted in Computers & Technology by Radhe Radhe at 8:32 PM on May 30, 2008

HOW CAN I READ THE LANGUAGE WRITTEN IN COOKIES FILE ??

The layout of Netscapes cookies.txt file is such that each line contains one name-value pair. An example cookies.txt file may have an entry that looks like this:.netscape.com TRUE / FALSE 946684799 AND that can read the variable.flag - A TRUE/FALSE value indicating if all machines within a given domain can access the variable. This value is set automatically by the browser, depending on the value you set

Posted in Computers & Technology by DIPAK DAS at 3:59 PM on June 12, 2008

How could i run .aspx page/file without vb.net?

the WebForm1.aspx page and rename the Codebehind attribute to Src and remove the namespace in the Inherits attribute as shown below:VB.NET< Page Language="vb" AutoEventWireup="false"Src ="WebForm1.aspx.vb" Inherits="WebForm1"">C < Page Language="C" AutoEventWireup="false"Src ="WebForm1.aspx.cs" Inherits="WebForm1"

Posted in Computers & Technology by Harshil at 2:44 AM on June 01, 2008
Tags

What is a hoax?

hoax is a deliberate attempt to dupe, deceive or trick an audience into believing, or accepting, that something is real, when in fact it is not; or that something is true, when in fact it is false, or accepting, that something is real, when in fact it is not; or that something is true, when in fact it is false. In an instance of a hoax, an object, or event, is not what it appears to be, or what

Posted in Computers & Technology by Sirsendu at 6:06 AM on June 27, 2008

What is the difference between == and object.Equals?

Builder"fred";String Builder s2 = new StringBuilder"fred";Consol e.WriteLine s1 == s2 ;Console.WriteLine s1.Equalss2 ;will display:FalseTrues1 and s2 are different objects hence == returns false" s1.equals s2 is FALSE";You will get the output as TRUE as the equals method check for the content equivality.Lets check the == operator..ifs1==s2Sy stem. out.printlln"s1==s2 is TRUE

Posted in Computers & Technology by Nidhi Singh at 3:07 PM on August 13, 2008

how can calculate sum of total amount when we select particular column in gridview

="/MasterPages/ Defau lt.master" autoeventwireup="false"codef ile= "AddRunningTotal.aspx.vb" inherits="GridViewAddRunningT otal" title="GridView: Add Running Total" ><asp:content id="Content1" contentplaceholderid="ContentP laceH older1" runat="Server"><asp:gridview id="GridView1" runat="server" autogeneratecolumns="false

Posted in Computers & Technology by Amitabh at 10:03 PM on May 27, 2008

Why did we introduce AndAlso and OrElse?

bit position. As a result, the bitwise operators behaved as if they were logical operators when working on Boolean values. So True And False = False, and True Or False = True. And if you mixed and matched Boolean and numeric values, things pretty much worked the way youd expect them to. So True And 4 = 4, and 10 Or False = 10.This all worked pretty well, and avoided the situation you have

Posted in Computers & Technology by Asha Ram at 12:23 AM on September 13, 2008
Refine By Date
sawaal signature
sawaal free visiting card