0

c net interview questions for freshers with answers

100 c interview questions answers

100 c interview questions answers

... divide occur 36. ans: (b) reason: ' %c& apos; mainly used for print one charactor We can't specify formate output within ' %c& apos; 37. ans: (b) reason: can ... printf prints and places the cursor in the same line. 15. ans: (c) reason: You need to put '=' sign at show. ie the correct st is end=(char*)(show=(char*)strcpy(start,"MISPIS,")); ... specifier is given immediately after the first appearance of % then the characters after the % are printed as such 41. ans: (d) reason: the scanf must have &x,&y for %d format...
  • 12
  • 414
  • 0
50-common interview questions and answers

50-common interview questions and answers

... on track to achieve the others.5. What do co-workers say about you?Be prepared with a quote or two from co-workers. Either a specific statement or a paraphrasewill work. Jill Clark, a co-worker ... standards for yourself and meet them. Your outcomes are a success.Your boss tellyou that you are successful36. Would you be willing to relocate if required?You should be clear on this with your ... others.Pick a specific incident. Concentrate on your problem solving technique and not the dispute yousettled.46. What position do you prefer on a team working on a project?Be honest. If you are comfortable...
  • 6
  • 687
  • 3
10458653-101-Great-Answers-to-the-Toughest-Interview-Questions

10458653-101-Great-Answers-to-the-Toughest-Interview-Questions

... answer such questions clearly, succinctly, and specifically—but avoid any temptation to "confess" your many sins. Tips for convincing the interviewer you're a good catchã Do ... product lines.ã Handled telephone support for customer base of 100.Key accomplishments: This is the place to "brag." But be sure to back up each accomplishment with specifics, including ... being interviewed for a highly technical job—engineering, science, programming, etc.—the interviewer should reasonably expect that you majored in engineering, chemistry, or computer science,...
  • 148
  • 475
  • 1
Job Interview Questions, Tips, Answers and Advice

Job Interview Questions, Tips, Answers and Advice

Quản trị kinh doanh

... way that connects you with the position and company, and be succinct and support your answer with appropriate specific examples.Sample Question: "Why did you choose this particular career ... chose advertising because I have always been a strong communicator with a good eye for design. I have a particular interest in creating dynamic eye-catching pieces that support a new product ... help my company." Answer: "In my previous career my biggest contribution was my ability to accurately measure customer satisfaction and to continually feed this information back to...
  • 4
  • 551
  • 0
Practical Database Programming With Visual C#.NET- P6

Practical Database Programming With Visual C#.NET- P6

Cơ sở dữ liệu

