URGENTLY HELP PLEASE, I need to answer this wireless and mobile network question within the 3 hours.
From an architectural point of view, what network components should be added to a GSM system and which new connections should be made between the various network components so that it has a GPRS support?
A certain government levies taxes on a person’s total annual income. The taxes are calculated in the given manner.
If a person earns an amount of less than or equal to Rs. 1,00,000 annually, the person is charged 2% of their income as the tax.
If a person earns an amount of more than Rs. 1,00,000 and less than or equal to Rs. 5,00,000, then the person is charged with 2% of Rs. 1,00,000 and 5% on the remaining amount.
If a person earns an amount of more than Rs. 5,00,000, the person is charged with 2% of Rs.1,00,000, 5% of Rs. 4,00,000 and 10% of remaining amount.
The following code snippet computes the total tax to be paid by a person given their annual income.
int income;
cin >> income;
double tax = 0;
if (income <= 100000) tax = blankA1 + blankA2 * income;
else if (income <= 500000) tax = blankB1 + 0.05 * (income - blankB2 );
else tax = blankC1 + blankC2 * (income - 500000);
cout << tax << endl;
Note that, all the blanks are either integer values or double values. They do not involve any variable names. Please only fill your answers as integer or double values.
1.What is the value of blankA1?
2.What is the value of blankA2?
3.What is the value of blankB1?
4.What is the value of blankB2?
5.What is the value of blankC1?
6.What is the value of blankC2?
In two or more complete sentences, describe an activity you perform that has an impact on climate change? Is it positive or negative? Can it be adjusted to improve our climate? Justify your answers in two or more complete sentences. Write your answer in the essay box below.
char c = ‘a’;
int d = ‘Z’;
cout << c/2 << endl; // OUTPUT1
cout << d << endl; // OUTPUT2
cout << c + d <<endl; // OUTPUT3
cout << c << endl; // OUTPUT4
1.what is the OUTPUT1 ?
2.What is the OUTPUT2?
3.What is the OUTPUT3?
4.What is the OUTPUT4?
Write a JAVA Program that would: Allow user to enter the size and element of a string array. Display the longest string found in the array.
Write a JAVA Program that would: Allow user to enter the size and element of a string array. Then ask the user to give a string and display whether that string is present in array or not. (Letter case doesn’t matter)
create a program in java:
You have 8 circles of equal size and you want to pack them inside a square. You want to minimize the size of the square. The following figure illustrates the minimum way of packing 8 circles inside a square:
Given the radius, r, find the area of the minimum square into which 8 circles of that radius can be packed.
The Input:
A positive real number (between 0.001 and 1000, inclusive) in a single line denoting the radius, r.
The Output:
For each test case, output the area of the minimum square where 8 circles of radius r can be packed. Print 5 digits after the decimal.
Your output is considered correct if it is within ±0.00001 of the correct output.
Write a Java program to find a certain character in a string and replace it with a new character.
Allow user to enter a string, find character and the replace character.
Display the new string.
Question 1
You are given a deck containing N cards. While holding the deck facedown: 1. Deal all the cards facedown onto a table into Y piles like you would if you were playing with a group of people (i.e. card 1 to P1, card 2 to P2, ..., card Y to PY, card Y + 1 to P1, etc). 2. Combine all the piles into a deck by placing P1 onto P2, then P1+P2 onto P3, and so on. This is a round. 3. Pick up the deck from the table and repeat steps 1-2 until the deck is in the original order. 4. For each round, vary the pile count according to a repeating pattern. Start with 3 piles, then 4, then 5, then loop back to 3, then 4 and so on.
* Write a program to determine how many rounds it will take to put a deck back into the original order. This will involve creating a data structure to represent the order of the cards. Do not use an array. This program should be written in C only. It should take a number of cards in the deck as a command line argument and write the result to stdout. Please ensure the program compiles and runs correctly (no pseudo-code). This isn't a trick question; it should be fairly straightforward. Bonus: Output how many rounds should be completed before the deck is adequately shuffled from the original deck for a person who is casually playing a game with cards. Provide your methodology in a comment block.
To do list
This project will record an event which will be described by Title, Description, Date, Time. The events will be stored and retrieved from a text file called events.txt. The program should read a file at a start and should store and delete new and already present events from text file. This program should find events with respect to date as well as name. All search event description should be displayed.