--c语言运算符_C按位运算符-能力问题和解答

--c语言运算符

C programming Bitwise Operators Aptitude Questions and Answers: In this section you will find C Aptitude Questions and Answers on Bitwise Operators like Bitwise OR (|), Bitwise AND (&), Bitwise NOT (!).

C编程按位运算符的天赋问题和答案:在本节中,您将找到按位运算符(如按位OR(|),按位与(&),按位NOT(!))上的C适度问题和答案。

1) Which is not a bitwise operator?

1)哪个不是按位运算符?

  1. &

  2. |

    |

  3. <<

    <<

  4. &&

    &&

Answer & Explanation 答案与解释

Correct answer: 4
&&

正确答案:4
&&

&& is not a bitwise operator. It is a Logical AND operator, which is used to check set of conditions (more than one condition) together, if all conditions are true it will return 1 else it will return 0.

&&不是按位运算符。 这是一个逻辑AND运算符 ,用于一起检查一组条件(多个条件),如果所有条件都为true,则将返回1,否则将返回0。

2) Predict the output of following program.

2)预测以下程序的输出。

#include <stdio.h>
int main()
{
int a=10;
int b=2;
int c;
c=(a & b);
printf("c= %d",c);
return 0;
}

  1. c= 12

    c = 12

  2. c= 10

    c = 10

  3. c= 2

    c = 2

  4. c= 0

    c = 0

Answer & Explanation 答案与解释

Correct answer: 3
c= 2

正确答案:3
c = 2

Bitwise AND (&), It does AND on every bits of two numbers. The result of AND is 1 only if both bits are 1.

按位与( & ),它对两个数字的每个位执行与。 仅当两个位均为1时,AND的结果才为1。

    a=10 //0000 1010
b=2 //0000 0010
Doing bitwise AND
0000 0010// 2

For details on bitwise operator refer to Bitwise Operators and their working with Examples in C

有关按位运算符的详细信息,请参阅按位运算符及其在C中的示例工作

3) Predict the output of following program.

3)预测以下程序的输出。

#include <stdio.h>
#define MOBILE  0x01
#define LAPPY   0x02
int main()
{
unsigned char  item=0x00;
item |=MOBILE;
item |=LAPPY;
printf("I have purchased ...:");
if(item & MOBILE){
printf("Mobile, ");
}
if(item & LAPPY){
printf("Lappy");
}
return 1;
}

  1. I have purchased ...:

    我已购买...:

  2. I have purchased ...:Mobile, Lappy

    我已购买...:手机,Lappy

  3. I have purchased ...:Mobile,

    我已购买...:手机,

  4. I have purchased ...:Lappy

    我已购买...:蓝宝

Answer & Explanation 答案与解释

Correct answer: 2
I have purchased ...:Mobile, Lappy

正确答案:2
我已购买...:手机,Lappy

Bitwise OR (|) operator copies bit(s), if they are exist either side of the operands (that means if any bit is exist in any operand). Here, binary of Macro MOBILE (0x01) is "0001" and binary of Macro LAPPY (0x02) is "0010", then result of the expression item |=MOBILE; will be "0001" and second expression item |=LAPPY; will return "0011". Thus, both conditions (item & MOBILE) and (item & LAPPY) will be true.

如果位存在于操作数的任一侧(即任何操作数中是否存在任何位), 则按位OR ( | )运算符将复制位。 此处,宏MOBILE (0x01)的二进制为“ 0001” ,宏LAPPY (0x02)的二进制为“ 0010” ,则表达式项的结果| = MOBILE; 将为“ 0001” ,第二个表达式项| = LAPPY; 将返回“ 0011” 。 因此, (item和MOBILE)条件和(item&LAPPY)条件都将成立。

4) Predict the output of following program.

4)预测以下程序的输出。

