The Boolean data type represents simple True or False values.

learn more… | top users | synonyms (1)

0
votes
3answers
34 views

SQL Server : comparing boolean expression results

I have a query that tells me when a client has not communicated with our server in the last hour. When that happens, I need to send an email. This is the query that retrieves all of the clients that ...
-1
votes
3answers
40 views

Quickly create a boolean array based on inclusion of the ith element in another list

Im working with a very large list, approximately 56,000 elements (all strings) in size. Im trying to cut down run time. Is there a way to shorten this line: x = [int(i in list2)for i in list1] ...
-4
votes
0answers
28 views

Having trouble starting project..Need Guidence..little experience with boolean [closed]

Create a class named StudentGroup: a. Three instance (object) variables: i. groupName: String //name of group (“Math”, “Bio”,etc) ii. students: an array of objects typed Student iii. noOfStudents: int ...
0
votes
1answer
24 views

Create a drop-down menu with tumblr meta-if tags?

Is it possible to create a drop-down menu in the tumblr theme appearance options using meta-if tags/booleans, like you can for the meta-font tags? For example, in the theme I'm working on, I have ...
1
vote
2answers
76 views

C boolean value

As an answer to this question, What's happening is exactly what you're saying, The precedence of != is higher than that of =. That means that != binds harder than = and while(inp = ...
2
votes
1answer
78 views

In NSLog, methods return an upsidedown question mark

I can access a property declared like so: @property (nonatomic, assign, getter = isPrivateSickDay) BOOL privateSickDay; - (BOOL)isPrivateShortDay; Using the following: int sick = ...
0
votes
0answers
25 views

Boolean Logic & gate delays

Assuming 2 gate-delays for a Sum or Carry function, estimate the time for ripple-through carry addition for adders with the following word lengths:- i) 4-bit ii) 8-bit iii) 16-bit In my notes I ...
0
votes
1answer
46 views

If Statement Failing sometimes with id BoolValue Comparison?

I am pulling data from the web that is formatted in JSON and when I parse the data using "ValueForKeyPath" it stores the string value as an id object. So I store the data into a NSMutableArray In the ...
0
votes
1answer
56 views

Check each object in a ArrayList for itself

In a game that I'm working on I have implemented some powerups. I want the powerups to spawn at the same place as the zombie that you killed died on. I spawn all the zombies with a ArrayList so ...
-1
votes
3answers
40 views

ImageMagick Installed, True or False, How to Check? PHP [duplicate]

I have to run a function that has an option to use GD or ImageMagick - what is the best way (php) to test if ImageMagick is installed, and return a true or false?
0
votes
1answer
64 views

different result multiple query with rand boolean mysql and php

I need to give a result that differs: You can eat sandwich. You can eat sandwich but cannot eat donuts. You can eat donuts and drink. The whole thing must be pick at random. The problem is the ...
0
votes
3answers
42 views

Boolean. Is string in list and not last position ? Python

I'm trying to make a simple line of code that looks for a certain element in a list and gives a true or false. I want to know if it's in the list . . . it can be any position in the list BUT if it's ...
-5
votes
1answer
42 views

Mutual exclusion truth table? [closed]

Can someone give me a truth table of mutual exclusion? A B| Result ------------- 0 0| 0 1| 1 0| 1 1| Please fill the Result column so it reflects mutual exclusion.
0
votes
0answers
31 views

Inconsistency of Booleans from the same method

I have a boolean in a class that controls gameplay called load. If it on the main menu the user clicks 'NEW', the class is created, and load is set to false, so the game does not load a save, and ...
0
votes
1answer
36 views

PHP reporting that I'm feeding in a boolean..I'm not [duplicate]

I'm creating a simple blog system for myself -- it is done, but any time I view the posts page, PHP spits out an error about how I'm feeding in a boolean to mysqli_fetch_array. Last I checked, the ...
0
votes
1answer
35 views

AngularJS angular.copy not working for bool

Can someone explain to me why I can get angular.copy to work with an object or array but if I try to use a boolean value, it does not work. $scope.data = {}; $scope.data.booleanVal = false; ...
1
vote
1answer
64 views

