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
}