#include <stdio.h>
int main()
{
char var=0x04;
var = var | 0x04;
printf("%d,",var);
var |= 0x01;
printf("%d",var);
return 0;
}

  1. 8,9

    8,9

  2. 4,5

    4,5

  3. 8,8

    8,8

  4. 4,4

    4,4

Answer & Explanation 答案与解释

Correct answer: 2
4,5

正确答案:2
4,5

Value of var is 0x04 (0100), Consider the expression var = var | 0x04 The OR (|) of 0100, 0100 is 0100, hence value will remain 0100. After the expression var |=0x01, value will be 0101 that is 0x05.

var的值为0x04(0100) ,请考虑表达式var = var | 0x04 0100的OR(|) ,0100是0100,因此值将保持为0100。在表达式var | = 0x01之后 ,值将是0101,即0x05。

5) Predict the output of following program.

5)预测以下程序的输出。

#include <stdio.h>
int main()
{
char flag=0x0f;
flag &= ~0x02;
printf("%d",flag);
return 0;
}

  1. 13

    13

  2. d

    d

  3. 22

    22

  4. 10

    10

Answer & Explanation 答案与解释

Correct answer: 1
13

正确答案:1
13

Consider the expression:

考虑以下表达式:

    flag = 0x0f //0000 1111
flag &= ~0x02
flag = flag & (~0x02) //since ~ has precedence over ‘&’ operator
0x02 = 0000 0010
~0x02 = 1111 1101
flag & ~0x02
= 0000 1111 & 1111 1101
= 0000 1101
= 0x0D

But since the placeholder in printf is %d, it prints the decimal value 13.

但是由于printf中的占位符为%d ,因此它将输出十进制值13

6) Consider the given statement:

6)考虑给定的陈述:

int x = 10 ^ 2

What will be the value of x?

x的值是多少?

  1. 5

    5

  2. 6

    6

  3. 7

    7

  4. 8

    8

Answer & Explanation 答案与解释

Correct answer: 4
8

正确答案:4
8

XOR operator (^) copies bit(s), if one operand has 1 and other has 0, consider the given truth table:

XOR运算符( ^ )复制一个或多个位,如果一个操作数为1,另一个操作数为0,则考虑给定的真值表:

a       b       (a^b)
_______________________
0       0       0
0       1       1
1       0       1
1       1       0

Here, binary of 10 is "1010" and binary of 2 is "0010", then the result of statement (10 ^ 2) will be "1000", which is equivalent to 8 in decimal.

在这里,二进制10“ 1010” ,二进制2“ 0010” ,则语句(10 ^ 2)的结果为“ 1000” ,相当于十进制的8

7) Predict the output of following program.

7)预测以下程序的输出。

#include <stdio.h>
int main()
{
int x=10;
x &= ~2;
printf("x= %d",x);
return 0;
}

  1. x= 10

    x = 10

  2. x= 8

    x = 8

  3. x= 12

    x = 12

  4. x= 0

    x = 0

Answer & Explanation 答案与解释

Correct answer: 2
x= 8

正确答案:2
x = 8

Consider the explanation:

考虑以下解释:

    x =10//0000 1010
x &= ~2
x = x & (~2) //since ~ has precedence over ‘&’ operator
2 = 0000 0010
~2 = 1111 1101
x & ~0x02
= 0000 1010& 1111 1101
= 0000 1000
= 8

The statement x &= ~2; will clear second bit from the value of 10, binary of x is "1010" and the binary of 2 is "0010", thus this statement will clear second bit and returns "1000" that is equivalent to 8 in Decimal.

语句x&=〜2; 将从值10清除第二个位, x的二进制为“ 1010”2的二进制为“ 0010” ,因此此语句将清除第二个位并返回与十进制中的8等效的“ 1000”

8) Which Bitwise Operator can be used to check whether a number is EVEN or ODD quickly?

