Skip to main content
0 votes
0 answers
127 views

I am working on a mean reversion strategy for bitcoin to automate trades on an Indian crypto Exchange. The pine script is supposed to generate buy, sell, buy side target hit, buy side sl alerts and ...
Raj's user avatar
  • 1
0 votes
0 answers
27 views

I went through Rabbit MQ documentation on routing keys. I see that there are only operators * and # to define a routing key. I have about 10,000 users whose birthday notifications are to be processed. ...
stalwalk's user avatar
  • 113
0 votes
0 answers
66 views

I am developing an Azure DevOps custom task. Part of the setting of the inputs is a VisibleRule which can contain a condition which will determine if the input will be visible, if the condition is ...
CodeMonkey's user avatar
  • 12.7k
1 vote
3 answers
106 views

I came across this question when studying logical operators and conditionals in C. #include <stdio.h> int main() { int x = 3; int y = 2; int z = 3; printf("Result #4 = %d\n&...
Salma Ihab Hamed's user avatar
0 votes
1 answer
73 views

I was given a truth table of four variables, let's call them A,B,C,D. I found every instance where the truth table was true and turned it into a function: F = (-A^-B^-C^-D) v (-A^-B^-C^ D) v (-A^-B^ C^...
Scorch's user avatar
  • 29
-1 votes
1 answer
102 views

I have this table in SQL server : date var val 2022-2-1 A 1.1 2022-3-1 A 2.3 2022-4-1 A 1.5 2022-5-1 A 1.7 2022-09-1 B 1.8 2022-10-1 B 1.9 2022-11-1 B 2.1 2022-12-1 B 2.22 I want to group by column ...
Homer Jay Simpson's user avatar
-1 votes
1 answer
736 views

I am working on a problem where I have to draw a logic circuit using no more than 2 Nor gates. The function F(A, B, C, D) = Σ(2,4,10,12,14) with don't care conditions Σ(0,1,5,8). After drawing the k-...
TheIncrediblyStupidOne's user avatar
-1 votes
4 answers
133 views

Below is a code that demonstrates a nested if statement for exam marks: public class NestIfExample { public static void main(String[] args) { Scanner inputDevice = new Scanner(System.in); ...
Tom Vuma's user avatar
2 votes
1 answer
511 views

I was looking into logical operator diagrams to learn about that stuff and I couldn't find out why the AND operator has a straight base while the OR has a curved one. Does anyone have an answer, or a ...
Surya's user avatar
  • 646
1 vote
2 answers
183 views

How can I represent logical expressions that might or might not contain brackets as a object in Java? I want to be able to be able to evaluate expressions that can be from only A to A AND B or more ...
Mariza's user avatar
  • 11
0 votes
1 answer
145 views

This question is based on these 2 other questions [1] [2], but I figured I'd get more progress if I asked something less specific and worked by myself from there. According to an user in the first ...
Leo's user avatar
  • 15
1 vote
2 answers
355 views

I'm doing some simplifications for a circuit and I ended up getting the following expression: A.C'.D' + A.B'.C' + B.C.D' + B'.C.D + A'.B'.D' which translates to the truth table where 0, 2, 3, 6, 8, 9, ...
Waffle_Runian's user avatar
-1 votes
1 answer
148 views

package test; public class Test { public static void main(String [] args) { int a = 10; int b = 12; System.out.println( ++a == 11 || b++ == 12); ...
Mustafa Quraishi's user avatar
0 votes
1 answer
98 views

I have the following table in power query: I'm trying to return the latest files for BOTH words "RAM" and "SoCal". In this case, the return files would be: RR RAM 2024-07-08.xlsx ...
user1527227's user avatar
  • 2,288
0 votes
1 answer
80 views

The scenario Let's say we have a database table 'TABLE' with entities identified by 'ID'. Each entity has several features stored in columns (COLUMN_1 to COLUMN_N). There is an additional feature of ...
Ipsider's user avatar
  • 571

15 30 50 per page
1
2 3 4 5
175