Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
90% Quality Score
Upvotes Received
9
Posts with Upvotes
8
Upvoting Members
6
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
3 Commented Posts
0 Endorsements
Ranked #3K

8 Posted Topics

Member Avatar for MWAMBA
Member Avatar for JohnMcPherson
Member Avatar for nitin1

I think the second book is what you're looking for. It contains (collections properties, threading, interfaces detailed concepts) and it explains Java slowly, gradually and in a formal way. 1) Beginner - Head First Java 2) Intermediate - Java in a Nutshell 6th Edition by Benjamin J. Evans & David …

Member Avatar for nitin1
1
309
Member Avatar for Royce_1

Programs in Android are commonly written in Java, but you can also write in native languages like C or C++ using the NDK (Native Development Kit) provided by Android. These are compiled to bytecode for the JVM (Java Virtual Machine), which is then translated to Dalvik bytecode (Android's customised JVM) …

Member Avatar for Avani_3
1
796
Member Avatar for btp06b

In Python you cannot mix spaces and tabs in indenting your code. That means if you used spaces to indent your code, then you have to be consistent in using spaces all the time and not alternate it with tabs. Also you have to be consistent with the number of …

Member Avatar for Freshly
0
509
Member Avatar for grand_78

Is this what you were trying to do? def main(): f = open('student_points.txt', 'r') contents = [] for line in f: contents.append(line) f.close() print('Student\t\t\tPoints\t\tGrade') print('----------------------------------------------\n') num_stu = 0; num_passed = 0 for content in contents[:]: num_stu += 1 stu_name = content.split(':')[0] stu_points = content.split(':')[1] print(stu_name + '\t\t' + stu_points.strip('\n'), end='') …

Member Avatar for Freshly
1
558
Member Avatar for AleMonteiro

I would suggest for you to try Arch, it only includes the essentials and you could customize it to your liking. You could try the xfce desktop environment. Yes you should not dual boot; here is why: https://www.youtube.com/watch?v=j9iX2qSfMhE . I don't know about .NET. Android runs on Linux. Here is …

Member Avatar for BitBlt
1
663
Member Avatar for KrullFX

You forgot to enclose your string with double quotes. It should be like this: System.out.println("Enter two number to multiply."); You also forgot to declare the datatype of your variables before use. So the following lines int n1 = keyboard.nextInt(); int n2 = keyboard.nextInt();

Member Avatar for JamesCherrill
0
356

The End.