8)哪个位运算符可用于快速检查数字是偶数还是奇数?

  1. Bitwise AND (&)

    按位与(&)

  2. Bitwise OR (|)

    按位或(|)

  3. Bitwise XOR (^)

    按位XOR(^)

  4. Bitwise NOT (~)

    按位非(〜)

Answer & Explanation 答案与解释

Correct answer: 1
Bitwise AND (&)

正确答案:1
按位与(&)

Bitwise AND (&) Operator can be used to check whether a number if EVEN or ODD, consider the statement (num & 1), this statement will return 1 if first bit of the number is High (1) else it will return 0. All ODD numbers have their firs bit 1 and ODD numbers have 0.

可以使用按位AND(&)运算符来检查一个数字是偶数还是奇数,请考虑语句(num&1) ,如果数字的第一位为High(1),则此语句将返回1,否则将返回0。所有ODD编号的第一个比特为1,而ODD编号的第一个比特为0。

Consider the following program:

考虑以下程序:

#include <stdio.h>
int main()
{
int count;
for(count=1; count<=10; count+=1)
if(count & 1)
printf("%2d is ODD number\n",count);
else
printf("%2d is EVEN number\n",count);
return 0;
}

Output

输出量

 1 is ODD number
2 is EVEN number
3 is ODD number
4 is EVEN number
5 is ODD number
6 is EVEN number
7 is ODD number
8 is EVEN number
9 is ODD number
10 is EVEN number

9) Which statement is suitable to check 3rd (count from 0) bit is high (set) or not?

9),该语句是合适的,以检查第三 ( 从0)计数 (组)或不?

  1. (num & (1<<3))

    (数字&(1 << 3))

  2. (num & 0x08)

    (数字和0x08)

  3. (num & 0x03)

    (数字和0x03)

  4. Both (1) and (2)

    (1)和(2)

Answer & Explanation 答案与解释

Correct answer: 4
Both (1) and (2)

正确答案:4
(1)和(2)

The value of (1<<3) is 8 in Decimal and value of 0x08 is 8 in Decimal, both statements are suitable to check whether 3rd bit of num is High (set) or not.

(1 << 3)的值为8和十进制的0x08的值在十进制8,这两个语句适合于检查NUM的第三位是否为高(组)或没有。

Consider this program:

考虑以下程序:

#include <stdio.h>
int main()
{
int num;
printf("Enter an integer number: ");
scanf("%d",&num);
if(num & (1<<3))
printf("3rd bit is High (Set)\n");
else
printf("3rd bit is Low\n");
return 0;
}

Output

输出量

First run:
Enter an integer number: 15 
3rd bit is High (Set) 
Second run:
Enter an integer number: 7
3rd bit is Low

Binary of 15 is: 1111 & Binary of 7 is: 0111, thus in first case 3rd bit is high and in second case 3rd bit is low. [Count from 0]

的15二进制是:1111的7个二进制是:0111,从而在第一种情况下第三位为高,在第二种情况下第三位为低。 [从0开始计数]

10) Left shift (<>) operators are equivalent to _____________ by 2.

10)左移(<>)运算符等于_____________ 2。

Choose the correct words...

选择正确的单词...

  1. Multiplication and Division

    乘法与除法

  2. Division and Multiplication

    除法与乘法

  3. Multiplication and Remainder

    乘法与余数

  4. Remainder and Multiplication

    余数与乘法

Answer & Explanation 答案与解释

Correct answer: 1
Multiplication and Division

正确答案:1
乘法与除法

Left shift by 1 return the multiplication by 2 and Right shift by 1 return the division by 2.

左移1返回乘以2,右移1返回除以2。

Consider this program:

考虑以下程序:

#include <stdio.h>
int main()
{
int num;
printf("Enter an integer number: ");
scanf("%d",&num);
printf("Multiplication by 2 = %d\n", (num<<1));
printf("Division by 2 = %d\n",(num>>1));
return 0;
}

Output

输出量

Enter an integer number: 100
Multiplication by 2 = 200 
Division by 2 = 50