Brussels Sprout game in python

Here's the code in python for a game where one or two rat eats brussels sprouts. It contains a Rat class and Maze class: class Rat: """ A rat caught in a maze. """ # Write your Rat methods here. ...
-1
votes
0answers
22 views

How can I make this boolean work?

Here's the code in python for a game where I eat brussels sprouts: class Maze: """ A 2D maze. """ # Write your Maze methods here. def __init__(Maze, content, rat_1, rat_2): ...
0
votes
3answers
33 views

Boolean value won't change

I'm working on a small program that basically just shows that I know how to use superclasses. Everything works great except my boolean value. It's supposed to ask the use of they would like to sign up ...
10
votes
4answers
171 views

How to check against all joins when generating a score using MYSQL

I'm finding this fairly hard to explain so please bare with me here... I'm using MYSQL to generate a score for each result returned by a query. The results are then ordered by the score. The part ...
1
vote
0answers
49 views

SQL Database data reduction

I have created an SQL database in Visual Studio using C#. The database is a records store, so it stores customers, records and Purchase. All seem to work fine, but when a customer makes a purchase, ...
1
vote
2answers
45 views

How to lower the bool value in webservice response and XML file

In my application i have set of Web-Service which return Bool value in from of camel case i.e. "True" instead of "true" and "False" instead of "false" and same goes in XML file which is get from the ...
-1
votes
2answers
27 views

Programming issue boolean logic

I have an issue where I need to create some buttons depending on some boolean values. If button1 = true I should create button1, if button2 = true I should create button2 and if button3 = true I ...
-2
votes
3answers
78 views

1 does not == 1, boolean issue [closed]

Am I going crazy or something, or do I need more sleep... can annyone offer a second set of eyes please? boolean slotTypeMatch = false; System.out.println("waiType: " + waiType); if ...
0
votes
2answers
74 views

Checking characters of a string using boolean method of the same class

This is one programming task i'm working toward to. I'm currently struggling with the main method of the code. Supposedly, what i am trying to do is to use the isDNASequence method to check the ...
-2
votes
1answer
69 views

Calling/using a method in the same class [closed]

Here i have some problem with this. In the code there are 2 methods: isDNASequence and getDistances. Now i already filled in what i think should isDNASequence should be but i'm clueless on how to get ...
0
votes
2answers
68 views

python boolean key for a dictionary

