Cursos
Cursos
Compilador de Código
Compilador de Código
Discutir
Teams
Fazer login
Registrar
Menu
Q&A Discussões
Pesquisar
Pesquisar
Faça uma pergunta
Faça uma pergunta
[BLOG] C++ Bread && Butter (Part 1)
c++
43 Votos
12 Respostas
3rd Sep 2017, 4:54 PM
Babak
console.log(1 + '1' - 1)
code
problem
programming
solving
0 Voto
5 Respostas
18th Feb 2024, 6:06 AM
Riaz Anwar
Does setInterval(variable, 1) on a computer browser differ from setInterval(variable, 1) on a mobile phone browser?
javascript
14 Votos
6 Respostas
25th May 2019, 9:35 AM
Jaagrav
(x +1) +1) + 1)
(x+1)+1)+1)
bishop
chess
0 Voto
5 Respostas
18th May 2020, 3:44 PM
Sur Tur
print( 7 and '0' and 1)
binary
boolean
operators
python3
short-circuit
2 Votos
5 Respostas
4th Jan 2020, 6:21 PM
★«D.Connect_Zone»
Booleans means logical? True( 1) or false( zero)?
c#
variables
2 Votos
6 Respostas
17th Jun 2016, 2:42 PM
Zagzoog Moe
Why (1/3 + 1/3 + 1/3 == 1) is False?
pop
quiz
7 Votos
12 Respostas
29th Dec 2017, 3:56 PM
Demetrius
Suppose that x is 1. What is x after the evaluation of the following expression? (x > 1) && (x++ > 1)
java
2 Votos
3 Respostas
18th Nov 2020, 3:45 PM
Zaina Fannana
[C language] how to find index number (from 1) in new string.
ask
c
clanguage
1 Voto
8 Respostas
13th Jan 2021, 7:07 AM
Briana
Assume x = 1. What is the truth value of the boolean: (x != 1) == !(x == 1)
boolean
boolean-logic
logic
logical
operators
0 Voto
2 Respostas
26th Jun 2017, 11:27 PM
Blaq Ice
if(1 == 1) and (2 + 2 > 3): print("true") else: print("false")
boolean-logic
0 Voto
9 Respostas
15th Apr 2018, 10:36 AM
Elisha Miracle
Which one is more correct 1) <br> OR 2) <br/>
<br>
tag
2 Votos
4 Respostas
28th Jun 2018, 10:46 AM
UJWAL
INSERT INTO Animals(name,type,country_id) VALUES('Slim', 'Giraffe', 1) SELECT Animals.name, Animals.type, Animals.country_id,
sql
0 Voto
2 Respostas
19th Nov 2021, 12:00 AM
Fodé Lamine Maréga
Which give me best opportunity in future? 1) java or 2)ios
java
language
mobiles
4 Votos
4 Respostas
26th Jul 2017, 11:52 AM
Denish Daraniya
PLEASE WRITE MOVE() AND EAT() FOR GAME----------PLEASE HELPPPPP! (PART 1)
class
eat
function
javascript
move
p5.js
-2 Votos
2 Respostas
22nd Sep 2017, 5:03 PM
Azat
Which option has a bright future? 1) Web Development 2) Mobile APP Development
futureof
pcvsmobile
programmers
4 Votos
4 Respostas
27th May 2018, 10:03 AM
Manoj Khetwani
Set the boolean variable p to true if the integer n (n > 1) is a prime number, and false otherwise.
c++
0 Voto
3 Respostas
19th Apr 2021, 5:58 PM
Nikita Volkov
Is it a good idea to reward top users (ranked 1) in the Leaderboard?
badge
reward
2 Votos
4 Respostas
20th May 2018, 7:52 PM
Satya Pratap
What is the difference between 1) \n and endl 2) cout and cin..
c++
1 Voto
3 Respostas
14th May 2019, 9:07 PM
Zain Uddin Bangash
After c++ which must be the best option to learn 1) java 2) python 3) css
c#
c++
css
java
python3
1 Voto
9 Respostas
18th Jul 2017, 5:05 AM
Mandeep Singh
Evaluate expression- (given a=15; b= 10 ) 1) a % b++ 2) ++a – b--
java
0 Voto
2 Respostas
19th Aug 2020, 9:50 AM
Darpan Kushwaha
How can I insert values(in table 1) from one database to table 2 in another database ? (SQL)
css
html
javascript
mysql
php
sql
4 Votos
3 Respostas
26th Jul 2021, 8:25 AM
Ramzi Jebalia
In string input "abc def xyz par" 1) count the words,and space using scanf
scanf
using
-1 Voto
2 Respostas
13th Sep 2022, 12:21 PM
Pawan
Evaluate expression- (given a=5; b= 6 ) 1) a ++ – b-- 2) a-- + ++b
java
0 Voto
2 Respostas
19th Aug 2020, 10:04 AM
Darpan Kushwaha
The statement x*=3; is equal to 1) X=3*; 2) x=3; 3) x= x *3; 4) x= x+3;
java
0 Voto
3 Respostas
19th Aug 2020, 9:21 AM
Darpan Kushwaha
Имеются данные о стоимости 1 кг 30 видов конфет.Расположить их 1) по убыванию 2) по возрастанию
с++
1 Voto
3 Respostas
24th Nov 2017, 5:49 PM
Aidana
FAQ#1 Today's Question is: 1) Can we use anything else instead of "cout" in c++ ? Even name them?
faq
0 Voto
6 Respostas
7th Oct 2018, 4:17 PM
Justin D'souza
def tri_recursion(k): if(k > 0): result = k + tri_recursion(k - 1) print(result) else: result = 0 return resul
python
0 Voto
4 Respostas
2nd Oct 2020, 10:00 AM
Kumar Shubham
1) A new animal has come in, with the following details: name - "Slim", type - "Giraffe", country_id -
1
0 Voto
4 Respostas
28th Aug 2022, 5:37 AM
Ragul S
{ANSWERED} 1) how to “remove” just the second one of the same letter. {ANSWERED} 2)How to “reverse” just part of a list
python
remove
reverse
1 Voto
8 Respostas
27th Apr 2022, 11:16 PM
Lz1234
well I have a lot to ask 1) how long does it take to learn c++ 2) is C++ the easiest of the C's
c++
0 Voto
17 Respostas
12th Jun 2016, 11:40 AM
Sahil Mir
A non-zero value (usually of 1) signals abnormal termination. Is it true for any larger programs?
c++
0 Voto
1 Resposta
28th Jan 2017, 5:05 PM
Aravind K
Hello Dears. I solve Trip Planner (Test Case 1) how can i move to (Test Case 2). And Save my first answer?
javascript
0 Voto
3 Respostas
31st Jan 2021, 5:50 PM
Salim Mohammad Elsadi
trying out palindrome in java : 1) I cant get it right. 2) variable c isn't incrementing . Can someone help me out.
java
palindrome
wtfislocalvariable
0 Voto
10 Respostas
10th Jul 2017, 5:51 AM
Joseph Nithish
Why is the output of print (1 == 1) and (not (2 + 2 > 3)) coming as True?
(2
1)
2
3))
and
as
coming
is
of
output
print
the
why
0 Voto
3 Respostas
8th Mar 2017, 3:35 PM
Gaurav Chaudhary
this. velocity = new PVector (rando 1) random (0, -1)); this pasihom - posibion get (); this time Live = 255.0
games
important
language
programming
1 Voto
2 Respostas
15th Jul 2020, 5:06 PM
Shikhar Dwivedi
C Program Code for the following: 1) I will give input like 5+3-2-1*10+15/3*2-2 & Output will be : 5+3-2-(1*10)+((15/3)*2)-2
clanguage
coders
codingcommunity
codingkings
cprogrammers
0 Voto
1 Resposta
12th Jul 2018, 6:41 PM
Pavi Snega
when you’re testing with that; 1) leap year before 2/28, 2) leap year after 2/28, 3) non leap year
c++
0 Voto
1 Resposta
7th Oct 2019, 12:51 PM
Livoni
Your goal when you make a challenge? 1) make a lot of xp by your victory? 2) To learn more by your losing or your winning?
challenges
9 Votos
4 Respostas
28th May 2017, 5:35 PM
yventz gustave
bonjour à tous voilà je suis boquée au niveau de l'exercice suivant : int fact (int x) { if (x == 1) { 1; } else {
c++
recursion
0 Voto
10 Respostas
26th Nov 2018, 1:18 PM
Séverine MOUNIER
1) How to find array is empty in c . 2) How to find how many no of elements are filled in an array in c .
c
0 Voto
5 Respostas
13th Nov 2022, 9:38 AM
Om Yele
Write a C++ program that accepts an integer number and prints the following: 1) Sum of even factors of the number
c++
0 Voto
1 Resposta
23rd Oct 2020, 1:36 AM
Deema Thnabi
1) A new animal has come in, with the following details: name - "Slim", type - "Giraffe", country_id - 1 Add him to the Animals
sql
-3 Votos
4 Respostas
14th Sep 2022, 4:42 AM
Mohit Namdev
Can anyone please write a C program to delete all the node placed at even position of the link list (start count from 1)
android
c
c++
ds
java
linklist
python
r
0 Voto
3 Respostas
21st Mar 2020, 6:22 AM
Rohit Negi
1) Lea un matriz de f filas y c columnas y luego imprímala 2) Encuentre la transpuesta de una matriz
resolverlo
-1 Voto
1 Resposta
13th Apr 2022, 2:05 AM
Jhoel Llanos Alvarado
Input: The first line will consists of one integer T denoting the number of test cases. For each test case: 1) The first line co
java
0 Voto
3 Respostas
5th Sep 2020, 7:06 AM
Hrishabh Gupta
Can we use two different methods in a single class? For exmaple, 1) sayHello();. 2) sayHome(); if yes how to calll them?
class
java
methods
0 Voto
3 Respostas
7th Nov 2016, 3:43 AM
Shridhar Naik
how python calculation this code i not understand why when i put (block 2 the height is 1) or (block 3 the height is 2 i) help p
python
python3
0 Voto
5 Respostas
16th Feb 2019, 4:26 PM
Ariel Shenker
Someone should pls check my code countToTwenty = ( n = 1) => { if ( n == 21) { return}; Console.log(n) n++; countToTwenty (n); }
if-statements
1 Voto
3 Respostas
30th May 2022, 10:26 AM
Cool Ice
X = int(input()) Y = int(input()) Z = int(input()) N = int(input()) ans = [[i, j, k] for i in range(X + 1) for j in range(Y
list
1 Voto
2 Respostas
27th Oct 2020, 3:10 PM
Jaya Pratha
Faça uma pergunta
Faça uma pergunta
Faça uma pergunta
Faça uma pergunta
< Anterior
1
2
Próximo >
Quente hoje
How to get better with problem-solving and programming
2 Votes
Odd even threads without condition variable
0 Votes
Ejercicio Pytho
0 Votes
What is that z for
0 Votes
Bug on "Java for Beginners Module 3 Quiz"
1 Votes
Suggestions needed
4 Votes
Write a program to find the strings are in isogram or not
0 Votes
What's wrong with this code ? ( Beginner)
1 Votes
Please rate my code from 1 to 10
2 Votes
How to start
0 Votes