Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,196,506 members, 7,961,570 topics. Date: Sunday, 29 September 2024 at 09:07 AM

GREATAWOG's Posts

Nairaland Forum / GREATAWOG's Profile / GREATAWOG's Posts

(1) (of 1 pages)

Phones / Re: B.social'2 Aw710 Smartphone Storms Naija Market With ICS by GREATAWOG(m): 2:24pm On Jul 26, 2013
i am enjoying the phone with data
subscription
Phones / Re: B.social'2 Aw710 Smartphone Storms Naija Market With ICS by GREATAWOG(m): 10:18pm On May 14, 2013
you can read about this phone on http://www.bephone.com/ .That is android phone for you, it needs to be on the network always in order to enjoy its effectiveness and this may make to consume more power. For instance if one is browsing with a laptop without connecting it to power,it will consume more power than using it locally. With Data plan subscription you can pick your either intra or yahoo emails set up on it at a go. Your email's attachment such as PDF,doc,excel,PPT can be read/viewed while one needs to purchase full version of 'document to go 3.0' from google play store in order to edit the attachment.This phone and techno D5 i think they have the same application. Most asha series of Nokia phones are manufactured from china while infinix phones are from France. stop condemning this phone.

Phones / Re: B.social'2 Aw710 Smartphone Storms Naija Market With ICS by GREATAWOG(m): 2:36pm On May 10, 2013
the applications on bephone and techno D5 are the same.... With data plan ,you will enjoy the phone...
Phones / Re: B.social'2 Aw710 Smartphone Storms Naija Market With ICS by GREATAWOG(m): 2:32pm On May 10, 2013
i am using this phone , i bought it last week from computer village for 16k, the price at slot is so outrageous.
you can get it at pointek ltd, ground floor second storey building after police container at no 12 otigba street from awolowo rd.

1 Like

Properties / Re: Apartment For Rent Lagos Nigeria - Flats For Rent Lagos by GREATAWOG(m): 1:13pm On Jan 11, 2011
I need a room/parlour apartment around ajegunle, orege, olodi apapa , apapa with well water in a clean environment. My budget is N72000/yr. Here is my access code 08057001784
Career / Re: ~is Oracle Better Than Ccna. . .if Not, Why The Gulf In Price?~ by GREATAWOG(m): 2:58pm On Jul 23, 2010
oracle is very interesting if u are in love with programming.u can send me ur email for me to send u some material on oracle database, form and report

1 Like

Programming / Re: What Dose It Takes For One To Be A Good Programmer? by GREATAWOG(m): 2:33pm On Jul 23, 2010
you have to possess a logic mind and start with a particular language as a beginner Qbasic is ok
Programming / Re: Where Can I Get Books On Programing In Lagos by GREATAWOG(m): 9:09am On Jul 08, 2010
which programming language do u need, i have soft copy on oracle database programming
Computers / Re: Oracle DBA Corner by GREATAWOG(m): 3:35pm On Jul 07, 2010
IF ANYONE IS INTERESTED IN SOFTWARE DEVELOPMENT ON ORACLE PLATFORM
CONTACT ME ON AWODEBONG@YAHOO.COM OR 08057001784
Programming / Re: Association Of Programmers In Nigeria by GREATAWOG(m): 3:18pm On Jul 07, 2010
IF ANYONE IS INTERESTED IN SOFTWARE DEVELOPMENT ON ORACLE PLATFORM
CONTACT ME ON AWODEBONG@YAHOO.COM OR 08057001784
Programming / Re: Association Of Programmers In Nigeria by GREATAWOG(m): 3:15pm On Jul 07, 2010
a guy ask for this ,


in qbasic,
if is not too late here is a small code without using array



rem to input data into file student_dat
CLS
OPEN "O", #1, "stud.dat"
10
CLS
INPUT "EXAMINATION NUMBER"; EXAM
INPUT "NAME OF STUDENT"; NS$
INPUT "SCORE IN MATHEMATIC"; MA
INPUT "SCORE IN ENGLISH"; E
INPUT "SCORE IN CHEMISTRY"; C
INPUT "SCORE IN PHYSICS"; P
WRITE #1, EXAM, NS$, MA, E, C, P
INPUT "ANY MORE DATA(Y/N)", ans$
IF ans$ = "Y" THEN 10
CLOSE #1


rem this is code to add more data into the file stud.dat while open in "O' will erase existing data
OPEN "A", #1, "stud.dat"
10
CLS
INPUT "EXAMINATION NUMBER"; EXAM
INPUT "NAME OF STUDENT"; NS$
INPUT "SCORE IN MATHEMATIC"; MA
INPUT "SCORE IN ENGLISH"; E
INPUT "SCORE IN CHEMISTRY"; C
INPUT "SCORE IN PHYSICS"; P
WRITE #1, EXAM, NS$, MA, E, C, P
INPUT "ANY MORE DATA(Y/N)", ans$
IF ans$ = "Y" THEN 10
CLOSE #1








REM THIS IS CODE TO PROCECESS A FILE CREATED IN QBASIC
OPEN "I", #1, "stud.dat"
CLS
PRINT
PRINT TAB(25); "ADEOLA GRAMMAR SCHOOL, IKEJA"
PRINT TAB(25); "=============================="
PRINT
PRINT TAB(33); "STUDENT RESULT"
PRINT TAB(33); "=============="
PRINT "=========================================================================="
PRINT TAB(2); "SNO"; TAB(7); "EXAMNO"; TAB(15); "NAME OF STUDENTS"; TAB(35); "MATHS"; TAB(42); "ENG"; TAB(47); "CHE"; TAB(52); "PHY"; TAB(57); "TOT"; TAB(63); "AVE"; TAB(70); "REMARK"
PRINT "=========================================================================="
10 INPUT #1, EXAM, NS$, MA, E, C, P
K = K + 1
TOT = MA + E + C + P
AVE = TOT / 4
IF AVE < 50 THEN
REM$ = "FAILED"
ELSE
REM$ = "PASSED"
END IF
PRINT TAB(2); K; TAB(7); EXAM; TAB(15); NS$; TAB(35); MA; TAB(42); E; TAB(47); C; TAB(52); P; TAB(57); TOT; TAB(63); AVE; TAB(70); REM$

IF NOT EOF(1) THEN 10

CLOSE #1
Computers / Re: Oracle DBA Corner by GREATAWOG(m): 10:35am On Jul 07, 2010
helllo guy, let us talk on how one can develop marketable application packages not only certifications
Computers / Re: Oracle DBA Corner by GREATAWOG(m): 10:27am On Jul 07, 2010
I think if one is interacting with database ,installed on various machine like four machine with database on each,from remote terminal. it will look like as if one it is interacting with those database on the same machine or remote terminal. The database may be named as ora01.ora02,0ra03 and so on.
But the configuration of TNS on the remote terminal will specify which machine one is connecting to.
eg
conn debo/debo@debodb.com .The connecting String debodb.com on the TNS of the remote terminal may specify connection to ora02 hosted by mchine 2.
Programming / Re: Where Can I Get Books On Programing In Lagos by GREATAWOG(m): 9:33am On Jul 07, 2010
what programming language do you need. if it is oracle pl/sql i can give you softcopy .you can contact me on 08057001984 or awodebong@yahoo.com
Software/Programmer Market / Re: Accounting Software For Microfinace Bank by GREATAWOG(m): 9:16am On Jul 07, 2010
i can assist u ,im into software development on oracle platform.im presently in lagos. u can reach me on 08057001784 or awodebong@yahoo.com

(1) (of 1 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. 18
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.