It seems like "queses" may be a misspelling or a typo. Did you mean "queso," which is the Spanish word for cheese? Queso is a popular ingredient in Mexican cuisine and is often used in dishes like nachos and quesadillas.
Find the sum of the digits of 33333333334 to the second power?
first you multiply 33333333334 by 33333333334
(if its kinda hard to count these, they both have ten 3's, and one 4)
and then you should get this:
1111111111155555555556
(for this one, there are eleven 1's, ten 5's, and one 6)
then you add all these digits together, and should get this:
67
***p.s. the reason why it's not 1156 is because, in the order of operations, you have to solve the exponents (to the second power) before you can start adding***
What is the difference between traversal and search?
Traversal simply means moving from one node to the next. Generally one searches by traversing the list, comparing each node's data with a given datum, either to return a pointer to a single matching node, or to return a list of matching nodes (copied from the list being searched), or simply to collect data about the matching nodes (such as a count of all the matching nodes).
What are conditional statements?
Conditional statements are used in programming to make decisions based on certain conditions. They allow the program to execute different code blocks depending on whether a condition is true or false. Common conditional statements include if, else, and else if.
Differences between finite and infinite loop?
A finite loop executes a specific number of times based on its condition, while an infinite loop runs indefinitely without cessation. Finite loops have a predetermined endpoint, while infinite loops continue without a defined stopping condition until manually interrupted. Improperly written infinite loops can lead to system crashes or unresponsive programs.
Whats the advantages of decimal search?
Advantages:
Disadvantages:
hope that's alright
Also, When there are two or more repeated roots of an equation, it does not find this root (as the sign is the same on both sides of the root) and another method has to be used.
What poet hated capital letters?
The poet who famously disliked using capital letters in his work is e.e. cummings. He believed that not using capital letters emphasized the equality of words and gave his poetry a more modern and unique look.
What is the main function of a video production company?
The main function of a video production company is to create videos for specific events or for companies. These companies are useful because they create high quality videos that help to add significance to the event or company.
66 c of b typically refers to 66 cups of butter. That amount of butter is equivalent to approximately 16.5 pounds or 7.5 kilograms. It is a considerable quantity and would be used for large-scale baking or cooking purposes.
A Latinate syntax refers to the set of the structured text with a fixed format that has semantic content in Latin. The syntax errors on the other hand refers to the spelling mistakes or the incorrect markup within a given code.
Write a program in c which will read a string rewrite it in alphabetical order?
#include<stdio.h>
#include<string.h>
#include<conio.h>
void main()
{
char a[30],temp;
int n=0,j,i;
clrscr();
printf("Enter the string\n");
gets(a);
while(a[n]!='\0')
{
n++;
}
for(i=0;i<n;i++)
{
for(j=0;j<n-i-1;j++)
{
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
}
printf("The string in alphabetical order is\n");
for(i=0;i<n;i++)
{
printf("%c",a[i]);
}
getch();
}
Write a program to aceept 5 numbers from keyboard n print itz total?
#include
using std::cin;
using std::cout;
using std::endl;
int main()
{
int arrSize = 5;
double arr[arrSize] = {0.0};
cout << endl << "Enter 5 numbers to find its total." << endl;
for (int i = 0; i < arrSize; i++)
{
cout << "Enter " << (i + 1) << " element: ";
cin >> arr[i];
}
double sum = 0.0;
for (int i = 0; i < arrSize; i++)
{
sum += arr[i];
}
cout << endl << "Total is: " << sum << endl;
system("PAUSE");
return 0;
}
What is the restriction to be followed when using a modulo operator modulo operator?
When using the modulo operator in mathematics or programming, there is a restriction that the divisor (the number after the modulo operator) should be non-zero. A zero divisor would result in a division by zero error, which is undefined.
What is a quick way to use Visual Studio.Net to compile and run a C?
You can write perfectly good C programs in C++. C programs are essentially just C++ programs that make use of the C standard libraries (and other libraries written for C) rather than making use of C++ standard libraries (and other libraries written for C++). However, non-trivial C programs are better written in C++ as the resultant code will generally be smaller and much more efficient, not to mention easier to manage.
C program to calculate the roots of a quadratic equation using two pointer parameters?
#include <stdio.h> #include <conio.h> #include <math.h> void main() { float a, b, c; float root1, root2,de,d; printf("enter the values of a, b and c"); scanf("%f%f%f", &a,&b,&c); de=(b*b)-4*(a*c); d=sqrt(de); root1=(-b+d) /(2.0*a); root2=(-b-d) /(2.0*a); printf(" roots of the equation are %f %f", root1,root2); getch(); }
C program to detect occurrence of vowel with specification in given line text?
#include
#include
#include
void main()
{
int n,a=0,e=0,i=0,o=0,u=0;
char s[30];
char *p;
clrscr();
p=s;
printf("Enter a Word:");
gets(s);
while(*p!='\0')
{
if((*p=='A')(*p=='a'))
a++;
if((*p=='E')(*p=='e'))
e++;
if((*p=='I')(*p=='i'))
i++;
if((*p=='O')(*p=='o'))
o++;
if((*p=='U')(*p=='u'))
u++;
p++;
}
printf("\n\nA's Occurence in the Sentence=%d",a);
printf("\n\nE's Occurence in the Sentence=%d",e);
printf("\n\nI's Occurence in the Sentence=%d",i);
printf("\n\nO's Occurence in the Sentence=%d",o);
printf("\n\nU's Occurence in the Sentence=%d",u);
getch();
}
Output:
Enter a Word:Vowel Letters Are A,E,I,O,U
A's Occurence in the Sentence=2
E's Occurence in the Sentence=5
I's Occurence in the Sentence=1
O's Occurence in the Sentence=2
U's Occurence in the Sentence=1
What is the rebus puzzle answer with e space then n space then d?
The rebus puzzle answer with "e space then n space then d" is "the end".
What is the main function of the eye muscles?
The main function of the eye muscles is to control the movement and coordination of the eyes, allowing for precise and coordinated eye movements. They enable the eyes to track moving objects, focus on near and far objects, and maintain binocular vision for depth perception.
How do we declare enmurated data type?
Enumerated data types can be declared using the enum keyword followed by the name of the enumeration and a list of possible values enclosed in curly braces. Each value is separated by a comma. For example, enum Color { Red, Green, Blue } declares an enumeration named Color with three possible values: Red, Green, and Blue.