Cours
Cours
Compilateur de code
Compilateur de code
Discuter
Équipes
Se connecter
S'inscrire
Menu
Discussions Q&R
Chercher
Chercher
Poser une question
Poser une question
a= [1,2,3,4] a[2] a[a[2]] print (a[3])
arrays
function
lists
python3
0 Vote
6 Réponses
2nd Aug 2019, 7:46 AM
SUNDARAMAN IYER
What is a= -12%10 in C?
c
0 Vote
3 Réponses
11th Jun 2018, 11:39 AM
Dhanaraj S
Whats difference between a= and a==
c++
0 Vote
4 Réponses
18th Aug 2016, 9:45 AM
Eishu Pal
String A= new String ( “Java”);
java
string
1 Vote
1 Réponse
23rd Apr 2020, 12:46 PM
Zhengrong Yan
Int a= 10; a=a++*a--; it is coming 110 why??? C programming
ishjaiwal
2 Votes
17 Réponses
7th Feb 2021, 10:26 AM
Joy
A= " % . 2f " %(5.856)
python3
0 Vote
1 Réponse
21st Dec 2019, 2:22 PM
Muralikrishnan
A= [0, 1, 2] b=a a[0]="spam" print (b[0 ])
challenge
python3
3 Votes
2 Réponses
2nd Sep 2020, 7:24 AM
Gbadegesin Muhammed
Int a= 2, int b= 4; int result=x__; System.out.println
java
-1 Vote
5 Réponses
25th Dec 2016, 7:11 AM
Shanyan
a= "hello" #tab print(a[0:5:2]) what is purposes of 2
slicing
0 Vote
2 Réponses
29th Feb 2020, 1:59 AM
Bishnu Chalise
Why % used before a= ,b=,c=,. instead of d in second statement
formatting
0 Vote
21 Réponses
30th Aug 2019, 10:41 AM
Mr. Nothing
Var a= New Array(3) vs Store 3 in an array a.
array
integer
1 Vote
3 Réponses
13th Jun 2018, 11:30 PM
Corey
String a= new String("Dennis Ritchie"); String b = "Tom"; String c="Jerry";
mcq
0 Vote
2 Réponses
15th Jan 2023, 7:13 AM
Chiranjib Mohapatra
What is the value of z? a= 13 b=a-8 z=a/b
operators
ruby
0 Vote
2 Réponses
10th Jan 2018, 4:25 PM
Evelyn Baby
Could you tell me why this declaration give an error on Sololearn: float a= 42.8;
data-types
error
float
java
2 Votes
6 Réponses
8th Jul 2020, 11:21 AM
Theo Martier
Can anyone explain to me why in the output of this code, a= 23 ????
sololearn
5 Votes
2 Réponses
15th Dec 2018, 2:41 PM
🌚a 2fik
If a= 20 then a+=a + + + a; comes out to be 60.... how???
c++
2 Votes
5 Réponses
10th Aug 2016, 2:36 PM
Soutik
Can some one solve this a= 42, b=19 ("sum: ",a+b) what will be the output
phthon
variables
0 Vote
3 Réponses
20th Oct 2022, 3:05 AM
Sami
What is meaning of this- a= { 0:1,1:2} _sum =0 for b in a : _sum+=b
dictionaries
1 Vote
2 Réponses
17th Feb 2019, 11:16 AM
Nikhil Tale
if a= 3 b= 2 b= a++ then cout of ++b will be what and how?
c++
0 Vote
3 Réponses
18th Jun 2016, 5:11 PM
SaiKrishna Swarna
a=" ". while len(a) == 0. a= input(" what is numer"). how iI get the input as integer???
python
0 Vote
2 Réponses
26th Oct 2022, 11:42 AM
Damsara Welivita
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 Vote
5 Réponses
4th Dec 2019, 12:05 PM
Shamil Erkenov
Can we use .equals() method for integer.... I was using it to match String a= "15" with int b=15
.equals()
java
primitive
type-conversion
1 Vote
2 Réponses
22nd Mar 2018, 7:06 PM
Surya Adapa
Fill in the blank to declare a jagged array that contains 8 two dimensional array. int [ ] [ , ] a= new int [_][_];
c#
1 Vote
4 Réponses
29th Apr 2017, 12:36 PM
Saran Kumar
Can we get a product of a list and a tuple or set? Means--- a= {2,3}. Print(list(product(a, range(3)))). If yes then how?
lists
python
sets
tuples
1 Vote
3 Réponses
23rd Jul 2019, 9:16 AM
Achal Saxena
What will be the output of the following pseudocode? Multi Choice Type Question Integer a,b set a= 3, b= 1 for (each c from
be
choice
following
of
output
pseudocode?multi
the
the
whatwill
0 Vote
2 Réponses
18th Feb 2022, 6:13 AM
N.RAGAVENDRA
How can it be run
,int
2
a=
as
b=
int
0 Vote
2 Réponses
26th Oct 2023, 6:07 PM
Haram Abbas
Why output is differnt of a C language code. Int a,b,c; a= 4 b=2 c=3 c= --a - ++b + c++ ;. Outpt c=4 in dos and ubunt c=3
c
1 Vote
4 Réponses
17th Sep 2017, 6:00 PM
Praveen Patil
Let's say I have this list a= [1 2 3 4] is it possible to convert it to a normal comma separated list like this a = [1, 2, 3, 4]
lists
python
0 Vote
4 Réponses
8th Nov 2017, 3:08 PM
thanos moraitis
Assignment : • A,b,c are variables of type int while d, e f and g are of type float. • If a= 4, b = 6 and c -3, Find • d=3a
need
solution
0 Vote
2 Réponses
7th Feb 2017, 7:31 AM
Nartey Amos Adamtey
Example: Console.WriteLine("value of a="); Char a= Console.ReadLine(); if(b>2 && c>3 || a>2) ...... Else ...... It gives error like... "cannot implicitly convert type 'string' to 'char'..." So now please tell me how to convert it... And how to use in code
c#
type-conversion
1 Vote
4 Réponses
17th Jun 2016, 7:04 PM
Ajay Mangaj
Poser une question
Poser une question
Poser une question
Poser une question
Aujourd'hui en vedette
How to get better with problem-solving and programming
2 Votes
Ejercicio Pytho
0 Votes
What's wrong with this code ? ( Beginner)
2 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
Please rate my code from 1 to 10
2 Votes
How to start
0 Votes
Is there any new bug in the projects reply sections?
0 Votes