₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,330,955 members, 8,447,931 topics. Date: Sunday, 19 July 2026 at 10:51 AM

Toggle theme

Segsalerty's Posts

Nairaland ForumSegsalerty's ProfileSegsalerty's Posts

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

Tech JobsRe: Professional Python & Java Programmer Needed For A Big Contract Job by segsalerty(m): 11:06pm On Dec 14, 2011
[quote author=*dhtml link=topic=823940.msg9754289#msg9754289 date=1323768449]There is a job opening for one of our clients in the Telecoms sector for
the position of an IT VAS Technical Support.
A senior programmer that can work with Java and Python.
Working hours : 9am - 6pm
This is a 6 months contract and the salary is very attractive.

Read More[/quote]huh huh huh shocked shocked lipsrsealed
ProgrammingRe: Sharing My Ocmjd Certification Experience by segsalerty(op): 12:06pm On Dec 11, 2011
lolz, seee Mobinga shocked shocked,
u can give it a try now na, u can do it ! issokay? grin cheesy
ProgrammingRe: Sharing My Ocmjd Certification Experience by segsalerty(op): 11:42am On Dec 11, 2011
shocked
ProgrammingRe: Please Help Out With Java Program by segsalerty(m): 11:38am On Dec 11, 2011
lemme give u an idea of reading your file, and idea of hadling your user input
use
Scanner input = new Scanner(new File("name of the file.extension"wink);
int id = 1;//keeps track of your line id,  i think u wanted that in your prgram. right?
while(input.hasNextLine()){
//u need a condition to terminate this loop by telling user to type -1 at last line after they have entered the vehicles information finish
//so do this
String theLine = input.nextLine()
if(theLine == -1){
break;
}
//now u are good to go in reading your lines which has users data for each vehicle,  right?
//so say
String []parameters = theLine.split(", "wink;
//according to your Vehicle class constructor, u need the following ("try to add ---- int id", String aVin, String rentType, String amake, String amodel, int yr, String acolor,
//     double mile, double arentalPrice, boolean rentalS )
new Vehicle(id, parameters[0], parameters[1], parameter[2], parameter[3], ,  e.t.c, cast your int like Integer.parseInt(parameter[index]),  blah blah blah);
//u should know what to do with your vehicle object that u just initialize, maybe u have an array of it that u store each instance in,  as u wish
id++;
}//end of while loop

with this, i guess u shuld be able to read from file ,  sure, there are other approaches that works grin
Certification And Training AdvertsRe: A Certified Java Master Is Here: by segsalerty(op): 9:38pm On Dec 09, 2011
thanks bro !
ProgrammingSharing My Ocmjd Certification Experience by segsalerty(op): 6:49pm On Dec 08, 2011
So Glad to this Certification (Oracle Certified Master for Java standard edition 6 Developer) added lil to my Coding Experience which i think anyone else programming in JAVA can acquire in a short period of time. Its not hard, i swear, you can earn yourself this Certificate and Experience if you want, No Big Deal ! as Commended by Oracle sating that
"Congratulations! You have achieved the highest level of Java Certification one can achieve. You are among the
elite group of individuals who can call themselves a Java Standard Edition 6 Developer Certified Master. Your new
Java Standard Edition 6 Developer Certified Master credential is being processed. This credential will be mailed to
you at the address we have on file for you in your testing profile. Please check your profile at
http://certview.oracle.com for your most current mailing address.
Details of a passing score are not displayed in order to maintain test security. This score report is the only
information you will be provided.
On behalf of Oracle University, congratulations!"

Thank GOD i scored 373/400 which cut off mark is 320.

The main task of this assignment is as follows, lets discuss abt it !

[b]"This document tells you what you need, and what you must do, to submit your solution to the Sun Certified Developer for the Java 2 Platform programming assignment. Read it carefully before you begin work on the solution. This document contains strict guidelines about the way the work is to be performed. These guidelines ensure consistency and fairness. The application distribution is composed of: • This document • A URL to download a non-relational database file click here Be sure to maintain a backup copy of all files related to your project, including the distribution files, until you receive your final grade in case something is lost or corrupted in the process.
Mark item for review
Important Note About Automatic Failure Where this document uses the word "must" an absolute requirement is being described. If you fail to adhere to such a requirement, your assignment will be failed automatically, and without further evaluation. It is therefore imperative that you pay close attention to any statement using the word "must" in this document. Portions of your submission will be analyzed by software; where a specific spelling or structure is required, even a slight deviation could result in automatic failure.
Application Overview Background URLyBird is a broker of discount hotel rooms. They sell accommodations for business and pleasure travellers at short notice, helping hotels to fill rooms that would otherwise be left empty. They take bookings only within 48 hours of the start of room occupancy. Currently, URLyBird sells the rooms over the phone using a team of customer service representatives (CSRs). The CSRs interact with an aging custom-written application that has been drawing increasing criticism from the CSRs. In the future, URLyBird wants to move into Internet-based marketing, and hopes to be able to accept bookings direct from customers over the web. The company's IT director has decided to migrate the existing application to a Java technology based system. Initially, the system will support only the CSRs, although the hope is that this interim step will give them a starting point for migrating the system to the web. The IT director does not anticipate much reuse of the first Java technology system, but intends to use that system as a learning exercise before going on to a web based system. The company's IT department has a data file that contains the essential information for the company, but because the data must continue to be manipulated for reports using another custom-written application, the new system must re-implement the database code from scratch without altering the data file format. The new application, using the existing data file format, must allow the CSRs to generate a list of accommodations that match a customer's criteria. This is the project that you have been commissioned to implement. What you must do The following are the "top level" features that must be implemented: • A client program with a graphical user interface that connects to the database • A data access system that provides record locking and a flexible search mechanism • Network server functionality for the database system The work involves a number of design choices that have to be made. In all such cases, the following principles should be applied.
Clarity and Maintainability A clear design, such as will be readily understood by junior programmers, will be preferred to a complex one, even if the complex one is a little more efficient. Code complexity, including nesting depth, argument passing, and the number of classes and interfaces, should be reasonable.

08/04/2011 06:35 AM
Prometric Online Testing
2 of 6

You must not require the use of an HTTP server. You must not require the installation of a security manager. You must provide all classes pre-installed so that no dynamic class downloading occurs. You must use RMI over JRMP (do not use IIOP)
https://ibt1.prometric.com/users/candidate/taketest/item.asp?slug=5783,
Documentation The code itself should be as clear as possible; do not provide comments that do not add to the comprehensibility of the code. Awkward or complex code should have descriptive comments, and javadoc style comments must be used for each element of the public interface of each class. You must create a full suite of documentation for the classes of the completed project. This must be generated using the tool "javadoc" and must be in HTML format. Provide javadoc documentation for all classes you write.
You must provide basic user documentation. This should be sufficient to allow a user who is familiar with the broad purpose of the project to use the application. This documentation must be in one of these three formats: • HTML • Plain text (not a wordprocessor format) • Within the application as a help system.
Correctness Your project must conform to this specification. Features that deviate from specification will not receive full credit. You will not receive extra credit points for work beyond the requirements of the specification. Use of Standard Elements Use of functionality provided by the core Java classes will be preferred to your own implementation of that functionality, unless there is a specific advantage to providing your own implementation.
Overall Architecture Major Components The main architecture of the application must be a traditional client-server system. There are three key parts: the server-side data management system, the client-side GUI, and the network connection between the two. Non-Networked Mode The program must be able to work in a non-networked mode. In this mode, the database and GUI must run in the same VM and must perform no networking, must not use loopback networking, and must not involve the serialization of any objects when communicating between the GUI and database elements. The operating mode is selected using the single command line argument that is permitted. Architecturally, this mode must use the database and GUI from the networked form, but must not use the network server code at all. Network Communication Approach You have a choice regarding the network connection protocol. You must use either serialized objects over a simple socket connection, or RMI. Both options are equally acceptable. Keep in mind that networking must be entirely bypassed in the non-networked mode. Restrictions on RMI To avoid unnecessary complexity in the marking environment certain restrictions are placed on solutions that use RMI. Specifically:
The User Interface The user interface for this assignment must satisfy the following criteria: • It must be composed exclusively with components from the Java Foundation Classes (Swing components). • It must allow the user to search the data for all records, or for records where the name and/or location fields exactly match values specified by the user. • It must present search results in a JTable. • It must allow the user to book a selected record, updating the database file accordingly. Your user interface should be designed with the expectation of future functionality enhancements, and it should establish a framework that will support this with minimal disruption to the users
08/04/2011 06:35 AM
Prometric Online Testing
3 of 6

when this occurs.
package suncertify.db;
public interface DB { // Reads a record from the file. Returns an array where each // element is a record value. public String[] read(int recNo) throws RecordNotFoundException;
// Modifies the fields of a record. The new value for field n // appears in data[n]. Throws SecurityException // if the record is locked with a cookie other than lockCookie. public void update(int recNo, String[] data, long lockCookie) throws RecordNotFoundException, SecurityException;
// Deletes a record, making the record number and associated disk // storage available for reuse. // Throws SecurityException if the record is locked with a cookie // other than lockCookie. public void delete(int recNo, long lockCookie) throws RecordNotFoundException, SecurityException;
// Returns an array of record numbers that match the specified // criteria. Field n in the database file is described by // criteria[n]. A null value in criteria[n] matches any field // value. A non-null value in criteria[n] matches any field // value that begins with criteria[n]. (For example, "Fred" // matches "Fred" or "Freddy".) public int[] find(String[] criteria);
// Creates a new record in the database (possibly reusing a // deleted entry). Inserts the given data, and returns the record // number of the new record. public int create(String[] data) throws DuplicateKeyException;
// Locks a record so that it can only be updated or deleted by this client. // Returned value is a cookie that must be used when the record is unlocked, // updated, or deleted. If the specified record is already locked by a different // client, the current thread gives up the CPU and consumes no CPU cycles until // the record is unlocked. public long lock(int recNo) throws RecordNotFoundException;
// Releases the lock on a record. Cookie must be the cookie // returned when the record was locked; otherwise throws SecurityException. public void unlock(int recNo, long cookie) throws RecordNotFoundException, SecurityException;
https://ibt1.prometric.com/users/candidate/taketest/item.asp?slug=5783,
Server Required Interface Your data access class must be called "Data.java", must be in a package called "suncertify.db", and must implement the following interface:
08/04/2011 06:35 AM
Prometric Online Testing
4 of 6

}
https://ibt1.prometric.com/users/candidate/taketest/item.asp?slug=5783,
Any unimplemented exceptions in this interface must all be created as member classes of the suncertify.db package. Each must have a zero argument constructor and a second constructor that takes a String that serves as the exception's description. Any methods that throw RecordNotFoundException should do so if a specified record does not exist or is marked as deleted in the database file.
Network Approaches Your choice of RMI or serialized objects will not affect your grade, but no other approach is acceptable. In either case, the program must allow the user to specify the location of the database, and it must also accept an indication that a local database is to be used, in which case, the networking must be bypassed entirely. No authentication is required for database access.
Locking Your server must be capable of handling multiple concurrent requests, and as part of this capability, must provide locking functionality as specified in the interface provided above. You may assume that at any moment, at most one program is accessing the database file; therefore your locking system only needs to be concerned with multiple concurrent clients of your server. Any attempt to lock a resource that is already locked should cause the current thread to give up the CPU, consuming no CPU cycles until the desired resource becomes available.
Data file Format The format of data in the database file is as follows: Start of file 4 byte numeric, magic cookie value. Identifies this as a data file 4 byte numeric, total overall length in bytes of each record 2 byte numeric, number of fields in each record Schema description section. Repeated for each field in a record: 2 byte numeric, length in bytes of field name n bytes (defined by previous entry), field name 2 byte numeric, field length in bytes end of repeating block Data section. Repeat to end of file: 1 byte "deleted" flag. 0 implies valid record, 1 implies deleted record Record containing fields in order specified in schema section, no separators between fields, each field fixed length at maximum specified in schema information End of file All numeric values are stored in the header information use the formats of the DataInputStream and DataOutputStream classes. All text values, and all fields (which are text only), contain only 8 bit characters, null terminated if less than the maximum length for the field. The character encoding is 8 bit US ASCII.
Database schema The database that URLyBird uses contains the following fields: Field descriptive name Database field name Field length Detailed description Hotel Name name 64 The name of the hotel this vacancy record relates to City location 64 The location of this hotel Maximum occupancy of this room size 4 The maximum number of people permitted in this room, not including infants Is the room smoking or non-smoking smoking 1 Flag indicating if smoking is permitted. Valid values are "Y" indicating a smoking room, and "N" indicating a non-smoking room Price per night rate 8 Charge per night for the room. This field includes the currency symbol Date available date 10 The single night to which this record relates, format is yyyy/mm/dd. Customer holding this record owner 8 The id value (an 8 digit number) of the customer who has booked this. Note that for this application, you should assume that customers and CSRs know their customer ids. The system you are writing does not interact with these numbers, rather it simply records them. If this field is all blanks, the record is available for sale.
Deliverables Target Platform and Execution Throughout this exercise, you must use exclusively the Java 2 platform. You may develop your code using any implementation of the Java 2 platform, but the submission that you return must have been tested and shown to work under a production (not development) version of the Sun
08/04/2011 06:35 AM
Prometric Online Testing
5 of 6
https://ibt1.prometric.com/users/candidate/taketest/item.asp?slug=5783,

Microsystems' Java 2 platform and that platform must not have been superseded by a new production version for more than 18 months by the time you make your submission. You are permitted to use any IDE tool you choose, but you must not submit any code that is not your own work. The final program must have no dependencies on any libraries other than those of the Java 2 Platform. When you submit your assignment, each part (client and server) must be executable using a command of this exact form: java -jar [] Your programs must not require use of command line arguments other than the single mode flag, which must be supported. Your programs must not require use of command line property specifications. All configuration must be done via a GUI, and must be persistent between runs of the program. Such configuration information must be stored in a file called suncertify.properties which must be located in the current working directory. The mode flag must be either "server", indicating the server program must run, "alone", indicating standalone mode, or left out entirely, in which case the network client and gui must run. You must not require manual editing of any files by the examiners. Packaging of Submissions All elements of your submission must be packaged in a single JAR file. The JAR file must have the following layout and contents in its root:
• The executable JAR containing the programs. This must be called runme.jar. • The original, unchanged database file that was supplied to you. Note that you must keep a copy of the original database file supplied to you, and this must be the file you submit. The marking process will expect the exact same data without any changes. • A directory called code, containing all the source code and related parts of your project. You must create subdirectories within this to reflect your package structure and distribute your source files within those directories. • A file called version.txt. This must contain pure ASCII (not a word processor format) indicating the exact version of JDK you used, and the host platform you worked on. • A directory called docs, containing the following items at the top level:- These instructions.- A subdirectory called javadoc, containing HTML/Javadoc documentation for all classes and interfaces you are submitting.- A file called choices.txt that containing pure ASCII (not a word processor format) text describing the significant design choices you made. Detail the problems you perceived, the issues surrounding them, your value judgments, and the decisions that you made. This document should also describe any uncertainties you had regarding the project, and the decisions you made when resolving them.- User documentation for the database server and the gui client. If your user documentation is online then you may omit this file. However, if the documentation is not online, you must provide either a single plain ASCII (not word processor format) text document, which must be called userguide.txt, or multiple HTML files which must all be accessible from a starting point document that must be called userguide.html.
Marking Process The marking is done in three phases. First, software checks that overall structure and nomenclature conform to specification. Second the examiner runs the code ensuring that it functions correctly through the specified operations. If any automatic failures are noted at this stage, the marking process terminates and the assignment is failed. Provided the essential behavioral requirements of the assignment have been correctly implemented, the examiner proceeds to investigate the design and implementation of your assignment. This process is time consuming, and it is because this is done carefully and thoroughly that submissions take time to grade. The grading process is closely controlled to ensure consistency and fairness, and it is performed according to criteria detailed in the next section. At any time during this process, if an automatic failure is noted, the marking process terminates, and the assignment is failed. For any design choice concerning topics not specifically described in the requirements, marks are awarded for a clear and consistent approach, rather than for any particular solution. Design decisions must be described briefly but clearly in your
08/04/2011 06:35 AM
Prometric Online Testing
6 of 6



© 2011 - Certification
https://ibt1.prometric.com/users/candidate/taketest/item.asp?slug=5783,
comments. In addition to the submission, you will be required to take a written examination. This exam tests your understanding of your submission and asks you to justify a number of design choices embodied in that submission. Automatic Failures Where this document uses the word "must" an absolute requirement is being described. If you fail to adhere to such a requirement, your assignment will be failed automatically, and without further evaluation.
Marking Criteria Your work will be evaluated based on the following criteria. The minimum passing score is 320 out of a possible 400 points. General Considerations (100 points), Documentation (70 points), Object-oriented design (30 points), User Interface (40 points), Locking (80 points), Data class (40 points), Server (40 points)
When you have completed your assignment and your essay exam, you may submit your assignment to developer-submit_US@oracle.com. Your submission may be made by email. Make sure to include you Prometric ID when you make your submission. You have one year to complete your assignment and your essay. Assessors will take 4-6 weeks to grade our assignment and return results to you."[/b]

I want Comments and Discuss ontop this, Has anyone here done this before? lets share Experience too
Lets Ginger all ! grin grin grin grin
Signed
Mustafa Segun A
Oracle Certified Java Master
segsalerty@yahoo.com
ProgrammingRe: *~ Omo-to-dun Voted Programming Section Poster Of The Year *~ Congratulations!! by segsalerty(m): 9:52pm On Dec 07, 2011
@Fayimora, i no lost oo,
i just dey on a LOW-KEY ! tongue tongue tongue wink grin
But, I really Nominate myself !
ProgrammingRe: Nairaland Programming Language Tribal Wars. by segsalerty(m): 8:57pm On Dec 07, 2011
;d
ProgrammingRe: *~ Omo-to-dun Voted Programming Section Poster Of The Year *~ Congratulations!! by segsalerty(m): 8:49pm On Dec 07, 2011
I nominate myself ! grin
Certification And Training AdvertsRe: A Certified Java Master Is Here: by segsalerty(op): 8:45pm On Dec 07, 2011
I still dey here Kampe ooooo grin grin grin grin wink smiley wink cheesy grin
Where are my people ?
Certification And Training AdvertsRe: A Certified Java Master Is Here: by segsalerty(op): 2:24am On Nov 24, 2011
After u are done with ur OCJP if u like to go further for the OCMJD (Java Maste thingy) visit here
http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=321
for requirements wink
Certification And Training AdvertsA Certified Java Master Is Here: by segsalerty(op): 12:35am On Nov 24, 2011
Saying Hello to my fellow programmers. Upon all the shit i faced before Oracle finally graded me, I finally got the good news that am Certified as a Java Standard Edition 6 Developer Master. scored a very sweet mark! yummy , grin grin .
ProgrammingRe: Community Project(strictly Java) by segsalerty(m): 10:21am On Jul 08, 2011
uhmm , Fayimora and Nairaland , u are rocking ! Good job ! wink wink wink wink
ProgrammingRe: Java 7 Lauches On 7/7 (7th July) by segsalerty(m): 10:17am On Jul 08, 2011
Uhmm , its been long i enter Nairaland ooo, Nice talk. Thumbs up guyz, smiley smiley smiley smiley grin cheesy wink wink kiss kiss
Tech JobsRe: I Need A Programmer by segsalerty(m): 1:52am On Jun 02, 2011
Yap ! lipsrsealed lipsrsealed lipsrsealed lipsrsealed huh huh huh
Tech JobsRe: I Need A Programmer by segsalerty(m): 11:32pm On Jun 01, 2011
This ur project looks so much familiar,  u gave this thing to a dude in my sch, the guy has done this stuff for u to an extent before u extended ur requirements or whatever the case between u and the guy,  all coz the guy is too new to ask for UPFRONT before getting hands on this for u. Am i right or Wrong ?
This dudes name is Ade from Bells. U anonymously got his contact info from NL here when he posted his Hotel soft stuff like that,  i guess u actually picked him, Now, its another thingy ,  tongue tongue tongue tongue tongue tongue
ProgrammingRe: Beginners - Learn Android Programming by segsalerty(m): 10:14pm On May 24, 2011
i am liking this thread but dont think i enjoy or want to enjoy Mobile App dev. But, i can start liking it now if u guyz can GINGER me ! cheesy
I wanna learn ooo wink
ProgrammingRe: Post Your Ocpjp (scjp) Questions Here by segsalerty(m): 11:47pm On May 23, 2011
Otuabaroku:
^^^ Common guy, you do not need to be Java Champion to relate to those people you aspire to meet. All you need to do is develop a complex solution to solve complex problem that nobody has done before. You will be sprung to lime light and those your Java champions will be queueing up to meet you. Once again, what you can do is what matters not the certs you got.
another point
ProgrammingRe: The Story Behind Openvr, The Voters Registration Software by segsalerty(m): 10:53pm On May 23, 2011
kaion:
Really i can't believe the ignorance of some people on this thread, we just believe nothing good can ever come out of Nigeria and i say to thee please try change your mindset, see i wasn't part of the development team but was kindda close and believe me this guys slave day and night to make this thing work, i'm into software development and really understand what it means when you are working on a project day in day out to prove a point to a lot doubting thomases out there who think nothing good can ever come out of this country, whether you believe it or not, it is open source, was made free , was made by Nigerians and i think we all ought to be proud of them. They were working day and night even during the registration process just to make sure the registration is succesfull releasing series of patches and on e silly asshole that does not know the difference between a method and class is saying Jackshit all because you have a keyboard and internet access to go with it, a poor man will always criticise a rich man, ignorance !!!
Point ! grin U too chop from the money ! lipsrsealed
Naija , cheesy
Them do well well sha ! tongue
ProgrammingRe: Post Your Ocpjp (scjp) Questions Here by segsalerty(m): 10:47pm On May 23, 2011
SayoMarvel:
You don't know where I'm going, you don't know what I'm going to do and you don't know why I expend time, energy and resources to get this certs so you can't say that academic/professional certificates won't help. The usefulness of certs depends on why you prepare for them in the first place. I never said I prepared for them to enhance job opportunities (though its part of it anyway).

I suggest you read my last post.Some certs give you good professional habits, fill holes in your learning, give you insights into alternative solutions to a problem you might have been solving using a more tedious approach. Except for the cram and pour guyz, preparing for a cert will definitely enhance your knowledge.
And moreover there are some contacts you will never make without some certs. If you are not an OCP, you will never be able to use our members only website, if you are not an OCM, by next month by God's grace I will join the elite world of Oracle Certified Masters and meet people you may not be able to meet if you're not OCM. Java champions (composed of less than a hundred people worldwide) have their members only site, if you're not a Java champion, it may be difficult to establish a good relationship with these people (though Java Champ is not a cert) and you can't become a Java Champ without first being an Oracle Certified Master (Java Developer or Enterprise Architect). Food for thought.
grin now i grab u friend , i have been using my mobile to post all these while thats why i havent talk much, NOW, i had to use a dude's PC,
Bros, dont get it twisted, do u want people to worship u coz of ur cert ? is that why u created this thread? Post Your Ocpjp (scjp) Questions Here ? u think we or maybe i will start biting my fingers and knodding my head to the wall coz i havent made use of the java.io.Externalizable interface in the java api doc? please, and please, that doesnt make u a CHAMP. there are some dudes that have been coding JAVA since them secondary sch, i had my SCJP whatever 2009 with SQL Excpert 2010 when i just thought of playing with Certs . Her, i have been coding far far since before then. U know what? i have got myself involved in so many Software Dev projects. as an undergraduate, i have met so many mad programmers which makes me be a student member of my school ICT team, ouch, at my level, i registered for this OCM thing about 2 months ago which my other dude in sch happened to be the one that Gingered me by all means for it . should have done it for this kinda PRIDE of urs if i wanted to since 2009 that i was qualified to.
You see, we all wish u the best in ur endeavour. but, dont get Cert of Experience or whatever u think u have Billions of it coz u expect PEOPLE to value u so higher or WORSHIP u, Damn, i have some kind of young dudes in my sch department that i keep Gingering to be Crazy programmers and Developers. men, no think am , people are very good than u think. Just keep to urself.
Dont let this thread go too far than this.

@fayimora
U make sense with ur comment. This dude really expect us all to start to dey bow for his cert. I thought as much when i saw this thread title, the thread was going to another dimension at first but the dude had to drive it back to where he wanted it to belong. Wheather u want to travel out with ur cert or not, doesnt concern us. I have an undergraduate dude in my sch that has written his CCIE exams and going for his LAB in few months time, not just him, so many people with Mad CERTS , its just nothing to be creating a thread about. Its just PAPARAZY !. okay? wink
ProgrammingRe: Post Your Ocpjp (scjp) Questions Here by segsalerty(m): 7:55pm On May 22, 2011
SayoMarvel:
2007, roughly four years now.
The certs are not just mere formality and if you want to work for many of these BIG companies before you start your own, certs may really help you. Check charms website, they asked for a 2:1 in engineering, SCJP (SCJD an added advantage). I have an accounting guy with SCJP and SCWCD and he's now in Etisalat. Many more,
If dat long u ve started. getting scjp, passing scjjjjxzz shouldnt be freaking to u. Oh, get employed by chams, etisalat? U self know this our country sucks when it comes to job offers by all these firms that we think they pay too well. thats not d key to show a programmer is successful.

me? All these cert is just for the title to encourage those who is willinh to program someday
ProgrammingRe: Post Your Ocpjp (scjp) Questions Here by segsalerty(m): 4:19pm On May 22, 2011
SayoMarvel:
Thumbs Up! I do hope you have a rock-solid design knowledge of the whole stuff. Don't just jump into coding please. Copy?
grin lolz, actually, i never thought this kinda of thread can exist coz i didnt actually see anything of value on all tjese certs other than formality and paparazy. all sha, its nt really a test of one's capability. So, GOD help us pass am sha. so tat money no go waste.

one quick question. when did u start coding java?

L8r
ProgrammingRe: Post Your Ocpjp (scjp) Questions Here by segsalerty(m): 11:53am On May 22, 2011
Uhmm, i see. thought d deadlin ish isnt meant to affect us ni. nw i've got to start as soon as summer starts nxt 2 wks.
ProgrammingRe: Post Your Ocpjp (scjp) Questions Here by segsalerty(m): 11:52pm On May 21, 2011
SayoMarvel:
@naija_swag #gbayi That's it! You don't need dumps. Okay if you use dumps to pass any OCA/OCP exam, what happens when you apply for an OCM (Java or DBA) where you have to complete a project on your own or travel on site to take a full-day database design practical? You fumble, you fail and you waste your money, period! If you use dumps to pass the CCNA/CCNP, what happens when you get to CCIE where you have to travel to take the 8-hour "Almighty Lab?" You fumble, you fail, you waste your exam money, you waste your travel expenses and worst of all, if you fumble in an extremely bad way, Cisco can have all your previous certificates withdrawn! I've heard of several such cases.
When I took the Programmer Exam (Java), My test admin (who already sent me dumps like a month prior to when I took it) asked me during the exam "are the dumps working?", I replied "I didn't use the dumps." He was surprised and in his mind I could see he was thinking that I would fail. When each question came he expected me to recognize them, pick my answer an then press "next" but I thought carefully (and performed calculations where necessary) before making my choice. At the end of the exam I passed and he looked at me and said "If you continue like this, in a year from now, you will be a don." Those were exactly the words he used. And he was right. Now I'm taking the OCM (where you have to create your own mini database management system from scratch to work with a legacy database file, create your own network server from scratch to support multiple access from clients to the database, handle database issues associated to concurrent access, create GUI clients with which users can manipulate the database both locally or remotely from anywhere in the world) and it is quite easy for me. You will NEVER pass that with dumps and in fact, there are no dumps for the OCMJD exam. What will be inside the dumps?
Nice spirit,
I and a friend of mine already have our assignment questions (OCMJD) for abt 2 months now huh lazy us havent done a bit of it yet, kinda busy with other stuffs. to me , certification isnt the real point coz we never even can tell what Oracle/Java is up to concerning this assignment thing (looks simple) as far as all the MUST demands are met and NO PROVING *** I TOO KNOW **, well am planning to start mine this summer. I dnt know of my friend . we are just too busy. grin We still have 10months left to submit the assignment. So, no biggie. except for this Prometric to Pearson VUE issh that arrised like 2weeks ago now.

Hey hey , let me ask, did u register ur OCMJD with Prometric , if yes? wat do u think about the email sent to u by Oracle and as a result, when are u planning to submit this assignment , how far have u gone self ? wink wink wink
ProgrammingRe: The Story Behind Openvr, The Voters Registration Software by segsalerty(m): 10:45am On May 21, 2011
Acutex:
bro ure speaking like someone with a hangover from adulterated alcoholic bevs. Sleep on joor! And when u come out of your self-induced locoism, U should edit ya post. How did u even manage to run a p.C? No offence oh!
imagine this response but no p. i already said mind and intelligent ones will find meaning in it.
look at the time i poted the msg. i was already asleep whn i read the thread. okay?
ProgrammingRe: The Story Behind Openvr, The Voters Registration Software by segsalerty(m): 4:02am On May 21, 2011
we just like to dey decieve ourselves for this country , i tire ooo huh
These team members are the guyz that shop and looted this shit. I very much guess the company got registered when they were awarded this contract to INSTALL THIS OPEN SOURCE APP NOT DEVELOPED BY THEM , I checked them site http://www.openvr.org/ They sharply built this shit up during this ROBBERY with them and JEGGA. What other products have they developed? What other pages can u see working on the site ? SHIT! Nigerians will sha never open eye, I guess they have one kind PLAN B which is the reason this Thread pops up. Shai, C'MON everybody, are we still in the Prehistorical Age ni (Game -- Empire Earth) huh? The whole Electronic Vote, did it work ? Did they elctronically count the vote? This data capturing ? u think they use it? am very damn sure its the PAPPER rubbish register that they used to compile the voters list, I kuku didnt register and didnt Vote. Immediately i see and observed how the whole election thing will run , i was sad sad.
Well, let me just no talk much,

Good job for u guyz anywayz, atleast, u must have technically done some Holla Hoops along side with this Software Integration for INEC lipsrsealed lipsrsealed
Nairaland GeneralRe: The Programming Section Of Nl Is Now Bloody Worthless by segsalerty(m): 3:11am On May 21, 2011
uhmmm huh Interesting. Shouldnt be here but am just gonna pop in and share my lil observation.
@Dell Net, u shld place urself way more higher than this u are up to with Fayi. Thought u ve started writting codes back in the 1290 BC, since someone like this Facebook guy is small to u, how come Fayi now look too Gigantic to u enough to down-grade? its bad programming practice . lolz shocked grin grin
@fayimora, I would have nominated you if this MOD thing is based on Nominations, just try to sit on the fence and watch. Let it be done in our way (Blacks Way) u shldnt be new to this. so, whether u re a MOD here or NOT doesnt stop u from contributing to support and help those who find NEED in it.

******************just walked away grin grin
ProgrammingRe: You Will Surely Want To See This by segsalerty(op): 10:42pm On May 18, 2011
lolz, just free me and dey look me dey go oooo !
Thank GOD the conflict is OVER ,
so, can we talk about the APPLICATION now?
ProgrammingRe: You Will Surely Want To See This by segsalerty(op): 3:04pm On May 16, 2011
Lolz, grin nawa oo
ProgrammingRe: You Will Surely Want To See This by segsalerty(op): 1:24am On May 16, 2011
Coldish:
@Mr dell

Shut up my friend.
shocked Ashh
Nobody knows one cool thing you have done thats better than zucks facebook.
huh Uhmm, ***thinking*
Your problem is your rubbish ego. So if you are not using facebook because you r just jealous 'cus a young lad who you started programming before is greater than you now.
angry is this right?


My friend you dont have the capability to be professional as far as you think with your silly ego.

Look at you talking about 'newbies' as if you were never one. Asshole, i am no newbie in programming but i'd love to be one anytime any day as far as i love the new stuff. We are all newbies to every new idea we come up with.
FACT cool

Stop making noise, test the app. Or go hug transformer.
grin grin grin grin grin grin cant stop laughing ooooo !


This post is just UNCOMMENTABLE , lolz smiley

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