Programming Languages Interview Questions
Questions Answers Views Company eMail

Write a C++ Program to Find Sum and Average of n numbers using for loop.

1 419

Write a program to read the values a, b and c and display x, where x=a/b–c. Test the program for the following values: (a) a = 250, b = 85, c = 25 (b) a = 300, b = 70, c = 70

1 561

Identify the error in the following program. include using namespace std; void main() { int num[]={1,2,3,4,5,6}; num[1]==[1]num ? cout<<"Success" : cout<<"Error"; }

1 411

Identify the errors in the following program. #include using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }

1 582

Write a C++ Program to Check Whether a character is Vowel or Consonant.

2 351

Write a C++ Program to find Addition of Two Numbers.

1 290

Write a C++ Program to Multiply two Numbers

1 481

Write a C++ Program to Generate Random Numbers between 0 and 100

1 689

int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}

829

How to explain the final year project as a fresher please answer with sample project

463

Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"

1580

1. What coding languages are you comfortable with?

1 1882

2. What do you mean by DHCP?

1 2105

3. . Explain the Cache memory? What is the advantage of a processor having more cache memory?

1 2104

What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1347


Un-Answered Questions { Programming Languages }

What is encapsulation in oop php?

519


What does activex filtering mean?

433


How to include a javascript menu through a site?

3


WS-NUM PIC S9(05)V(02) SIGN TRAILING SEPARATE MOVE '0050000+' TO WS-NUM The value stored is 00500,00+ MOVE '0050000-' TO WS-NUM Then what is the value will be stored in WS-NUM? Am getting '-00500,00'.....>>> What should I declare to WS-NUM so that I can get correct values for both + & - signs.

1846


Define String datatype with example in Kotlin?

128






How to Use Visual Basic arrays in Delphi ?

1371


Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.

2571


Do pointers take up memory?

652


Will c++ be replaced?

544


what is the statement that can be used in python if the program requires no action but requires a statement syntactically?

474


Does python have access specifiers?

443


How do I install an older version of a wordpress plugin?

102


How can you remove index.php from url in codeigniter?

341


How will you print the contents of a file?

487


What’s the difference between htmlentities() and htmlspecialchars()?

575