Showing posts with label Technology. Show all posts
Showing posts with label Technology. Show all posts
[Latest Updates] This is what  FG & MTN negotiate..

[Latest Updates] This is what FG & MTN negotiate..



Following an eight month long arrangement, MTN has consented to pay N333 billion ($1.7 billion) to the central government over a space of three years.

The gathering, in an announcement on Friday, says it will likewise guarantee the posting of its shares in the Nigerian Stock Trade.

The concurred entirety is 33% of the first punishment MTN Bunch Ltd got.

MTN ascended as much as 21 percent in Johannesburg. It exchanged 16 percent higher at 143.50 rand starting 1:21 p.m, on track for the greatest addition since 2008.

The NCC, in October 2015, authorized MTN, which has the most endorsers in Nigeria, for declining to follow a mandate to separate 5.1 million dishonorably enlisted lines before the due date given to telecoms administrators in the nation.

In spite of the fact that the fine was in this way decreased by 25 for each penny to N780 billion, MTN Nigeria neglected to pay the punishment.

Phuthuma Nhleko, director of the gathering who resigned in the warmth of the emergency, drove the arrangement procedure.

"The relationship between MTN, the Nigerian government and the Nigerian Correspondences Commission has been reestablished and reinforced," he said in his renunciation letter.
Ventures On the most proficient method to Distinguish A Unique Telephone FROM A FAKE ONE

Ventures On the most proficient method to Distinguish A Unique Telephone FROM A FAKE ONE



Hi my kindred Gidi Perusers...

Thou Not everyone can distinguish a unique telephone from fake one, however with this minimal instructional exercise you are going to peruse you can recognize a unique telephone from a fake one...

Before you purchase another telephone, you should simply to take the telephone and dial *#06#, it will show the serial number or IMEI number which may be 15 digits or all the more however it must start with 35.

Presently check whether the number showed is the same with the number on the battery base.

On the off chance that its unique the numbers would be the same, If fake the numbers would be diverse.

You can check your telephone at this moment to know whether you are utilizing unique telephone or not...

Would YOU Like TO MAKE Aggravating FLASHERS PAY In the event that THEY ARE Irritating YOU, IF YES READ THIS

Would YOU Like TO MAKE Aggravating FLASHERS PAY In the event that THEY ARE Irritating YOU, IF YES READ THIS






Surmise, i Know you will need to peruse this *wink*

In the event that some individual is blazing you or exasperating you with glimmering and you need to make him/her think twice about it (PAY), Simply dial **21*171NUMBER OF THE DISTURBANSE (FLASHER) # and SEND.

From that point on if the individual attempt to aggravate you with blaze once more, his/her cash will be deduct.

To cross out simply dial ##21# THEN SEND.

#NOTE: For a few telephones ##21# intends to boycott every single approaching call.

Dont utilize these codes on the off chance that you dont comprehend what you are doing.

Java tutorial : How to write a program to show a test grade

Java tutorial : How to write a program to show a test grade

Importjava.util.*

Public class grade
{
Public static void main (string [] args),

{
Scanner input = new scanner (system.in),
Int score,
String grade,
System.out.println ("input the score "),
Score =input.next.int(),
If (score >100),
{Grade="invalid score "}
Else if (score >74),
{Grade="A"}
If (score>69),
{Grade ="AB"}
If (score >64),
Else
{Grade ="negative value "}
System.out.println("The grade is "+ Grade ),
}
}