Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,162,417 members, 7,850,481 topics. Date: Tuesday, 04 June 2024 at 10:27 PM

ANTONINEUTRON's Posts

Nairaland Forum / ANTONINEUTRON's Profile / ANTONINEUTRON's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (of 64 pages)

Programming / Re: [Definition] Computer Science, Algorithm, Programming And Computation by ANTONINEUTRON(m): 9:00am On Nov 28, 2019
concise definitions

1 Like

Education / Re: Is School Really A Scam? See What I Saw In A Nur 2 Pupil Textbook by ANTONINEUTRON(m): 7:19am On Nov 28, 2019
publisher want produce book sharp sharp.
it's your job to highlight the mistake and correct it.
Education / Re: Which Engineering Should I Go For. by ANTONINEUTRON(m): 4:41pm On Nov 27, 2019
Your interest supersede.

Basics of many engineering fields are thesame.
But on a more intricate level, what do you love, what's your interest.

Do you love things related to circutry, electricity and on the long run computing?? go for Electrical engineering.

If you like things related to building, surveying, and all those stuff go for civil.


If am in your situation, I will go for electrical engineering (That's my interest and fascination).
Education / Re: Student Expelled From University For Impregnating Female Lecturer by ANTONINEUTRON(m): 7:09am On Nov 27, 2019
Big fake news
Education / Re: Inside Life: Student Impregnates Female Lecturer In Nigeria by ANTONINEUTRON(m): 7:07am On Nov 27, 2019
fake news
Programming / Re: What Is Programming? Pls by ANTONINEUTRON(m): 7:54pm On Nov 25, 2019
Ausrichie:
Programming is simply the art of instructing the computer on what to do by writing programs with programming languages. The computer is just a dumb piece of metal if we can't make it do calculations Or solve problems. And when I say computers, I mean phones, tablets, desktops, laptops, calculators there are so many computers around us. Now how programming is done is simply through programming languages. But not to be mistaken the computer can only understand binary that is 1's and 0's but don't be scared a lot of programmers don't know 1's and 0's so that is where assemblers, compilers and interpreters come in.

Assemblers are software that convert assembly code into machine code. They make use of low level instructions; that is they perform hardware instructions things like calculations using the CPU, getting keys from the keyboard all those hardware stuff are low level programming (hardware programming). The only problem is that they vary on each CPU and operating systems have made it unbearable with their own system calls and I advice don't start with them but if you want to start the assembly languages out there are. X86 assembly, ARM assembly, X64 assembly these are the main ones around get a copy of an assembly programming book and get started.

Then compilers convert their respective programming languages into assembly or in rare cases machine code or bytecode. They are mid level and high level. High level language means they perform software instructions only while mid level is low level and high level jumbled together. These are much easier and I advice you to start with- C#, Java, Visual Basic. But you can also learn- C, C++ (mostly for making games plus they are mid level) , Java (most popular but fvcking slow), FORTRAN(don't try fortran it's an advice. It's obsolete that is not really used), Lisp etc.

Then Interpreters convert their respective programming languages into bytecode, assembly or in rare cases machine code. They are far more slower than compiled languages but sometimes in the hand of a very good programmer almost as fast as compiled languages. They are mostly high level I've never seen a mid level or low level interpreted language. There is Python and Ruby. I don't know any other one and since I love hardware programming and low level shit I don't use them.

I didn't include scripting languages because we'll I don't know what they turn into but they are used for client side web development- google it
There is JavaScript and VisualBasicScript bear in mind that JavaScript is not like Java but VisualS
BasicScript is a little like visual basic.
And note please. Assembly language is the most popular language because almost all compilers at the end produce assembly language.
If you want to learn simply go to edx and start a free course(but they can expire so just download the videos) and find a For Dummies book.
The first paragraph of this post is ok.
As for d remaining paragraphs, Don't stress ur brain thinking about it....


The ultimate thing you should focus on is improving your problem solving skills..
Not which programming language is best to learn or not....
Romance / Re: I Had Sex With My Wife Brother Fiancee Help Please by ANTONINEUTRON(m): 9:17pm On Nov 23, 2019
;Dthis is super story
Politics / Re: This Picture Shows Why Britain Handed Over Nigeria To The North In Anger by ANTONINEUTRON(m): 9:11pm On Nov 23, 2019
Chelseafan99:
It's beyond stupid that dumb illiterate fulani nomads that cobtributes nothing but poverty and violence wield political power over one of Africa's most modern and developed country.
people are really dumb tho!!

2 Likes

Education / Re: FG Scholarship Without Beneficiaries, Nigerians Call For Transparency by ANTONINEUTRON(m): 11:59pm On Nov 19, 2019
I am not even interested in this year's.
Government controlled stuff dey always get k-leg
Education / Re: Seplat Joint Venture 2019/2020 Scholarship Application Is Ongoing by ANTONINEUTRON(m): 11:51pm On Nov 18, 2019
Ceeblaq10:
[color=#006600][/color]
When did you get this message

1 Like

Phones / Re: How Facebook Bug Secretly Recorded Iphone Users by ANTONINEUTRON(m): 6:10pm On Nov 15, 2019
World of gathering data...
Programming / Re: Regular Programming Challenges With The Odd Money To Win by ANTONINEUTRON(m): 3:05pm On Nov 14, 2019
Advance Data structure is one thing local man will be learning next semester, and the way he'll focus on it.....

At this point. I throw in the towel. But I achieved something at least.
That last problem is a no go area for me. As for question.4, It's not clear to me.
1. Using java.

public class binaryProblem {
public static int getBase10Value(String num){
int len = num.length()-1;
String b = Character.toString(num.charAt(len));
Integer base = Integer.parseInt(b);
String newNum = num.replace(b,"" ) ;
Integer numberInItsBase = Integer.parseInt(newNum,base);
String numberInBase10 = Integer.toString(numberInItsBase,10);
return Integer.parseInt(numberInBase10);
}


public static void main(String[] args) {
String a = "102";
String b = "108";
String c = "1016";
int x = getBase10Value(a);
int y = getBase10Value(b);
int z = getBase10Value(c);
System.out.print(x+y+z);
}
}

Output: 47
Note: The program takes the last number 1016 as base 6.

2. option a is the answer. Because Unix timestamp starts counting at 1st, January, 1979

3.Using java

import java.util.ArrayList;
public class pointBetweenOddNum{
public static int getNextNumber(int currentIndex, ArrayList<Integer> arr){
int nextNum = 0;
if((currentIndex+1) != arr.size()){
nextNum = arr.get(currentIndex+1);
}
return nextNum;
}

public static ArrayList<Integer> getList(){
ArrayList<Integer> arr = new ArrayList<Integer>();
int num;
for(int i=1; i<1000; i++){
if(i<100 && i>9){
arr.add(i/10);
arr.add(i%10);
}else if(i>99 && i<1000){
arr.add(i/100);
int j = i%100;
arr.add(j/10);
arr.add(j%10);
}else{
arr.add(i);
}
}
return arr;
}

public static void main(String[] args) {
int count=0;
ArrayList<Integer> arr = getList();
for(int i=0; i<arr.size(); i++){
int next = getNextNumber(i,arr);
int current = arr.get(i);
int remainder = (current+next)%2;
if(remainder==0){
count++;
}
}
System.out.println(count);
}
}

Output: 1440

4. Not clear. Because all 1000th numbers have 1 in their binary representation.

5.Using java

public class test4 {
public static int getLength(int num){
int len = 0;
for(int i=1; num>2; i++){
int remainder = num%2;
if(remainder==0){
num /= 2;
}else{
num=(num*3)+1;
}
len=i;
}
return len;
}

public static void main(String[] args) {
int maxNum,maxNumLength;
int limit = 421337;
maxNum = 0;
maxNumLength = 0;
for(int i=10; i<limit; i++){
int len = getLength(i);
if(len>maxNumLength){
maxNum = i;
}
}
System.out.println(maxNum);
}
}

Output: 421336
6. There's time for everything in this life. Please after this competition ends explain how this problem can be solve.

Thank you.
Webmasters / Re: How The Recent Google Core Updates Will Affect Websites And SEO by ANTONINEUTRON(m): 8:37am On Nov 14, 2019
styless:
someone should help me build a blog like DNB Stories, please.

My budget is medium
let's talk.
send me an email @ antonineutron@gmail.com.

I have something for you
Programming / Re: Regular Programming Challenges With The Odd Money To Win by ANTONINEUTRON(m): 10:25pm On Nov 13, 2019
That last problem though....
Programming / Re: Programmers: At What Age Did You Start Programming? by ANTONINEUTRON(m): 7:08am On Nov 13, 2019
Started at a relatively young age <17

started with the usual HTML,css,basic JavaScript, and PHP. During which I created a web application which enable CBT test to be written online but couldn't deploy it.

But currently am loving Java and developing Android apps.

What is limiting me is no laptop.
Everything I have done is via my phone.

12 Likes

Programming / Re: Regular Programming Challenges With The Odd Money To Win by ANTONINEUTRON(m): 6:59am On Nov 13, 2019
wen are u posting the first challenge
Education / Re: Seplat Joint Venture 2019/2020 Scholarship Application Is Ongoing by ANTONINEUTRON(m): 10:27pm On Nov 12, 2019
Zerhraddeenx:
This is to inform the 2019 SEPLAT AND SNEPCO shortlisted applicants that, a whatsapp group has just been created for easy and convenient information sharing. If you're interested you can click on the following link or whatsapp 09036603644 to join the group.
pls it will be better ifu post dey link so that we can click it
Education / Re: 2019/2020 Seplat Undergraduate Scholarship Shortlisted Candidates by ANTONINEUTRON(m): 9:07am On Nov 11, 2019
who has taken the test?? Did you see your result after the test??
Education / Re: Sex For Grades: Kogi Federal Varsity Investigates 12 Officials by ANTONINEUTRON(m): 7:47am On Nov 11, 2019
ojonugwaisaac01:
THIS IS NOT TRUE as it conveys a fallacious details

FUL is my great Citadel of learning
Things of such has no place in FUL
It took me of a great delusion even to abscond to the fact that the event throbs mostly in my own department
You have no idea of things that happen in Nigeria universities...


Sex for grade is real.
most of those girls that are lackadaisical with their education are the ones that are involve.
They can greet lecturers in order for them to be noticed.
Education / Re: Top 10 Undergraduate Scholarship For Nigerian Students by ANTONINEUTRON(m): 7:42am On Nov 11, 2019
Stephaustin:
Who told you that ExxonMobil still offers scholarship in Nigeria?
They organized a scholarship program this year....
Education / Re: Seplat Joint Venture 2019/2020 Scholarship Application Is Ongoing by ANTONINEUTRON(m): 3:29pm On Nov 08, 2019
giwish:
30 questions, 45 minutes mostly gmat questions
snepco or seplat
Programming / Re: I Need Help!!!! by ANTONINEUTRON(m): 4:56pm On Nov 07, 2019
theultimatep3:
No
regex is the answer
Education / Re: What Was Your First GPA &now Your Current CGPA by ANTONINEUTRON(m): 12:44pm On Nov 07, 2019
started with 4.65.
currently on 4.52

1 Like

Education / Re: Just Now! Snepco/nnpc Shortlisted Successful Candidates by ANTONINEUTRON(m): 12:42pm On Nov 07, 2019
;.
Education / Re: Non Issuance Of Transcript By Olabisi Onabanjo University (OOU) by ANTONINEUTRON(m): 10:32am On Nov 06, 2019
poor record management.
maybe your paper don lost....

2 Likes 1 Share

Education / Re: Operating System Books To Download by ANTONINEUTRON(m): 10:29am On Nov 06, 2019
3. Operating System Concepts by Avi Silberschatz
The book I am using.
Celebrities / Re: Shan George Blasts Femi Branch: "May Your Children Beg Unclad On The Street" by ANTONINEUTRON(m): 3:50pm On Sep 18, 2019
The spinal cord surgery caused it.
A head surgery need to be done.

22 Likes 1 Share

Education / Re: Apply Guinesss Nigeria Undergraduate Schorlarship 2019 by ANTONINEUTRON(m): 10:44am On Sep 12, 2019
no computer science??

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (of 64 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 52
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.