翻译自: https://www.includehelp.com/c/bitwise-operators-aptitude-questions-and-answers.aspx

--c语言运算符

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545466.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ORACLE SQL获取时间字段

是本周第几天 Select to_char(sysdate,D)-1 from dual 24小时的形式显示出来要用HH24select to_char(sysdate,yyyy-MM-dd HH24:mi:ss) from dual;select to_date(2005-01-01 13:14:20,yyyy-MM-dd HH24:mi:ss) from dual;to_date() function1.日期格式参数 含义说明D 一周中的星…

优秀的基数统计算法——HyperLogLog

为什么要使用 HyperLogLog? 在我们实际开发的过程中,可能会遇到这样一个问题,当我们需要统计一个大型网站的独立访问次数时,该用什么的类型来统计? 如果我们使用 Redis 中的集合来统计,当它每天有数千万级别的访问时,将会是一个巨大的问题。因为这些访问量不能被清空,…

图论模型Floyd算法

图论模型Floyd算法一、简介二、MATLAB执行代码一、简介 二、MATLAB执行代码 tulun2.m a [ 0,50,inf,40,25,10;50,0,15,20,inf,25;inf,15,0,10,20,inf;40,20,10,0,10,25;25,inf,20,10,0,55;10,25,inf,25,55,0]; [D, path]floyd(a)floyd.m function [D,path,min1,path1]floyd(a,…

php变量赋值给js

原文:php变量赋值给js$(document).ready(function(){<?php $f"name"?>var t<?php echo $f?>;alert(t)})或 <script language"javascript" > var t<?php echo "sd"?>; alert(t) </script>关键是sd两旁既要加…

java 根据类名示例化类_Java LocalDateTime类| AdjustInto()方法与示例

java 根据类名示例化类LocalDateTime类AdjustInto()方法 (LocalDateTime Class adjustInto() method) adjustInto() method is available in java.time package. AdjustInto()方法在java.time包中可用。 adjustInto() method is used to adjust this LocalDateTime object into…

2013-11-11 Oracle 课堂测试 练习题 例:BULK COLLECT及return table

--1) 查询“计算机”专业学生在“2007-12-15”至“2008-1-8”时间段内借书的 --学生编号、学生名称、图书编号、图书名称、借出日期&#xff1b; select s.stuid, s.stuname, b.bid, b.title, bo.t_timefrom borrow bojoin student s on bo.stuid s.stuidjoin book b on bo.b…

查询附近的人——GEO

受过高等教育的我们都知道,我们所处的任何位置都可以用经度和纬度来标识,经度的范围 -180 到 180,纬度的范围为 -90 到 90。纬度以赤道为界,赤道以南为负数,赤道以北为正数;经度以本初子午线(英国格林尼治天文台)为界,东边为正数,西边为负数。 Redis 在 3.2 版本中增…

种群竞争模型

种群竞争模型一、种群竞争模型二、分析&#xff08;1&#xff09;未改变初值&#xff08;2&#xff09;改变自然增长率r&#xff08;3&#xff09;改变该环境种群最大容量&#xff08;4&#xff09;改变两个种群初始数量&#xff08;5&#xff09;改变资源竞争力三、MATLAB执行…

为什么我要选择erlang+go进行server架构(2)

原创文章&#xff0c;转载请注明出处&#xff1a;server非业余研究http://blog.csdn.net/erlib 作者Sunface 为什么我要选择Erlang呢&#xff1f; 一、erlang特别适合中小团队创业&#xff1a; erlang有异常成熟、经过电信级别大规模验证的OTP应用库&#xff0c;仅仅须要非常ea…

Python | 计算给定数字的平方(3种不同方式)

Given a number, and we have to calculate its square in Python. 给定一个数字&#xff0c;我们必须在Python中计算其平方。 Example: 例&#xff1a; Input:Enter an integer numbers: 8Output:Square of 8 is 64Calculating square is a basic operation in mathematics;…