... new SelectionForm(); OleDbDataReader accDataReader; accCommand.Connection = accConnection; accCommand.CommandType = CommandType.Text; accCommand.CommandText = cmdString; accCommand.Parameters.Add("@Param1", ... DataTable accDataTable = new DataTable(); OleDbCommand accCommand = new OleDbCommand(); SelectionForm selForm = new SelectionForm(); accCommand.Connection = accConnection; accCommand.CommandType ... if (logForm.accConnection.State == ConnectionState.Open) logForm.accConnection.Close(); logForm.Close(); courseForm.Close(); facultyForm.Close(); studentForm.Close(); Application.Exit();...
  • 50
  • 638
  • 0
Practical Database Programming With Visual C#.NET- P7

Practical Database Programming With Visual C#.NET- P7

Cơ sở dữ liệu

... MessageBox.Show("No matched faculty_id found!"); } accCmdCourse.Connection = logForm.accConnection; accCmdCourse.CommandType = CommandType.Text; accCmdCourse.CommandText = strCourse; accCmdCourse.Parameters.Add("@Param2", ... this form, such as accConnection, accCommand, accDataReader, and accDataAdapter, with the prefi x sql. Note that when you copy the codes from the LogInForm in the AccessSelectRTObject project ... LogInForm(); logForm = logForm.getLogInForm(); OleDbDataReader accDataReader; string strFacultyID = string.Empty; DataRow rowFaculty; accCmdFaculty.Connection = logForm.accConnection; accCmdFaculty.CommandType...
  • 50
  • 646
  • 1
Practical Database Programming With Visual C#.NET- P8

Practical Database Programming With Visual C#.NET- P8

Cơ sở dữ liệu

... object. For your convenience, we show the coding for this form again in Figure 5.166 . namespace OracleSelectRTObject { public partial class SelectionForm : Form { FacultyForm facultyForm ... if (logForm.oraConnection.State == ConnectionState.Open) logForm.oraConnection.Close(); logForm.Close(); courseForm.Close(); facultyForm.Close(); studentForm.Close(); Application.Exit(); ... } public LogInForm getLogInForm() { return this; } A B SQLSelectRTObjectLINQ.LogInForm cmdCancel_Click() Figure 5.146 Codes for the Cancel button Click method. c0 5.indd 39 1c0 5.indd...
  • 50
  • 507
  • 0
Practical Database Programming With Visual C#.NET- P9

Practical Database Programming With Visual C#.NET- P9

Cơ sở dữ liệu

... Button cmdInsert True Insert 6 Button cmdSelect True Select 7 Button cmdCancel True Cancel 8 Button cmdBack True Back 9 PictureBox PhotoBox True Form InsertFacultyForm True CSE_DEPT Insert Faculty ... Query with Visual C# .NET ã Use the OleDbConnection, SqlConnection, and OracleConnection class to dynamically connect to Microsoft Access 2007, SQL Server 2005 Express, and Oracle 10g XE databases. ... LogIn.cs, Grid.cs, Faculty.cs, Cource.cs, Selection.cs, and Student.cs by opening the Code Window of each form; then change the namespace to SQLInsertWizard. 2. Change the namespace from SelectWizard...
  • 50
  • 537
  • 0
Practical Database Programming With Visual C#.NET- P10

Practical Database Programming With Visual C#.NET- P10

Cơ sở dữ liệu

... LogInForm(); logForm = logForm.getLogInForm(); if (logForm.accConnection.State == ConnectionState.Open) logForm.accConnection.Close(); logForm.Close(); courseForm.Close(); facultyForm.Close(); ... logForm.getLogInForm(); accCommand.Connection = logForm.accConnection; accCommand.CommandType = CommandType.Text; accCommand.CommandText = cmdString; accCommand.Parameters.Add("@name", OleDbType.Char).Value ... and change the namespace from SQLInsertRTObject to AccessInsertRTObject: ã LogIn Form.cs ã Selection.cs • Faculty Form.cs • Course Form.cs • Insert Faculty Form.cs ã SP Form.cs ...
  • 50
  • 565
  • 0
Practical Database Programming With Visual C#.NET- P11

Practical Database Programming With Visual C#.NET- P11

Cơ sở dữ liệu

... SqlConnection to OleDbConnection for all other forms to match the connection requirement of the Microsoft Access database. 6.8.6 Modifi cations to Other Forms As we did for the LogIn and Faculty ... CheckCourseInfo() { int pos = 0, check = 0; for (pos = 1; pos <= 6; pos++) { if (CourseInfo[pos] == String.Empty) check++; } return check; } private void cmdBack_Click(object ... watermark. 526Chapter 6 Data Inserting with Visual C# .NET ã The Select button ’ Click method in the Course Form — change the joint query ON clause from “ ON (Course.faculty_id LIKE Faculty.faculty_id)...
  • 50
  • 808
  • 0
Practical Database Programming With Visual C#.NET- P12

Practical Database Programming With Visual C#.NET- P12

Cơ sở dữ liệu

... CommandType.StoredProcedure; accCommand.CommandText = cmdString; accCommand.Parameters.Add("FacultyName", OleDbType.Char).Value = ComboName.Text; intDelete = accCommand.ExecuteNonQuery(); accCommand.Dispose(); ... DBProjects\Chapter 7 located at the accompanying ftp site (see Chapter 1 ). Course Table course_id StudentCourse Table course_id course_id=CSC-132Bcourse_id=CSC-234A course_id=CSE-434 course_id=CSE-438 ... this record?", "Delete", vbButton); if (Answer == System.Windows.Forms.DialogResult.Yes) { accCommand.Connection = logForm.accConnection; accCommand.CommandType = CommandType.StoredProcedure;...
  • 50
  • 632
  • 0

Xem thêm