answersLogoWhite

0

Ése es un subdialecto muy utilizado en las comunidades hispanas de Estados Unidos.

whats with your number

User Avatar

Wiki User

11y ago

What else can I help you with?

Continue Learning about Basic Math

What is con short for?

Lots of different things: "We are going to discuss the pros and cons of the issue." = from Latin "contra" meaning against" "He can't get a job because he is an ex con." = "convict" "Mr. Sulu, you have the con." = "console" "I am going to the Star TRek Con." = "convention"


Does considerable have more than four syllables?

Yes it has five syllables. Con-sid-er-a-ble.


Klor-con m10 equals how many mgs?

Klor-Con M10 contains 750 mg of potassium chloride per tablet. The "M10" designation indicates the specific formulation and dosage of the potassium chloride. It's important to follow dosing instructions provided by a healthcare professional when using this medication.


What is difference between define and cons Explain with suitable example?

Difference between define and cons is that, con is disadvantage, whereas define means to elaborate something fully.


What is the coding for update table in jsp?

In JSP, you can use a combination of HTML forms and JDBC to update a database table. First, create an HTML form to collect the data that needs to be updated. Then, in your JSP file, use a scriptlet to connect to the database, prepare an SQL UPDATE statement, and execute it based on the form input. Here's a simplified example: <%@ page import="java.sql.*" %> <% String id = request.getParameter("id"); String newValue = request.getParameter("newValue"); Class.forName("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/dbname", "username", "password"); PreparedStatement ps = con.prepareStatement("UPDATE tablename SET columnname=? WHERE id=?"); ps.setString(1, newValue); ps.setString(2, id); ps.executeUpdate(); ps.close(); con.close(); %> Make sure to handle exceptions and manage resources properly in a real application.