Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
12answers
5k views

Swapping two variable value without using 3rd variable

One of the very tricky question asked in an interview... we need to swap the values of two variables like a=10 and b=15. Generally to swap two variables values, we need 3rd variable like: temp=a ...
20
votes
4answers
3k views

bitwise operators and “Endianness”

Does Endianness matter at all with the bitwise operations. Either logical or shifting? I'm working on homework with regard to bitwise operators and I can not make heads or tails on it and I think ...
12
votes
5answers
1k views

Logical xor operator in c++?

Is there such a thing? First time I encountered a practical need for it, but I don't see one listed in stroustrup. I intend to write: // Detect when exactly one of A,B is equal to five. return (A==5) ...
10
votes
5answers
2k views

Why is there no logical xor in JavaScript?

Why is there no logical xor in JavaScript?
6
votes
6answers
205 views

C++ logical & operator

Is there a logical & operator in C++? e.g. an operator that works just as && except that it also evaluates later arguments even if some preceding ones have already evaluated to false? The ...
5
votes
3answers
634 views

using compound conditions in bash shell script

I want to do something like below in bash script. how do i implement in bash syntax. if !((a==b) && (a==c)) then do something end if
5
votes
5answers
410 views

Implementing logical negation with only bitwise operators (except !)

~ & ^ | + << >> are the only operations I can use Before I continue, this is a homework question, I've been stuck on this for a really long time. my original approach: I thought that !x ...
5
votes
2answers
359 views

Logical vs Numerical array in MATLAB

I am comparing two binary arrays. I have an array where values can either be one or zero, one if the values are the same and zero if they are not. Please note I am doing other stuff beyond checking, ...
4
votes
7answers
337 views

Complicated programming and math tasks online. Any? [closed]

Possible Duplicate: What are some good websites for programming puzzles? Maybe it is not very thematic question in here, but I guess it will be interesting not only to me. I hope. So, I ...
3
votes
4answers
117 views

Javascript Logical Operator: !

