A formal perimeter refers to an identifier that is used in a method to stand for the value that is passed into the method by a caller. An actual perimeter on the other hand refers to the actual value that is passed into the method by a caller.
Remarks in any computing language are so programmers can make comments in the code. The comments only help programmers, and do nothing for the program or the end users. Comments are not code and don't do anything to the program. They are just a way for programmers to make little reminders about what the code does.
How do you prepare for Dot net certification?
Dot net is most popular programming language for Microsoft .NET Framework. You can go through from the book . Just see professional book by Wrox. The best way is also for industrial training and more you should go through practical often. Now a day online classes are also available.
How should you Swap 2 numbers in a single line?
Swapping two values in a single statement is made possible through a series of three XOR/assign operations, alternating the operands.
Consider the following declarations:
int x = 0;
int y = 1;
The following statement will swap the values of x and y:
x ^= y ^= x ^= y; // swap
The same statement implemented as a function:
void swap(int &x, int &y){ x ^= y ^= x ^= y; }
How do you make a pop-up messagebox by pressing a button in visual basic?
Example:
MsgBox("This is an example!", MsgBoxStyle.Information, "Example")
or:
MsgBox("This is an example!", MsgBoxStyle.Exclamation, "Example")
or:
MsgBox("This is an example!", MsgBoxStyle.Critical, "Example")
you can choose between one of these three styles.
just add one of these in the line where you want it to be displayed like:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
MsgBox("This is an example!", MsgBoxStyle.Information, "Example")
End Sub
What is advantages and disadvantages of re transister model and hybrid model?
Re-model is made of only resistor.
It gives real time operation i.e you can calculate all the values.
SAP is a ERP package which stands for Systems, Applications and Products in data processing. It is a software catering to the business needs of an enterprise beginning with finance, HR, supply chain, production, sales, quality, maintenance, etc. It is written in SAP's proprietary language ABAP(Advanced business application program). There are other meaning for SAP on lighter note. 'Sab aadmi paagal or parishaan'. This is because once SAP is implemented it streamlines the business and those who are using the software feels the heat initially.
How do you make a button click another button?
This is not possible, but you can make it appear that way, for example, get a video component, set the visible to false, get a button, make the video play an animation of a clicked button, and once another button is clicked the orignal button dissapears and the video player appears and plays a short animation of a clicked button.
How do you make a save button for a txt file in visual basic?
Go to your button and double click it to go to the code then add this
Dim NameOfFile as String
NameOfFile = InputBox("Enter the Name of The File", "")
Dim objWriter As New System.IO.StreamWriter("C:/" & NameOfFile.ToString & ".txt")
Msgbox("COMPLEATE")
What is advantage of overloading main method?
Practically speaking, there is no advantage in overloading the main method because, eitherways the main method of the current class only gets executed and not any of the parent classes, the current class might extend.
Where can you get a Jetbrains ReSharper discount?
The best place to check for Jetbrains discount is the Jetbrains website. The company often offers discounts and specials, especially for the those starting a software business.
What is the first rule in a structured loop?
First rule - you never talk about first rule of a structured loop.
Haha i kid. It's to ensure that it will end cleanly and not run infinitely.
How to display the text box value in another form using VB.NET?
You can display a textbox value in another form using Vb.NET. Simply by inputing this line of code:
'You can put this code anywhere under a Private Sub or Sub'
'I Will use an example of a textbox named "testabc" and "othertextacbc
TestAbc.Text = frmMain.OtherTextAbc.Text
'You can replace the "frmMain with the form you are trying to access.
Print 1-10 numbers using while loop?
public static void main(String args){
int counter = 0; //initialize the counter variable to 0
while (counter < 10){ //while the counter variable is less than 10...
counter ++; //increase the counter variable by 1
System.out.println(counter); //print the counter variable
}
}
Why are home row key important?
It is the line of keys that you place your fingers on when typing. This is a way that most people type fastly.
Fibonacci series program in vb.net?
This is not a homework board. I will give you a rough algorithm in C#
int firstnum= 1;
int finalnum = 1;
int nextNumber;
System.Console.Write(finalnum + " ");
while (finalnum < 50)
{
System.Console.Write(finalnum + " ");
nextNumber = finalnum + firstnum;
firstnum= finalnum ;
finalnum = nextNumber;
}
Use of Interlocked class in vb. net?
The Interlocked methods protect against errors that can occur when the scheduler switches contexts while a thread is updating a variable that can be accessed by other threads. The members of this class do not throw exceptions.
[Note: The System.Threading.Interlocked.Increment(System.Int32@) method and its counterpart, System.Threading.Interlocked.Decrement(System.Int32@), increment or decrement a variable and store the resulting value, as an atomic operation.
The System.Threading.Interlocked.Exchange(System.Int32@,System.Int32) method atomically exchanges the values of the specified variables. The System.Threading.Interlocked.CompareExchange(System.Int32@,System.Int32,System.Int32) method provides an atomic operation that compares two values and stores a third value in one of the variables, based on the outcome of the comparison.
Which of these is used to open an database?
Depends on what kind of database you are opening. I only know of OLEDB (Access) database.
Dim conn as New System.Data.OledbConnection
conn.ConnectionString="C:\a.mdb"
conn.Cpen()
'code goes here
conn.Close()
That's how you open an database.
How do you insert image in menu using net?
Select the picturebox and look in the properties window. Browse in the "image" property.
How can you make a button not to work after it has performed it's duty in visual basics?
Button1.Enabled = false
Button1.Visible = false
If you mean in computer technology it's a term used to describe an older and largely unused format of Floppy disks "Single sided, double density" disks.
It could also mean "Same sh*t, different day" depending on whom you ask.