Channel Avatar

ECIT Engineering @UCZhZ4UXjpwq-svTxa8jZlEw@youtube.com

5.2K subscribers - no pronouns :c

Hello, I am Hiren Tailor, M.E. (Wireless Communication Syste


Welcoem to posts!!

in the future - u will be able to do some more stuff here,,,!! like pat catgirl- i mean um yeah... for now u can only see others's posts :c

ECIT Engineering
Posted 1 month ago

How do you access the fourth element in an array named 'arr'?

0 - 0

ECIT Engineering
Posted 4 months ago

Which is valid C expression?

4 - 0

ECIT Engineering
Posted 8 months ago

What does the following declaration indicate?
int n: 4;

2 - 0

ECIT Engineering
Posted 1 year ago

Which is not a valid keyword in C language?

0 - 0

ECIT Engineering
Posted 1 year ago

How is an array initialized in C language?

0 - 0

ECIT Engineering
Posted 1 year ago

Which of the following cannot be a variable name in C?

3 - 0

ECIT Engineering
Posted 1 year ago

How is the 2nd element in an array accessed based on pointer notation?

0 - 0

ECIT Engineering
Posted 2 years ago

In which of the following languages is function overloading not possible?

2 - 0

ECIT Engineering
Posted 2 years ago

Can Arduino write data to a pin while the delay () function is in effect?

1 - 0

ECIT Engineering
Posted 2 years ago

What is the output of the program given below if a voltage of 5V is supplied to the pin corresponding to the A0 pin on an Arduino UNO?

void setup() {
Serial.begin(9600);
pinMode(A0, INPUT);
}
void loop() {
int s = analogRead(A0);
Serial.println(s);
}

3 - 2