Skip to main content

Posts

updated mat 419 test with corrections

Recent posts

MAT 419 SOLUTION

Q1a.                                                                    SOLUTION from the format of the matrix we can get our 7×7 adjacency matrix using this format:  │ a11 a12 a13 a14 a15 a16 a17│ │ a21 a22 a23 a24 a25 a26 a27│ │ a31 a32 a33 a34 a35 a36 a37│ │ a41 a42 a43 a44 a45 a46 a47│ │ a51 a52 a53 a54 a55 a56 a57│ │ a61 a62 a63 a64 a65 a66 a67│ │ a71 a72 a73 a74 a75 a76 a77│ Therefore:             │ 2  0  1  0  1  0  1│             │ 0  2  0  0  1  0  0│             │ 1  0  2  0  1  0  1│ A(G)= │ 0  0  0  2  0  0  0│             │ 1  1  1  0  2  0  1│             │ 0  0  0  0  0  2  0│             │ 1  0  1  0   1 0  2│ Q1b. Then C(v) is nothing but component of the graph. Then: C(v) = 3 then as you can see that we have two isolated vertices from our graph form by the above adjacency matrix which are V6 and V4 therefore V6 is a cut-vertex and V4 is also a cut-vertex while V1,V2,V3,V5 and V7 are vertex-cut.   Q2,Q3 and Q4 very soon by God will

2017/2018 NNPC/SNEPCo SCHOLARSIP

The NNPC/SNEPCo National Merit University Scholarship Scheme aims to promote academic excellence and improve the skills of young Nigerians. Applications are invited from qualified Nigerian undergraduates. Scholarship Eligibility Eligible Applicants must: · Be a citizen of Nigeria Currently be in their second year of full-time study in a Nigerian University accredited by the National Universities Commission (NUC) Have a minimum CGPA of 3.0 in a 5-grade system Not be a beneficiary of any other scholarship (National or International) Eligible groups Citizens of Nigeria ONLY Participating Institutions All accreditied universities in Nigeria Fields of study The merit-based scholarship is open to FULL TIME undergraduates studying any of the under listed courses in Universities within Nigeria: 1. Petroleum Engineering 2. Mining Engineering 3. Instrumentation Engineering 4. Pharmacy 5. Geophysics 6. Economics 7. Materials / Corrosion Engineering 8. Mechanical Engine

Mat 404 test solution

Q1. List all possible topologies on the set. X = {a,b,c}                                                                      SOLUTION . There are 29 distinct topologies on X these are: 1.{X,∅} 2.{X,∅,{a}} 3.{X,∅,{b}} 4.{X,∅,{c}} 5.{X,∅,{a,b}} 6.{X,∅,{a,c}}  7.{X,∅,{b,c}}  8.{X,∅,{a},{b,c}}  9.{X,∅,{a},{a,b}}  10.{X,∅,{a},{a,c}}  11.{X,∅,{b},{a,b}} 12.{X,∅,{b},{b,c}} 13.{X,∅,{b},{a,c}} 14.{X,∅,{c},{a,c}} 15.{X,∅,{c},{b,c}} 16.{X,∅,{c},{a,b}} 17.{X,∅,{a},{b},{a,b}} 18.{X,∅,{a},{c},{a,c}} 19.{X,∅,{b},{c},{b,c}}  20.{X,∅,{a},{a,b},{a,c}} 21.{X,∅,{b},{a,b},{b,c}} 22.{X,∅,{c},{a,c},{b,c}} 23.{X,∅,{a},{b},{b,c},{a,b} 24.{X,∅,{a},{c},{a,b},{a,c} 25.{X,∅,{a},{b},{a,b},{a,c}}  26.{X,∅,{a},{c},{a,c},{b,c}} 27.{X,∅,{b},{c},{a,c},{b,c}} 28.{X,∅,{b},{c},{a,b},{b,c}} 29.{X,∅,{a},{b},{c},{a,b}{a,c},{b,c}} Q1b. ConsiderS = {{a,b},{a,c}},whereX = {a,b,c} 1 obtain the topology generated by S(i.eĎ„(S)). Is S a basis?. SOLUTION HINT!!. To generate topology from S

SCHOOL OF MATRICULATION STUDIES. USMANU DANFODIYO UNIVERSITY, SOKOTO (UDUS). SALES OF ADMISSION FORM

SCHOOL OF MATRICULATION STUDIES. USMANU DANFODIYO UNIVERSITY, SOKOTO (UDUS). SALES OF ADMISSION FORM. Guidelines on online Application. I) Visit http://matric.udusok.edu.ng on your browser. 2) click on "Generate invoice", & a popup comes up. 3) On the popup window, click on "Process payment", Complete the form that shows up & click on "Generate invoice". You will be directed to Remita where you will print Your invoice. 4) Make copies of this invoice & take note of your RRR NO. proceed to any bank with your invoice & make payment. 5) After payment at the bank, come back to http://matric.udusok.edu.ng, and click on "Verify payment". 6) A popup window comes up, key in your invoice number (RRR NO) & click on the verify button. 7) Print your receipt. On the receipt, you will find your Application No and Password. 8) Now click on Application Login, enter your Application No & Password, click on Login to fill in y

CMP 202 TEST SOLUTIONS

CMP202 test Q3 Solution TEXT FILE 1001,Infinix,x600,2015 1003,Infinix,x551,2017 1002,Infinix,x601,2016 1005,Sony,XPeria,2009 1006,Galaxy,s7,2008 1007,Gionee,Tab,2017 1010,Tecno,CX,2019 ENTITY CLASS package Product; import java.util.*; public class ProductRecord implements Comparable <ProductRecord> { int pId; String pName; String pModel; int pYear; public ProductRecord(int pId, String pName, String pModel, int pYear) { this.pId = pId; this.pName = pName; this.pModel = pModel; this.pYear = pYear; } public String toString(){ return pId + "," + pName + "," + pModel + "," + pYear; } // ThIS WILL HELP TO SORT THE RECORD IN DESCENDING ORDER public int compareTo(ProductRecord record){ int var = record.pId - this.pId; if(var > 0){ return 1; } else if(var < 0) { return-1; } else { return 0; } } } MAIN CLASS package Product; import java.util.*; import jav