I want to use a group of booleans as a key for a dictionary so (weather == sunny and temp == warm) would be 11 or True,True while (weather == sunny and weather == cold) would be 10 and (weather == ...
-1
votes
3answers
94 views

Does C have boolean (True/False)

Something like this: /*Simple program to calculate the circumference of a circle. */ #include <stdio.h> #define PI 3.14159 int main() { float r1 /*R1 being the radius.*/ /* Since the ...
0
votes
3answers
107 views

Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in [duplicate]

I have a code like this, this is the line 16: $query=mysql_query("select harga from pakaian where 'kodeb'=$kode") or die($query. "<br/><br/>".mysql_error()); ...
0
votes
0answers
27 views

make object “die” only if boolean in false (AS2)

I have an object that when it enters a frame it dies. I wanted to create a shield for it so that it could not die when it has the shield on. I get the shield to show up and it works fine, but making ...
7
votes
4answers
86 views

NullPointerException from Boolean

This is one for the java pruists I think. I recently had an issue with a method to perform a custom parsing of String values to a Boolean. A simple enough task, but for some reason the method below ...
0
votes
2answers
55 views

Select last row of mysql table and edit and change its boolean value

I am looking for the correct way to go about selecting the last row of a table and then change a value of a column(boolean) to true. I am unsure if it is possible if you can do it with one PDO query ...
0
votes
2answers
90 views

how to use map with two int values and one string key

I am supposed to create a public StudentDatabase() which should create an empty database without using an java api class or method. There is supposed to be a method: public boolean add(String macid, ...
0
votes
1answer
40 views

how to fetch female users to mail in ruby on rails

i have a simple dating application am designing, and my users model has two boolean fields for male and female, i want a situation when a user signs up as Male, Female users should be shown to him to ...
1
vote
1answer
34 views

Returning unique strings from two arrays of strings, concatenated in one string VBA

I have a code that is close to working but not quite. I have two arrays astrArray1 and astrArray2 and the function findUniques() is supposed to return the unique strings(names) among the two arrays. I ...
0
votes
0answers
44 views

Using DataRow in GridView is not working vb.net

I am trying to do the dynamic gridview which includes Insert linkbutton. When the boolean is true a new empty row will be added. This is the vb.net server side code: Public Function GetList(Optional ...
1
vote
6answers
65 views

Not all code paths return a value (bools)

I'm in the process of creating a messaging service application for experience. However, I've stumbled across an error I've encountered before. Here is my method: bool userExists(string pcName) { ...
0
votes
2answers
37 views

How access bool from other form/script?

How can I access a bool from another form in c# ? e.g. I want access public bool isTrue = true; from Form1 in Form2. How to do this ? I only know how to do this in Unity3D Form1.isTrue = true; but ...
0
votes
1answer
36 views

Accuracy issues in using booleans to evaluate expressions

I am trying to remove some if statements in my code in order to make it more suitable for use in a Cuda kernel. The if-else statements have the following format: if(boolean 1) { double1 = ...
0
votes
1answer
36 views

BackgroundWorker on boolean functions c#

I have a boolean function. I have a bw which I wish to use to run this function. I want to get the return value from the function, is it possible? Here is a sample code: void Main () { ...
1
vote
1answer
47 views

Boolean Value Confusion when it is local, open and recursive in Java

I am a beginner and really confused with this code as what happens to boolean value, "done". I have spent two hours understanding this code and I am very frustrated. public boolean traverse(int row, ...
0
votes
2answers
77 views

How to check if bool already exists

I an developing a lib for use on an embedded platform. I have code in a header that is part of the lib with typdef enum bool {false, true} bool; If the lib user has already defined a type named ...
0
votes
1answer
24 views

Condition to check a BIT field

...and I'm checking this field like so: if((bool)$website['IsDeleted']) { } but it ALWAYS returns an empty string regardless of the value in the MySQL field wether its 0 or 1: ["IsDeleted"]=> ...
-1
votes
2answers
60 views

Java: 'Invalid line number' when setting boolean grid to all true

I'm trying to set the below Grid to all true, but I get the error "2685 is not a valid line number in java.util.Arrays" public class Grid { static boolean[][] gridCon; boolean white = ...
1
vote
1answer
110 views

JPA Named Query with boolean criteria doesnt work if a null value is passed as boolean parameter

This Works: @NamedQuery(name="all_submissions",query="select s from Submission s where (s.id= :id or s.testCode= :code or s.user.email = :email) and s.readOnce != NULL") s.readOnce != NULL but ...
2
votes
1answer
39 views

A boolean value defined in XML. How to reference in Java?

I'm trying to write some code that will reference a bool.xml file and will reference the current value inside the bool. <bool name="enableQAurl">true</bool> With this i want to be able ...
0
votes
8answers
94 views

Cant access bool variables in c#

The part of this code where it says if (bar = true) it cant find the variable "bar" that i create in if (foo == "True") or if (foo == "False"). Code: string foo = Console.ReadLine(); if (foo == ...
1
vote
1answer
62 views

How to group boolean conditions in EL

I'm having trouble evaluating a pair of boolean expressions within a JSF using EL. Here's my snippet: <a4j:commandButton id="addbtn" value="Add School(s)" action="#{somebean.someaction}" ...
0
votes
2answers
154 views

Creating a new instance for class with a boolean array

I'm writing a code which changes the colour of an array cell to either black or white depending on what the original colour is. If the cell is white, it changes to black and vice versa. I'm working ...
2
votes
6answers
40 views

Compile error getting class with getClass()

I'm learning about getClass and how it works. I read that: http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html but i don't really understand why that fails: boolean b; Class c = ...

1 2 3 4 5 48