I was examining the src of underscore.js and discovered this: _.isRegExp = function(obj) { return !!(obj && obj.test && obj.exec && (obj.ignoreCase || obj.ignoreCase === ...
3
votes
1answer
360 views

mysql order by integer and varchar

I got a field with sizes(VARCHAR). The sizes can have int and string values, e.g. (1, 2, 3-4, X, XL, M, ...). When i use the normal order by function of mysql the output is the following: 1,10,11,2, ...
3
votes
8answers
181 views

Logical operators question: (A>=100 && B<100 || B<A)

is the expression alright? (A>=100 && B<100 || B<A) I am not sure whether there should not be: (A>=100 && (B<100 || B<A)) I need to say that when A>=100 AND ...
3
votes
4answers
246 views

Why is this logical expression in python False?

My question is, why are these expressions False? Python 2.6.4 (r264:75706, Dec 7 2009, 18:45:15) [GCC 4.4.1] on linux2 Type "help", "copyright", "credits" or "license" for more information. ...
2
votes
3answers
269 views

How to paste text and variables into a logical expression in R?

I want to paste variables in the logical expression that I am using to subset data, but the subset function does not see them as column names when pasted (either with ot without quotes). I have a ...
2
votes
3answers
77 views

extending class but base call needs to call extended class

I have a large class that I'm breaking up into smaller chunks. So I have a base class and a new class which extends the base class. My problem is, Can I call the extended class from the base class? ...
2
votes
2answers
770 views

Create inverse logical array in Matlab

I have a logical array, isLand, that is true if the index is over land and false if the index is not over land, like the ocean. How can I easily create another logical array, isOcean, which is the ...
2
votes
1answer
239 views

Merge two sorted parts of an array with constant memory in O(n) time

Assume we have an array of length N where the subarrays from 0 to N/2 and N/2 to N elements are sorted. Is it possible to sort the whole array using constant memory in O(N) time? Example of an ...
2
votes
3answers
406 views

The largest prime factor with php

So, I wrote php program to find the largest prime factor with php and I think it is quite optimal, because it loads quite fast. But there is a problem, it doesn't count very big numbers's prime ...
1
vote
2answers
115 views

Is logical negation of zero (!0) compiler dependent in C?

Recently I have come across an article which mentioned that the result of !0 is compiler dependent. The result can be either 1 or FF or FFFF and so on. As for C99 standard 6.5.3.3 Unary arithmetic ...
1
vote
2answers
59 views

MATLAB: Finding the entry number of the first '1' in a logical array

I have created a logical array of 1's and 0's using the following code: nWindow = 10; LowerTotInitial = std(LowerTot(1:nWindow)); UpperTotInitial = std(UpperTot(1:nWindow)); flag = 0; flagArray = ...
1
vote
4answers
204 views

WPF Tunneling, practical use?

What practical scenarios need to use Tunneling of events? I know a vague answer to this could be that it is used when we want to handle a event across the visual/logical on which event is raised. But ...
1
vote
2answers
258 views

JAVA - logical operations on chars

I'm creating a file reading program. As part of this, I need to filter out any char that isn't '0-9' or '.'. Basically, any char other then these needs to trigger an IF statement. Here's what I've ...
1
vote
1answer
56 views

Logical instructions for CIL

How can I use logical operators like AND, OR, NOT in CIL ?
1
vote
2answers
102 views

Logical operators in JavaScript — how do you use them?

I don't understand how &&, ||, and ! work... both with bools and other data types. How do you use them?
1
vote
1answer
113 views

Logical destroy

i have used some of association in my project model. Corresponding child record will be deleted through dependent :destroy, if i delete any parent record.I have implemented logical delete which means ...
1
vote
2answers
3k views

Replace empty cells with logical 0's before cell2mat in MATLAB

I've got a cell array of empty cells and ones that I want to convert to a logical array, where the empty cells are zeros. When I use cell2mat, the empty cells are ignored, and I end up with a matrix ...
1
vote
3answers
1k views

How to make a logical boolean parser for text input?

I need to make a parser to be able to extract logical structure from a text input in order to construct a query for some web service. I tried to use regular expressions but it gets really complicated ...
1
vote
2answers
398 views

bitwise operator variations in C++

I read in a book that C++ provides additional operators to the usual &,|, and ! which are "and","or" and "not" respectively, plus they come with automatic short circuiting properties where ...
1
vote
4answers
536 views

Prevent misuse of logical operator instead of bitwise operators

In C++ it's possible to use a logical operator where a biwise operator was intended: int unmasked = getUnmasked(); //some wide value int masked = unmasked & 0xFF; // izolate lowest 8 bits the ...
1
vote
2answers
772 views

Logic for Searching *.* from text file using J2ME Application

I have a one textField in J2ME. I want to search from a textfile using that textField Value then what will be the logic for that ? Suppose if i enter abc in textField then logic should return abc ...
1
vote
3answers
452 views

Bitwise Ops

I'm hooked on bitwise for a new security paradigm I'm creating called VMAC. Variable Matrix Access Control. I want to do logical implication on to bit strings. (1) Before I reinvent the wheel, is ...
0
votes
0answers
32 views

convert a matrix into a row echelon form by gaussian elimination in matlab

I am trying to simulate the results for a communication theory using matlab. I have a non-square matrix which after converting into row echelon form using the row echleon form I will calculate the ...
0
votes
3answers
84 views

cant find my logical error

I have made a simple program with : working with files(read write) end class extends but the program does not work. Netbeans show no errors but when i run it ......some kind of errors show up ...
0
votes
3answers
43 views

PHP Logical Operators precedence affects variable assignment results strangely

$var4 = 123; function fn1($p1) { return array('p1' => 1, 'p2' => 2); } if ($var1 = fn1(1) AND $var4 == 123) { print_r($var1); } if ($var2 = fn1(1) && $var4 == 123) { ...
0
votes
4answers
34 views

Logic Behind a JQuery Betting Game

I'm trying to figure out how to make the bet check against the 10 dollars in the #your-money id and if it's greater than 10 to show error, and if it's less than 0 show error. var mybet = $( "#bet" ); ...
0
votes
1answer
48 views

Logical conjunction for multiple arraylists

There are multiple arraylists (the number of arraylists is apriori unknown). In each arraylist I need to find an element that provides logical conjunction with elements from other lists. Note that the ...
0
votes
3answers
52 views

using logical OR operator in a JavaScript case statement

I have two jQuery files- one [newForms_jQuery.js] being called on userNewItemForm and adminNewItemForm, another [editForms_jQuery.js] being called on userEditItemForm and adminEditItemForm. I'd like ...
0
votes
1answer
80 views

Cannot find logical error in C++ program

I am making a timetable generator as a project. However a part of its code seems to have a logical error that i can't figure out. Here's that part void _tmain(int argc, _TCHAR* argv[]) { int ...
0
votes
1answer
56 views

Circle quadrant and multiple logical operators

I'm trying to do a calculation on a circle with angles and a triangle inside. What I'm trying to find is if it is possible to group logical operators, or if it is not advisable. EX: If the angle is ...
0
votes
0answers
46 views

Logical error in Hibernate Application

I managed to resolve my previous error. However, I am now experiencing a logical error with my application. As mentioned, my application has 3 datatables: Users, Groups, and UserGroups. The ...
0
votes
0answers
108 views

tsql multiple logical operators

Can somebody please help, I am trying to create a TSQL query the checks to ensure the the search term (@s) is in the product description or product name, and the category is the same as the ...
0
votes
3answers
141 views

Using OR Logical functions with SUMIFS in Excel

I have two workbooks in excel which I copy columns from one to the other. I would like to copy the number of one column, say A, IF another column, say B, is equal to "Test Tool" or "Hard Tool". I've ...
0
votes
1answer
35 views

For loops and an array, trouble ouputting dynamically created divs

I have trouble outputting some queried data which is stored in an array that I want to show in html like this: ID1/NewsTitle1/NewsDate1 ID2/NewsTitle2/NewsDate2 ID3/NewsTitle3/NewsDate3 ...
0
votes
2answers
203 views

FoxPro error about a logical expression

This one really has me confused... Let's say I'm working with a FoxPro table called Org, and among its many columns it has a column called 'comm_typ'. If I have Org currently selected, and I say: ...
0
votes
2answers
322 views

How many bits are in a logical address?

Alright, so I've done some searching around Stack and cannot find the answer to this question. It's something that was mentioned in class, but the professor did not specifically say how to go about ...
0
votes
1answer
158 views

Matlab Video of logical images

I've got a video where I apply chroma key to each frame to extract color. newImage = (checkR)&(checkG)&(checkB);% for each frame In the end I put all frames in simillar video container ...
0
votes
1answer
78 views

Logical xhtml/css design

My website uses supersized, so my background is never 'static'; eg: when you resize the browser window, the background image will resize itself too and so the top left corner of the website will have ...
0
votes
1answer
472 views

Logic Solving Algorithm for Sudoku (Java)

So, I recently had a brain fart and decided to write a logic solving algorithm for my Sudoku application. What I wrote works for a limited amount of grid values, but then the recursion stops way too ...
0
votes
1answer
354 views

Logical application and infrastructure diagram

We have been asked to produce a logical application and infrastructure diagram for an existing system which is in the process of been transfered to a different server. After some searching on Google ...
0
votes
3answers
7k views

Difference between logical addresses, and physical addresses?

I am reading Operating Systems Concept and I am on the 8th chapter! However I could use some clarification, or reassurance that my understanding is correct. Logical Addresses: Logical addresses are ...

1 2