PFILE和SPFILE

PFILE和SPFILE介绍一、PFILEPfile&#xff08;Parameter File&#xff0c;参数文件&#xff09;是基于文本格式的参数文件&#xff0c;含有数据库的配置参数。1、PFILE - initSID.ora(默认PFILE名称),位置在$ORACLE_HOME/dbs目录下面。 这是一个文本文件&#xff0c;可以用任何…

内存淘汰机制与算法

在本文开始之前,我们先要明白:在 Redis 中,过期策略和内存淘汰策略两个完全不同的概念,但很多人会把两者搞混。 首先,Redis 过期策略指的是 Redis 使用那种策略,来删除已经过期的键值对;而 Redis 内存淘汰机制指的是,当 Redis 运行内存已经超过 Redis 设置的最大内存之…

Java基础结构语句和IDEA使用和数组

Java基础结构语句和IDEA和数组基本类型和引用类型static第一章&#xff1a;结构语句1.1.1三元运算符1.1.2switch语句1.1.3do-while循环第二章&#xff1a;IDEA2.1_IDEA的项目结构2.2_IDEA的使用&#xff08;代码及时自动保存&#xff09;&#xff08;1&#xff09;代码快捷方式…

java程序员个人能力介绍_Java操作员能力问题

java程序员个人能力介绍Java Operators Aptitude Questions and Answers: This section provides you Java Operators related Aptitude Questions and Answers with multiple choices. Here, You will get solution and explanation of each question. Java操作员能力倾向问题…

【新年巨献】计算机类国际英文EI(JA)期刊限量推荐

【2015年新年巨献】计算机、电子类国际英文EI&#xff08;JA&#xff09;期刊限量推荐EI源刊&#xff08;JA&#xff09; : 计算机、软件、网络、通信工程及电子工程等相关议题征稿与国际学术期刊社合作&#xff0c;特推出EI源刊正刊论文征稿&#xff0c;本次征稿期刊均为最新E…

拷贝数据库

通过IE使用ORACLE数据库&#xff1a;http://localhost:5560/isqlplus通过IE管理ORACLE数据库&#xff1a;http://localhost:1158/em查看oracle数据库的三类文件&#xff1a;数据文件&#xff0c;日志文件&#xff0c;控制文件用SYS登陆&#xff0c;角色给sysdba查看数据文件&am…

游标迭代器(过滤器)——Scan

一个问题引发的「血案」 曾经发生过这样一件事,我们的 Redis 服务器存储了海量的数据,其中登录用户信息是以 user_token_id 的形式存储的。运营人员想要当前所有的用户登录信息,然后悲剧就发生了:因为我们的工程师使用了 keys user_token_* 来查询对应的用户,结果导致 Re…

同时对view延时执行两个动画时候的现象

同时对view延时执行两个动画时候的现象 对于view延时执行了两个动画后&#xff0c;会将第一个动画效果终止了&#xff0c;直接在第一个动画的view的最后的状态上接执行后续的动画效果&#xff0c;也就是说&#xff0c;我们可以利用这个特性来写分段动画效果&#xff0c;比如&am…

子网掩码+ip地址_C ++程序使用位掩码查找唯一编号

子网掩码ip地址Problem statement: C Program to find unique number in an array of n numbers in which except one (unique number) rest all are present thrice. 问题陈述&#xff1a; C 程序在n个数字的数组中查找唯一数字&#xff0c;其中除一个(唯一数字)外其余所有其余…

消息队列的其他实现方式

在 Redis 5.0 之前消息队列的实现方式有很多种,比较常见的除了我们上文介绍的发布订阅模式,还有两种:List 和 ZSet 的实现方式。 List 和 ZSet 的方式解决了发布订阅模式不能持久化的问题,但这两种方式也有自己的缺点,接下来我们一起来了解一下,先从 List 实现消息队列的…