Kode12's Posts
Nairaland Forum › Kode12's Profile › Kode12's Posts
1 2 3 4 5 6 7 8 ... 28 29 30 31 32 33 34 35 36 (of 53 pages)
kode12: |
We have available a wide range of educational learning aids and equipment. Call us today for more information. Tel: 07061925758 Email: info@candelanetworks.com.ng |
We have available a wide range of educational learning aids and equipment. Call us today for more information. Tel: 07061925758 Email: info@candelanetworks.com.ng |
We have available a wide range of educational learning aids and equipment. Call us today for more information. Tel: 07061925758 Email: info@candelanetworks.com.ng |
hadizadeezy:I think you are wrong here. It isn't about the fees, its about accessing quality education within the shores of the country. Why travel outside if covenant university which is Nigerian can offer the same quality? If the government pays more than just lip service to improving the quality of education in Nigeria, imagine the thousands of students that'd rather be schooled here than taken abroad and think about what boost such earnings will do to the economy. Do you have any idea how much is lost of tuition for overseas education pa.? His being a public office holder, does not prevent him from giving his kid the best education available, choosing to do it within the country, is a good case of leading by example. If you don't agree its, that's downright hypocrisy. |
Send us a mail for sales, lease or a quote today. |
We @Candela Networks are pleased to announce, the debut of our range of digital learning equipment. We now have available, interactive digital whiteboards,digital podiums, LED Interactive Flat Panels,All-In-One Digital cabinets etc. These equipment are suitable for all kinds of schools and training institutions, boardrooms, conference halls, hospitals etc. For enquiries: contact info@candelanetworks.com.ng Tel: 07061925758. WhiteBoards Features Customizable Floating Toolbar Hand writing recognition Variety of digital inks Export notes to various formats support of Widows,Mac and Linux Large Interactive Area Plug and Play Finger or stylus operated Specifications Active Area Diagonal: 79" | 89" | 96" Available Aspect Ratio: 4:3 | 16:10 |16:9 Input Mechanism: Infrared Ray Shading Detection System Input Method: Finger | Pen | Pointer Finger Touch Accuracy: 1mm Response Time: 6ms Warranty: 2 Yrs Optional Accessories: Wireless Module | Sound Bar | Mobile Stand | We also have in stock general IT equipment such servers, communications systems, VOIP phones, Routers, Switches etc. We are channel partners for more 20 OEMS and will always deliver the most cost effective technologies everytime.
|
We @Candela Networks are pleased to announce, the debut of our range of digital learning equipment. We now have available, interactive digital whiteboards,digital podiums, LED Interactive Flat Panels,All-In-One Digital cabinets etc. These equipment are suitable for all kinds of schools and training institutions, boardrooms, conference halls, hospitals etc. For enquiries: contact info@candelanetworks.com.ng Tel: 07061925758. WhiteBoards Features Customizable Floating Toolbar Hand writing recognition Variety of digital inks Export notes to various formats support of Widows,Mac and Linux Large Interactive Area Plug and Play Finger or stylus operated Specifications Active Area Diagonal: 79" | 89" | 96" Available Aspect Ratio: 4:3 | 16:10 |16:9 Input Mechanism: Infrared Ray Shading Detection System Input Method: Finger | Pen | Pointer Finger Touch Accuracy: 1mm Response Time: 6ms Warranty: 2 Yrs Optional Accessories: Wireless Module | Sound Bar | Mobile Stand |
|
spiich007:You know why you're this pained? Because you and your mercenary know I'm being honest here. And I've been very nice and polite in answering you all out of respect not for you but for your business, because i'm a business man myself and i don't spoil other people's business. If you think you have half of my experience in IT both in industry and academia, show proof of your claims let's see and i'll counter each of them. Fucking hungry man with your ancient laptop trying to find someone to pass your shit onto. Keep stretching it, lets see how long your advert will stay up |
Androidking:Lol.Are you sure OP did not contract you for this defense? I no follow you quarrel oh Oga. All the same, the processor specs,number of cores,hyper threading capabilities,L2 and L3 cache sizes etc. would ultimately determine,that's the point not the core i7 badge. One love |
OP I don't mean to spoil your market oh, but I dont think it would be fair if I don't point out to your prospective buyers that this is actually a 2nd or 3rd generation core i7 and a modern core i3 of say 6th generation would be a lot faster. So y'all compare carefully before purchasing. Sorry OP. |
what nonsense, how can an Oba, who is supposed to be the reps of the gods and ancestors be a pastor. And another mere commoner is placing his hands on his head in the name of coronation abi ordination. This is just bullshit, the Yoruba traditional stool is a joke in its entirety. |
EZEB1:You can use Odoo. Odoo is open source and has great support. It covers accounting, inventory management,warehousing and alot of other functionalities. You'll require experts for the setup although and a dedicated PC or available server. Odoo is lightweight and everything works from your browser. Quote if you need more information. |
You need to get a switch, if you're mifi does not have ethernet ports. You'll need to use cables to connect the 4 computers to the switch, then connect the mifi to the uplink port of the switch. |
sunnysunny69:When someone takes you as a younger sister or sibling and you both live in the same house, those are the things you ought to do,even without being told, or won't she do those things in her own home? Its only natural and its in the normal in the African culture so no big deal. |
Airforce1:I'm not a doctor or anything, but just go and watch these two movies: Code Black and House MD |
bet9ja:Each code is about 200 lines thats the problem |
To all C++ gurus in the house please help, I have been battling with this project for a while but i cant seem to get my head around it. I am learning C++ and i have an assignment to extend the functionality of some codes but i cant seem to understand the question or how to go about achieving it. Any help in doing this will be greatly appreciated. Attached are the codes that should be extended and the assignment. # include <iostream> // An header file for I/O operations using namespace std; // For Uniqueness class Date { int day; char * month; int year; // class attributes: they are private by default public: void ManageDate(int d, char* M, int y) //// initialization of actual parameters { day=d; month=M; year= y; } Date() //default constructor { day=0; month=""; year=0; } Date(int D, char* m, int Y) { day=D; month=m; year = Y; } int getDay() { return day; } int getYear() {return year; } char * getMonth() { return month; } }; class Student { //////////// Class Attributes Starts from Here //////////// char * FirstName; // Non-static variable string Surname; int Age; static int Level; // A static variable Date * DOB; // An instance of class Date as an attribute of class Student /////////////// Class Attributes Ends Here /////////////// // The class attributes are public by default//////// public: //// change of access mode modifier from private to public Student(int D, char* m, int Y):DOB(new Date(D,m,Y)) { FirstName=""; Surname=""; Age=0; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } Student(char * FName,string S, Date * D) //// constructor with one argument/parameter { FirstName=FName; Surname=S; DOB=D; Age=10; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } Student(char * FName, string SName,int D, char* m, int Y): DOB(new Date(D,m,Y)) //// constructor with two arguments/parameters { FirstName=FName; Surname=SName; Age=0; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } Student(char * FName, string SName, int age) //// constructor with three arguments/parameters { FirstName=FName; Surname=SName; Age=age; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } void SetFullNames(char * FName, string SName) { FirstName = FName; Surname = SName; } void SetAge(int age) { Age=age; } /////// User-defined functions to initialize class attributes char * GetFName() { return FirstName; } string GetSName() { return Surname; } int GetAge() { return Age; } int GetLevel() { return Level; } /////////////// User-defined functions to return initialized class attributes ////////////// to the caller void displayFullName() { cout<<GetFName()<<" "<<GetSName()<<endl; } void displayParameters() { cout<<GetFName()<<endl; cout<<GetSName()<<endl; cout<<GetAge()<<endl; cout<<GetLevel()<<endl; } Date *GetDate() { return DOB; } }; int Student :: Level = 100; // Initialization of class variable # include <iostream> // An header file for I/O operations using namespace std; // For Uniqueness class Person { class Student { class Date { int day; char * month; int year; // class attributes: they are private by default public: void ManageDate(int d, char* M, int y) //// initialization of actual parameters { day=d; month=M; year= y; } Date() //default constructor { day=0; month=""; year=0; } Date(int D, char* m, int Y) { day=D; month=m; year = Y; } int getDay() { return day; } int getYear() {return year; } char * getMonth() { return month; } }; //////////// Class Attributes Starts from Here //////////// char * FirstName; // Non-static variable string Surname; int Age; static int Level; // A static variable Date DOB; // An instance of class Date as an attribute of class Student /////////////// Class Attributes Ends Here /////////////// // The class attributes are public by default//////// public: //// change of access mode modifier from private to public Student() { } Student(int D, char* m, int Y):DOB(D,m,Y) { FirstName=""; Surname=""; Age=0; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } Student(char * FName, Date D) //// constructor with one argument/parameter { FirstName=FName; Surname=""; DOB=D; Age=0; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } Student(char * FName, string SName,int D, char* m, int Y):DOB(D,m,Y) //// constructor with two arguments/parameters { FirstName=FName; Surname=SName; Age=0; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } Student(char * FName, string SName, int age) //// constructor with two arguments/parameters { FirstName=FName; Surname=SName; Age=age; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } void SetFullNames(char * FName, string SName) { FirstName = FName; Surname = SName; } void SetAge(int age) { Age=age; } /////// User-defined functions to initialize class attributes char * GetFName() { return FirstName; } string GetSName() { return Surname; } int GetAge() { return Age; } int GetLevel() { return Level; } /////////////// User-defined functions to return initialized class attributes ////////////// to the caller void displayFullName() { cout<<GetFName()<<" "<<GetSName()<<endl; } void displayParameters() { cout<<GetFName()<<endl; cout<<GetSName()<<endl; cout<<GetAge()<<endl; cout<<GetLevel()<<endl; } Date GetDate() { return DOB; } }; //////// end of class student Student UniStudent; string Address; public: Person(Student U, string add):UniStudent(U) { Address = add; } Person(char * FName, string SName,int D, char* m, int Y, string Add):UniStudent(FName, SName,(D,m,Y)) { Address=Add; } string GetAddress(){return Address;} Student GetStudent(){return UniStudent;} void display() { UniStudent.displayParameters(); cout<<GetAddress()<<endl; } }; int Person::Student :: Level = 100; // Initialization of class variable main() { Person person1("Bayo","Lawal",1,"April",89,"lagos" ;person1.display(); } # include <iostream> // An header file for I/O operations using namespace std; // For Uniqueness class Person { class Student { class Date { int day; char * month; int year; // class attributes: they are private by default public: void ManageDate(int d, char* M, int y) //// initialization of actual parameters { day=d; month=M; year= y; } Date() //default constructor { day=0; month=""; year=0; } Date(int D, char* m, int Y) { day=D; month=m; year = Y; } int getDay() { return day; } int getYear() {return year; } char * getMonth() { return month; } }; //////////// Class Attributes Starts from Here //////////// char * FirstName; // Non-static variable string Surname; int Age; static int Level; // A static variable Date * DOB; // An instance of class Date as an attribute of class Student /////////////// Class Attributes Ends Here /////////////// // The class attributes are public by default//////// public: //// change of access mode modifier from private to public Student() { } Student(int D, char* m, int Y):DOB(new Date(D,m,Y)) { FirstName=""; Surname=""; Age=0; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } Student(char * FName, Date *D) //// constructor with one argument/parameter { FirstName=FName; Surname=""; DOB=D; Age=0; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } Student(char * FName, string SName,int D, char* m, int Y):DOB (new Date(D,m,Y)) //// constructor with two arguments/parameters { FirstName=FName; Surname=SName; Age=0; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } Student(char * FName, string SName, int age) //// constructor with two arguments/parameters { FirstName=FName; Surname=SName; Age=age; Level = 150; /* This is an assignment statement for class variable Level A class variable can be reassigned a value in the class But the initialization must be done outside the class. */ } void SetFullNames(char * FName, string SName) { FirstName = FName; Surname = SName; } void SetAge(int age) { Age=age; } /////// User-defined functions to initialize class attributes char * GetFName() { return FirstName; } string GetSName() { return Surname; } int GetAge() { return Age; } int GetLevel() { return Level; } /////////////// User-defined functions to return initialized class attributes ////////////// to the caller void displayFullName() { cout<<GetFName()<<" "<<GetSName()<<endl; } void displayParameters() { cout<<GetFName()<<endl; cout<<GetSName()<<endl; cout<<GetAge()<<endl; cout<<GetLevel()<<endl; } Date* GetDate() { return DOB; } }; Student * UniStudent; string Address; public: Person(Student * U, string add):UniStudent(U) { Address = add; } Person(char * FName, string SName,int D, char* m, int Y, string Add):UniStudent (new Student(FName, SName,(D,m,Y))) { Address=Add; } string GetAddress(){return Address;} Student * GetStudent(){return UniStudent;} void display() { UniStudent->displayParameters(); cout<<GetAddress()<<endl; } }; int Person::Student :: Level = 100; // Initialization of class variable
|
This entire Tboss family are just a bunch of opportunists trying to ride to fame on their sisters back. I mean, what's all these rant for? To even think that its a guy, thats making all these noise. Your sister was not raped,what happened to her although wrong,happens on a daily basis and you dont see the victims shouting their heads off. All those women that have been tapped inside danfo and on queues, have they died? I guess they just want the Kemen guy to just fizzle out of existence, I'm sure that would make them happy. News outlets need to let this BBNaija matter die please,its becoming a pain. |
I have new OTG Flash drives for sale. High Speed,High quality 3.0 USB Flash Drives. 8GB = 2500 16GB = 3000
|
na wa oh
|
Wow OAU topping the list
|
Cool
|
It's a cool thing when a woman believes in you completely.did the same thing with my girlfriend but she knew outright that I was lying,she was just laughing over and over. |
If a drone made from such a heavy/dense material like wood could be made to fly by this dude, he really should be given access to better materials and equipment, i'm sure he definitely will do better. |
Both are very important but you'll need both because a certificate alone might get you a job but your career ceiling won't be very high because in most organizations especially in Nigeria there are certain levels and cadre you won't be able to go beyond without a degree, and someone with a degree and less practical knowledge might come and be your boss,but a combination of both will give you a solid edge |
Sunnylink:bros abeg help me confirm where they sell @this price in Ilorin. I highly interested. |
In the networking and IT world generally, Cisco networking devices are trail-blazzers but then their prices are usually so high that they become sort of last resort for situations where no other alternative is suitable. Over the last few years thouugh, Huawei has come up with its own line of switches and routers that run on very similar commands as the Cisco devices,but the cool part is that they sell for a fraction of the cost of Cisco's. I have had few encounters with these devices but mostly at Telco sites, I think Telcos use them these days because they have some really good sales plans that go aloong with their devices. So networking experts whats your take? do you think Huawei is the way to go over high-speed, HA networks for private companies? considering costs and other factors will you opt for a Huawei device? |
1 2 3 4 5 6 7 8 ... 28 29 30 31 32 33 34 35 36 (of 53 pages)
;