Skip to main content

Posts

list of Engineering Courses and colleges in India

This is a list of Engineering Courses found in India. I have show information as per my best collection you can leave new courses as a comments if its not found in this list. Aeronautical and Aerospace Engineering - This engineering course deals with the design, creation and operation of machines related to flying – planes, missiles, rockets, spacecrafts etc. Aerodynamics, avionics, propulsion, acoustics are subjects that are taught under this course. Agricultural Engineering – This branch of engineering focuses on the design and operation of tools, implements and machines that are used in the practice of agriculture. Computer Engineering – This engineering stream teaches about the design, development, manufacture and maintenance of computer components. Electronic and Electrical Engineering – This engineering course includes research, development, design, creation and maintenance of a diverse set of objects ranging from global Positioning Systems to semi-conductor chips u

Mumbai, Delhi top property investment destinations

New Delhi: India particularly, Mumbai and New Delhi are the foremost real estate market destinations,a recent study has shown. The ULI-PwC report titled ‘Emerging trends in Real Estate ® Asia Pacific 2011’, which surveys comments from 150 industry leaders across the Asia Pacific region, ranks. The survey brings to light the fact that residential real estate properties in Mumbai continue to maintain the growth momentum, as foreign investors still consider this market to be extremely viable. The survey ranks Mumbai at the third position, two notches higher than its previous position. The development potential for real estate remains vibrant and promising in Mumbai due to buying opportunities in retail, apartment and industrial sectors. Commenting on Mumbai’s favourable ranking, Jai Mavani, Executive Director - Real Estate and Infrastructure- Tax & Regulatory Practice, PwC India said: “India continues to enjoy a significant demographic dividend by virtue of millions of additi

Highly paid keyword list for blogger

Max CPC ($) Avg CPC ($) Keyword 520.52 97.44 domains yahoo 418.63 79.81 domain name yahoo 145.71 68.91 dc hair laser removal washington 119.63 66.15 law lemon wisconsin 135.94 51.14 hair removal washington dc 493.73 41.97 domain registration yahoo 262.02 40.36 benchmark lending 438.23 38.05 domain yahoo 330.50 37.86 yahoo web hosting 121.86 37.29 hair laser removal virginia 121.27 36.59 peritoneal mesothelioma 46.38 36.55 ca lemon law 81.58 34.13 best buy gift card 96.87 31.10 adverse credit remortgage 234.33 30.98 mesothelioma information 48.68 29.77 law lemon ohio 54.31 29.34 att call conference 83.22 29.10 insurance medical temporary 82.33 28.95 illinois law lemon 82.33 28.78 mesothelioma symptoms 60.86 28.51 angeles drug los rehab 36.88 28.26 personal injury solicitor 101.30 28.23 att go 61.47 28.03 accident car florida lawyer 159.00 27.11 google affiliate 90.48 27.11 at t wireless 172.60 26.31 100 home equity loan 46.72 26.28 mcsa boot camp 40.18 2

compare To Current Time in asp.net

compare To Current Time in asp.net public static bool compareToCurrentTime(string time) { time = convert12To24(time); int hr = DateTime.Now.Hour; int min = DateTime.Now.Minute; string current = ((hr < 10) ? "0" : "") + hr + ":" + ((min < 10) ? "0" : "") + min; if (time.CompareTo(current) >= 0) { return true; } else return false; }

convert time 24 To 12 in asp.net

 If you want to convert time  24 format  To 12  am pm form in asp.net then you can try following method. You can write this method in common class in asp.net program then you can call this function by passing time variable in function parameter. public static string convert24To12(string time) { if (time.IndexOf(":") == -1) return time; string appendstring = "AM"; string strHr = time.Substring(0, time.IndexOf(":")); string strMin = time.Substring(time.IndexOf(":") + 1); int intHr = Convert.ToInt16(strHr); if (intHr > 12) { appendstring = "PM"; intHr -= 12; } if (intHr == 12) { appendstring = "PM"; } else if (intHr == 0) { intHr = 0; } return ((intHr < 10) ? "0" : "") + intHr + ":" + strMin + "

Get Excel Column Name in excel sheet

Get Excel Column Name in excel sheet Just write in macro of excel in module this code Public Function ConvertToLetter(iCol As Integer) As String Dim columnName As String Dim modulo As Integer While iCol > 0 modulo = (iCol - 1) Mod 26 columnName = Chr(65 + modulo) + columnName iCol = Int((iCol - modulo) / 26) Wend ConvertToLetter = columnName End Function and call in your sheet

Navision Attain Programming

Navision Attain Programming 1.Evaluate : Date1 +(Date2-Date3) [for some given values of the variables] 2.How to remove the Request Form for a Data Item in a report (Property) 3.How Data are arranged for Indented Data Item(s) in Report 4.Use of Trans Header 5.In a report , the Left Mergin property is set to 1000. Later, while printing, in the page setup, the left margin in set to 15 mm. What will be the net left margin observed in the Print Out. 6.Which function is used to extract the sub string ‘In’ from the following string ‘Purchase Invoice’ 7.Identifier naming convention 8.Evaluation of arithmetic expression (make sure of the operator precedence and R->L/L->R rules) 9.Evaluation of logical expression (Using OR & XOR) 10.In a Data port,two data Item is used, the second one is Indented data Item. While exporting the Data, what will be the Hierarchy of Data exported? 11.Using a data port, data of a table are exported to a .txt file. The File Type property is set