Programming & Computer Science Answers

C++ 9913
Python 5288
Java | JSP | JSF 3611
C 1680
C# 1362
Computer Networks 989
Algorithms 652
Databases | SQL | Oracle | MS Access 641
HTML/JavaScript Web Application 588
Other 537
Visual Basic 358
Assembler 209
Software Engineering 202
AJAX | JavaScript | HTML | PHP 166
MatLAB 150
MatLAB | Mathematica | MathCAD | Maple 124
Action Script | Flash | Flex | ColdFusion 112
UNIX/Linux Programming 89
Web Development 73
Excel 36
ASP | ASP.NET 23
Delphi | Pascal 21
Perl 16
Prolog 9
Functional Programming 9
MathCAD 5
Wolfram Mathematica 4
WPF 4
Ruby | Ruby on Rails 3
NodeJS Web Application 2

Questions answered by Experts: 26 876

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search

A company hire network administrators in the following cases:


• If the candidate is Cisco certified.

• If the candidate’s highest degree is networks, age is below 30.

• If the candidate has 3 years of experience



In all other cases the candidate is not hired. If the cisco certificate status, highest degree and experience are the inputs, write a program to determine whether the candidate will get hired or not.


Provide a program that takes the digits of your roll number from the user, modify each digit by adding 4 in it

then sort the modified digits using Selection sort.


Provide a program showing the implementation of Hashtable. The size of the hashtable should be 10.

Add the following numbers

11, 62, 46, 38, 29 66

Search and delete 11

Remove the collision


Create a program generate the Fibonacci Sequence and compute for the

corresponding sum based on the generated sequences.

Sample output:

Enter how many: 5

Fibonacci Sequence: 1 1 2 3 5

Sum of Sequence: 12


Create a program that will implement a method Factorial and return a double

number based on any supplied argument.


Create a program that will implement methods such as Min (int n1, int n2, int n3)

and Max (int x1, int x2, int x3). The two (2) methods must return an integer smallest (Min)

and integer largest (Max) based on any supplied arguments upon calling.


You will create a program that displays amount of a cable bill. The Amount is based on the type of customer, as shown in the figure. For a residential customer, the user will need to enter the number of premium channels only. For a business customer, the user will need to enter the number of connections and the number of premium channels. Also enter appropraite comments and any additional instructions in your c++ program. Test the program appropriately before submission. 


For resedential customers:

Processing fee: $4.50

Basic service fee: $30

Premium channels: $5 per channel


For business customers:

Processing fee: $16.50

Basic service fee: $80 for the first 5 connections, $4 for each additional connection

Premium channels: $50 per channel for any number of connections




Consider a relation train with attributes trainid (Primary Key), trainname, traintype, noofcoaches, source and destination. Except trainid, no columns am The table has following 3 indexes created:




IX1-trainname, source




IX2- trainname, destination




IX3 noofcoaches




Which of the following will NOT use index?

SELECT customername FROM customer c, mobile m, purchase p WHERE p.mobileidm.mobileid AND c.customerid = p.customerid AND p.customerid IN (SELECT customerid FROM purchase GROUP BY customerid HAVING #SPACE1=(SELECT #SPACE2 FROM purchase GROUP BY customerid)) AND price> 40000;




8




9




11




What should be written at #SPACE1 and #SPACE2 respectively in the query given above to get John, Jack and Maria in the output?

given month as an input write a js program to find corresponding season using switch statment

input1

January

output1

winter

input2

may

output2

summer

input3

october

output3

autumn


"use strict";


process.stdin.resume();

process.stdin.setEncoding("utf-8");


let inputString = "";

let currentLine = 0;


process.stdin.on("data", (inputStdin) => {

 inputString += inputStdin;

});


process.stdin.on("end", (_) => {

 inputString = inputString.trim().split("\n").map((str) => str.trim());

 main();

});


function readLine() {

 return inputString[currentLine++];

}


function main() {

 const month = readLine();


/* Please do not modify anything above this line */


 // Write your code here

}











LATEST TUTORIALS
APPROVED BY CLIENTS