I m doing btech with computerscience branch.For every campus placement eligibilty criteriais is 60%.I have 65% in highschool and b.tech till now but secured 59.6% in intermediate. So would this percentage b considered as 60% or i wont b able to sit in exams?kindly post your views?
2305What is the time complexity T(n) of the following program? a) int n, d, i, j; cin >> n; for (d=1; d<=n; d++) for (i=1; i<=d; i++) for (j=1; j<=n; j += n/10) cout << d << " " << i << " " << j << endl; b) void main() { int n, s, t; cin >> n; for (s = 1; s <= n/4; s++) {t = s; while (t >= 1) { cout << s << " " << t << endl; t--; } } } c) void main() { int n, r, s, t; cin >> n; for (r = 2; r <= n; r = r * 2) for (s = 1; s <= n/4; s++) { t = s; while (t >= 1) { cout << s << " " << t << endl; t--; } } }
3 10732Min-Max Write an algorithm that finds both the smallest and largest numbers in a list of n numbers and calculate its complexity T(n).
1 7240Post New Infosys Interview Questions
How do you count in python?
Explain how to limit the connections to from a service?
How do I unhide a worksheet in excel?
How can you find and replace text in a file using the windows command-line environment?
Is mysql server free?
What is the difference between microsoft access and excel?
What is null pointer in c?
How does /ip route check-gateway work?
describe a big problem in your life and how you coped with it? : Journalist
Differentiate between as2 and as3.
Explain the various activities you do (as a PL) when the project is started up.
How do you delete everything off your computer windows 7?
Suppose there is a measuring point for temperature and while recording the values of temperature there is a deviation of values from given limits? Is it possible to throw a warning or error message? What is the configuration setting available?
How do you create a timestamp for particular tasks in automation anywhere?
Can I retrieve only a specific element of the data, if I have a nested JSON data in DynamoDB?