Kursy
Kursy
Kompilator kodu
Kompilator kodu
Dyskusja
Cennik
Zespoły
Zaloguj się
Zarejestruj się
Menu
Dyskusje Q&A
Szukaj
Szukaj
Zadaj pytanie
Zadaj pytanie
Which of the following two statements are valid? Why? 1. x=1,024 2. x=(1,
boolean-logic
booleans
c++
css
java
python
strings
variables
0 głosów
1 Odpowiedź
29th Sep 2016, 7:20 AM
Devansh Kaushik
Which is the best sequence to learn the following C++, html5, python, java
c++
html5
java
python3
1 Głos
1 Odpowiedź
23rd Dec 2016, 5:20 PM
N. DURGADEVI
Show the following series using loop: 1 1 2 2 4 7 11
c#
c++
0 głosów
1 Odpowiedź
18th Nov 2016, 9:22 AM
Shah Zaib
Given the following permutation of a,b,c,d,e,f,g,h,i,j, what is the previous permutation in lexicographic (dictionary) order?
python
-1 Głos
1 Odpowiedź
19th Mar 2019, 1:01 PM
Tempo Profale
Guys which of the following is a <script> attribute (Any of the following)
html
-2 głosów
3 odpowiedzi
18th Sep 2017, 12:32 AM
Jay
Can anyone tell me the difference(if any) b/w the following set of statements:
c
1 Głos
1 Odpowiedź
14th Mar 2017, 7:30 AM
vimal tomar
Show the output of the following statement assuming that a=41.16,b=21.12,i=52,and j=101: Cout<<steprecision(3)<<a<<setw(12)<<b<<endl; Cout<<setw(6)<<i<<setw(8)<<j<<endl;
c++
output
0 głosów
1 Odpowiedź
7th Oct 2016, 7:19 AM
miss comp engineer
Find the error. The following code attempts to compute the first order effects of some physical process.
python
python3
0 głosów
2 odpowiedzi
25th Mar 2020, 3:30 PM
Model Pilot
What is the coding for the following pattern in java netbeans? **** ### ** #
java
1 Głos
2 odpowiedzi
3rd Mar 2018, 6:16 AM
Manroop Singh
What will be the data type and value of y after execution of the following
java
0 głosów
2 odpowiedzi
14th Mar 2019, 2:43 PM
Rishabh Didwania
how should select the element from the DOM containing the text "JavaScript is cool!" from the following markup. with it`s class
api
dom
javascript
0 głosów
4 odpowiedzi
15th Sep 2022, 7:34 AM
Yasin Rahnaward
Consider the following C code snippet: char *sentence = NULL; strcpy(sentence, "Helloworld"); printf("%s", sentence):
c
0 głosów
1 Odpowiedź
5th May 2018, 8:22 AM
Santosh Dongare
Can anyone submit their code for the code challenges? I wanted to submit the following code up for quiz. How do I do it?
modulo_operator
0 głosów
9 odpowiedzi
11th Oct 2022, 6:29 PM
Sonam Kag
Find the number of comparisons required in bubble sort of the following list having the 5 numbers : 10 20 30 40 50
c
datastructure
using
0 głosów
6 odpowiedzi
12th Sep 2020, 5:46 PM
Yogita Dose
Save post or discussion
discussions
favorites
features
following
posts
save
5 głosów
4 odpowiedzi
22nd Feb 2019, 11:44 AM
Caleb
input total days and convert it into year, month, week and days and display the output in the following format
python
sololearn
2 głosów
3 odpowiedzi
26th Aug 2020, 8:06 AM
Dark Knight
If we have a book object but we do not give it a "subtitle" property, will following code return undefined?
css
html
javascript
js
php
question
0 głosów
7 odpowiedzi
7th Jul 2017, 1:38 AM
DIY Mods
What does f(31415927) return, for the following function definition?def f(x): d=0 while x > 1: (x,d) = (x/2,d+1) return(d)
python3
0 głosów
4 odpowiedzi
16th Feb 2018, 3:16 AM
I Am a Baked Potato
In python why it is print 5.0 Instead of print 5 .When we use following condition -----> print(10/2) ?
division
print()
python
0 głosów
4 odpowiedzi
19th Oct 2022, 2:38 AM
ARAVIND DUDE
Anyone know what when wrong? Im following some course to get use in it but it does not work as expected
python
0 głosów
5 odpowiedzi
15th Jun 2021, 1:43 PM
aazizul zainal
I wrote following code but it didn't give any results. Can anyone tell me how should I modify it to give out my desired result?
oop
programming
python
3 głosów
8 odpowiedzi
16th Aug 2018, 5:29 PM
Saeed Mozaffari
using 'continue' how to solve following problem?not getting proper output.numbers divisible by 3 should not be printed
python3
0 głosów
2 odpowiedzi
5th Feb 2020, 7:09 PM
Radhey
The following code do not work after 17. I want to make it work for no. As large as 1000
c
functions
0 głosów
4 odpowiedzi
20th Apr 2020, 11:01 AM
Aman Porwal
Which of the following core modules is used to create a web server in Node.js?
core
js
node
php
server
1 Głos
1 Odpowiedź
15th Oct 2018, 1:04 PM
Samuel Obitope
Explain why the following code prints the message “Hello world” instead of giving an error?
c
c++
1 Głos
2 odpowiedzi
11th Feb 2017, 7:15 AM
Muhammad Hamza
I wrote the following code for the "Say the Numbers" project in the Go Tutorial but it doesn't pass 2 test cases (e.g. 2nd)
go
project
tutorial
2 głosów
3 odpowiedzi
12th Sep 2021, 10:40 PM
Sonic
Ok i am getting a very weird and poesibly wrong output for the following pattern,can you guys help pls,
c
2 głosów
3 odpowiedzi
11th Dec 2018, 9:03 PM
Abhay
how to display thread, I started to follow?
bookmark
follow
following
thread
threads
1 Głos
2 odpowiedzi
29th Oct 2018, 11:18 PM
Double Janush
If the following code should run to giveout random number,Why does it give 41 everytime I run it...
c++
rand
1 Głos
4 odpowiedzi
8th Aug 2017, 12:17 PM
Ajaya Kumar Pradhan
Write a C program to print the following character number pyramid as: 1 A B 2 3 4 C D E F
c++
1 Głos
5 odpowiedzi
9th Jun 2018, 10:10 PM
Anas El messlati
How many times is the body of the following loop executed? What is the value of x after the loop termination?
c++
code
problem
question
0 głosów
5 odpowiedzi
24th Jun 2021, 3:00 AM
Rao Muzaffar
In the following code, no matter what int value i give, it always outputs: 0 is thinking...
inner-classes
java
0 głosów
4 odpowiedzi
16th Sep 2016, 9:47 AM
Chahat Gupta
Consider the following programme code and tell how many times the loop will execute.
javascript
0 głosów
2 odpowiedzi
17th Feb 2017, 6:50 AM
Abhinav
Will the following code compile?If yes, then is there any other problem withthis code?
c
0 głosów
2 odpowiedzi
27th Nov 2016, 10:54 AM
Aniket kinhikar
Please do help me....complete my assignment.. Writea program to input a string ..and print it in following way...
sololearn
0 głosów
3 odpowiedzi
18th Aug 2018, 7:17 AM
deep [Java / JS]
How do I write this following popular saying in this same format by Steve jobs: "Stay hungry, stay foolish" by Steve Jobs
python
0 głosów
5 odpowiedzi
9th Jan 2022, 7:59 AM
Olabode Sodiq Idowu
Solve the following code. Please give me justification that why program is giving the error
@c++
@oop
c++oop
0 głosów
1 Odpowiedź
26th Apr 2020, 5:53 PM
Areej
Please, Explain the following i found it as a quiz in a challenge. What this program is going to do and whats its working...
c++
output
sizeof
struct
1 Głos
6 odpowiedzi
15th May 2019, 2:32 PM
Sp Maurya
Write a program to output the following given that the input string is "I LOVE PROGRAMMING" in Java programming
tag
-1 Głos
3 odpowiedzi
10th Dec 2021, 8:32 AM
Vivek Jha
What is the output of the following code? Can somebody explain why the answer is 11 tnx
java
operators
0 głosów
4 odpowiedzi
15th Dec 2016, 1:05 AM
Atanas Ivanov
In the following program When i declare sum=a+b in third line befor cout the compiler gave to me a wrong answer.why?
c++
variables
0 głosów
8 odpowiedzi
24th Dec 2016, 8:25 PM
Hanif
How to find the sum of following series using "1+(1+2)+(1+2+3)+(1+2+3+4)+.......N" the value of N is entered by the user.
,addition
,for
,series
,sum
c++,
loop
loops
of
series
2 głosów
4 odpowiedzi
29th Oct 2017, 4:25 PM
S-Y 007
Hi everyone why does the following code give me error? even though I have installed the modules from pip
help
modules
pyfiglet
python
termcolor
0 głosów
1 Odpowiedź
11th Jul 2024, 12:28 PM
Yusof
[SOLVED] Can someone please explain to me why the output of following code is 55?
iteration
python
while_loop
0 głosów
1 Odpowiedź
7th Dec 2022, 5:11 AM
Haru
Can I have some links or help on the following topics related to socket programming in python and GUI for the program on Django?
python
socket_programming
0 głosów
8 odpowiedzi
26th Jun 2022, 2:39 PM
ROYALE LEGEND
Critically compare the following data models ensuring that you discuss the similarities and differences
database
dbms
0 głosów
2 odpowiedzi
3rd Jul 2017, 12:43 AM
Kerron Victor
Can please someone enlight me why is the output of the following code is 0? a= [2,3] b=[2,6] a[1]*=3 b[1]+=3 print(int(a is b))
integer
1 Głos
5 odpowiedzi
4th Dec 2019, 12:05 PM
Shamil Erkenov
Which of the following is incorrect in python? a) x = 0b101 b) x = 0x4f5 c) x = 19023 d) x = 03964
python3
-3 głosów
2 odpowiedzi
14th Jan 2020, 2:30 PM
Himanshu Patel
So I'm having trouble with the following js code coach, it's actually hindering me from unlocking other lessons.
javascript
0 głosów
3 odpowiedzi
15th Sep 2022, 7:24 AM
Sheikh Luminis
I just cant figure how the output in the following code becomes 121. Kindly help me get it.
python
0 głosów
2 odpowiedzi
19th Dec 2019, 5:09 PM
Dickson
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
< Do tyłu
1
...
23
24
25
...
30
Dalej >
Popularne dzisiaj
Guys help please
1 Votes
Python question
2 Votes
Are websites hackable?
1 Votes
Python
1 Votes
Void functional void with bool function
0 Votes
TICTACTOE
0 Votes
C# and sql
1 Votes
What course to take for AI?
0 Votes
Error
0 Votes
What's an unsigned int?
0 Votes